Update dependencies.
[minecraft_web.git] / backend / Cargo.toml
index d1296d3..76a107f 100644 (file)
@@ -2,7 +2,7 @@
 name = "minecraft_web"
 version = "1.0.0"
 authors = ["GrĂ©gory Burri <greg.burri@gmail.com>"]
-edition = "2018"
+edition = "2021"
 
 [dependencies]
 actix-web = "4"
@@ -13,16 +13,16 @@ minecraft-client-rs = "0.1"
 
 serde = { version = "1.0", features = ["derive"] }
 
-fs_extra = "1.2.0"
+fs_extra = "1.2.0" # To get the size of a directory (recursively).
 
-ron = "0.7" # Rust object notation, to load configuration files.
+ron = "0.8" # Rust object notation, to load configuration files.
 itertools = "0.10"
 
 chrono = "0.4"
 
-sysinfo = "0.23"
+sysinfo = "0.26"
 
-cached = "0.34"
+cached = "0.39"
 
 futures = "0.3" # Needed by askam with the feature 'with-actix-web'.