-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (68 loc) · 1.51 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
[package]
authors = ["Lukas Stabe <ahti333@gmail.com>", "Hans Ole Hatzel <hhatzel@gmail.com>"]
name = "vorleser-rust"
version = "0.1.0"
edition = "2018"
[[bin]]
name = "vorleser_server_bin"
path = "src/bin/main.rs"
[dependencies]
argon2rs = "0.2"
base64 = "0.9.0"
clap = "*"
simplelog = "0.5.1"
error-chain = "0.11.0"
humanesort = "0.1.0-alpha"
id3 = "0.2.4"
image = "0.18.0"
lazy_static = "1"
libc = "0.2"
log = "*"
mp3-metadata = "0.3.2"
regex = "0.2.1"
ring = "~0.13"
serde = "1"
serde_derive = "1"
serde_json = "1"
toml = "0.4.5"
validator = "0.8"
validator_derive = "0.8"
walkdir = "2"
rocket = "0.4"
rocket_codegen = "0.4"
fs2 = "0.4.3"
scheduled-thread-pool = "0.2.0"
failure = "0.1.1"
sentry = "0.12"
[dependencies.rocket_contrib]
default-features = false
features = ["json", "uuid"]
version = "0.4"
# git = "https://github.com/SergioBenitez/Rocket.git"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.diesel]
features = ["sqlite", "uuid", "chrono", "serde_json", "r2d2", "unstable"]
version = "~1.4"
[dependencies.diesel_migrations]
features = ["sqlite"]
version = "~1.4"
[dependencies.ffmpeg-sys]
default-features = false
features = ["avformat"]
git = "https://github.com/meh/rust-ffmpeg-sys"
version = "4.0"
[dependencies.uuid]
features = ["serde", "v4"]
version = "~0.7"
[dev-dependencies]
# speculate = "0.0.26"
speculate = {git = "https://github.com/utkarshkukreti/speculate.rs.git"}
[features]
webfrontend = []
[lib]
name = "vorleser_server"
path = "src/lib.rs"
[profile.release]
debug = true