forked from baskerville/plato
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
66 lines (54 loc) · 1.08 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
[package]
authors = ["Bastien Dejean <nihilhill@gmail.com>"]
name = "plato"
version = "0.4.1"
[[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"]
[dependencies]
bitflags = "1.0.3"
downcast-rs = "1.0.1"
failure = "0.1.1"
failure_derive = "0.1.1"
fnv = "1.0.6"
isbn = "0.1.0"
lazy_static = "1.0.0"
libc = "0.2.40"
png = "0.12.0"
regex = "1.0.0"
serde = "1.0.44"
serde_derive = "1.0.44"
serde_json = "1.0.17"
titlecase = "0.10.0"
unicode-normalization = "0.1.5"
glob = "0.2.11"
rand = "0.4.2"
crockford = "1.0.1"
toml = "0.4.6"
libremarkable = "0.3.2"
[dependencies.html-entities]
version = "0.1.0"
optional = true
[dependencies.getopts]
version = "0.2.17"
optional = true
[dependencies.reqwest]
version = "0.8.5"
optional = true
[dependencies.chrono]
features = ["serde"]
version = "0.4.2"
[dependencies.sdl2]
version = "0.31.0"
optional = true
[features]
importer = ["reqwest", "getopts", "html-entities"]
emulator = ["sdl2"]