Adding information about backup (WIP)
[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 chrono = "0.4"
17
18 sysinfo = "0.16"
19
20 cached = "0.23"
21
22 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
23
24 common = { path = "../common" }
25
26 # Template system.
27 [dependencies.askama]
28 version = "0.9"
29 features = ["with-actix-web"]
30
31 [target.'cfg(unix)'.dependencies]
32 systemd = "0.8"