-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 956 Bytes
/
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
[package]
name = "pustaka-rs"
version = "0.1.0"
authors = ["Abadi Kurniawan <[email protected]>"]
# bin is the entry point for `cargo run` or `cargo build`
[[bin]]
name = "pustaka"
path = "src/server/main.rs"
[[bin]]
name = "seed"
path = "src/server/seed.rs"
[[bin]]
name = "scanner"
path = "src/server/scanner.rs"
[lib]
name = "pustaka"
path = "src/server/lib.rs"
[dependencies]
diesel = { version = "1.4.2", features = ["chrono", "sqlite"] }
diesel-derive-enum = { version = "0.4.4", features = ["sqlite"] }
dotenv = "0.13.0"
r2d2 = "0.8.3"
r2d2-diesel = "1.0.0"
serde = "1.0.89"
serde_json = "1.0.39"
serde_derive = "1.0.89"
csv = "1.0.5"
unrar = "0.4.3"
actix = "0.7.9"
actix-web = "0.7.18"
futures = "0.1.25"
tokio = "0.1.18"
epub = "1.2.0"
failure = "0.1.5"
zip = "0.5.1"
strsim = "0.8.0"
walkdir = "2.2.7"
lazy_static = "1.3.0"
mime = "0.3.13"
image = "0.21.0"
custom_error = "1.6.0"
chrono = { version = "0.4.6", features = ["serde"] }