-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
98 lines (88 loc) · 1.71 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[package]
name = "cancel-culture"
version = "0.1.0"
authors = ["Travis Brown <[email protected]>"]
repository = "https://github.com/travisbrown/cancel-culture"
keywords = ["twitter"]
edition = "2018"
license = "MPL-2.0"
[dependencies]
anyhow = "1.0"
bytes = "1.0"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
csv="1.1"
data-encoding = "2.3"
displaydoc = "0.2"
egg-mode = "0.16"
egg-mode-extras = "0.3"
fantoccini = { version = "0.19", features = [ "rustls-tls" ] }
file_diff = "1.0"
flate2 = "1.0"
fs_extra = "1.2"
futures = "0.3"
futures-locks = "0.7"
futures-util = "0.3"
html5ever = "0.26"
hyper = { version = "0.14", features = [ "stream" ] }
hyper-tls = "0.5"
image = "0.24"
itertools = "0.10"
lazy_static = "1.4"
libsqlite3-sys = "0.25"
log = "0.4"
pin-project = "1.0"
regex = "1.4"
reqwest = { version = "0.11", features = ["gzip", "json"] }
rusqlite = "0.28"
scraper = "0.14"
serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
sha-1 = "0.10"
simplelog = "0.12"
tar = "0.4"
tempfile = "3.2"
thiserror = "1.0"
time = "0.3"
tinytemplate = "1.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio-test = "0.4"
toml = "0.6"
tryhard = "0.5"
url = "2.2"
wayback-rs = "0.5.1"
[features]
bundled-sqlite3 = ["libsqlite3-sys/bundled"]
[[bin]]
name = "twblocks"
test = false
bench = false
[[bin]]
name = "twcc"
test = false
bench = false
[[bin]]
name = "twsearch"
test = false
bench = false
[[bin]]
name = "twshoot"
test = false
bench = false
[[bin]]
name = "wbparse"
test = false
bench = false
[[bin]]
name = "wbsave"
test = false
bench = false
[[bin]]
name = "wbsearch"
test = false
bench = false
[[bin]]
name = "wbstore"
test = false
bench = false