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