forked from baskerville/plato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (73 loc) · 1.56 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
[package]
authors = ["Bastien Dejean <nihilhill@gmail.com>"]
name = "plato"
version = "0.9.18"
edition = "2018"
[[bin]]
name = "plato"
path = "src/main.rs"
[[bin]]
name = "plato-import"
path = "src/importer.rs"
required-features = ["importer"]
[[bin]]
name = "plato-emulator"
path = "src/emulator.rs"
required-features = ["emulator"]
[[bin]]
name = "article_fetcher"
path = "src/fetcher.rs"
required-features = ["fetcher"]
[dependencies]
bitflags = "1.2.1"
downcast-rs = "1.2.0"
lazy_static = "1.4.0"
libc = "0.2.99"
png = "0.17.0"
regex = "1.5.4"
serde = { version = "1.0.127", features = ["derive"] }
serde_json = "1.0.66"
titlecase = "1.1.0"
unicode-normalization = "0.1.19"
toml = "0.5.8"
zip = "0.5.13"
kl-hyphenate = "0.7.3"
entities = "1.0.1"
paragraph-breaker = "0.4.4"
xi-unicode = "0.3.0"
septem = "1.1.0"
byteorder = "1.4.3"
flate2 = "1.0.20"
levenshtein = "1.0.5"
nix = "0.22.1"
indexmap = { version = "1.7.0", features = ["serde-1"] }
anyhow = "1.0.43"
thiserror = "1.0.26"
walkdir = "2.3.2"
globset = "0.4.8"
filetime = "0.2.15"
fxhash = "0.2.1"
rand_core = "0.6.3"
rand_xoshiro = "0.6.0"
percent-encoding = "2.1.0"
[dependencies.getopts]
version = "0.2.21"
optional = true
[dependencies.reqwest]
version = "0.11.4"
features = ["rustls-tls", "json", "blocking"]
default-features = false
optional = true
[dependencies.chrono]
features = ["serde"]
version = "0.4.19"
[dependencies.sdl2]
version = "0.34.5"
optional = true
[dependencies.signal-hook]
version = "0.3.9"
optional = true
[features]
importer = ["getopts"]
emulator = ["sdl2"]
fetcher = ["reqwest", "signal-hook"]