Update dependencies.
[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 = "2021"
6
7 [dependencies]
8 actix-web = "4"
9 actix-files = "0.6"
10 askama_actix = "0.13"
11
12 minecraft-client-rs = "0.1"
13
14 serde = { version = "1.0", features = ["derive"] }
15
16 fs_extra = "1.2.0" # To get the size of a directory (recursively).
17
18 ron = "0.8" # Rust object notation, to load configuration files.
19 itertools = "0.10"
20
21 chrono = "0.4"
22
23 sysinfo = "0.26"
24
25 cached = "0.39"
26
27 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
28
29 common = { path = "../common" }
30
31 # Template system.
32 [dependencies.askama]
33 version = "0.11"
34 features = ["with-actix-web"]