Use 'rcon' to get the player list
[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 askama_actix = "0.11"
11
12 minecraft-client-rs = "0.1"
13
14 serde = { version = "1.0", features = ["derive"] }
15
16 ron = "0.6" # Rust object notation, to load configuration files.
17 itertools = "0.10"
18
19 chrono = "0.4"
20
21 sysinfo = "0.18"
22
23 cached = "0.23"
24
25 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.
26
27 common = { path = "../common" }
28
29 # Template system.
30 [dependencies.askama]
31 version = "0.10"
32 features = ["with-actix-web"]