Update dependencies
[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 = "2021"
6
7 [dependencies]
8 actix-web = "4"
9 actix-files = "0.6"
10 askama_actix = "0.13"
11
12 serde = { version = "1.0", features = ["derive"] }
13
14 ron = "0.7" # Rust object notation, to load configuration files.
15 itertools = "0.10"
16
17 chrono = "0.4"
18
19 sysinfo = "0.23"
20
21 cached = "0.34"
22
23 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
24
25 common = { path = "../common" }
26
27 # Template system.
28 [dependencies.askama]
29 version = "0.11"
30 features = ["with-actix-web"]
31
32 [target.'cfg(unix)'.dependencies]
33 systemd = "0.10"