1c51617cf86667b3881a68f13822699d9c1c87d6
[minecraft_web.git] / backend / Cargo.toml
1 [package]
2 name = "minecraft_web"
3 version = "1.0.0"
4 authors = ["GrĂ©gory Burri <greg.burri@gmail.com>"]
5 edition = "2018"
6
7 [dependencies]
8 actix-web = "3"
9 actix-files = "0.5"
10 serde = { version = "1.0", features = ["derive"] }
11
12 ron = "0.6" # Rust object notation, to load configuration files.
13 itertools = "0.10"
14
15 chrono = "0.4"
16
17 sysinfo = "0.18"
18
19 cached = "0.23"
20
21 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
22
23 common = { path = "../common" }
24
25 askama_actix = "0.11"
26
27 # Template system.
28 [dependencies.askama]
29 version = "0.10"
30 features = ["with-actix-web"]
31
32 [target.'cfg(unix)'.dependencies]
33 systemd = "0.9"