X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=backend%2FCargo.toml;h=1c22b3c56180ce0f31192a3c19a99e8921859a01;hb=e1d2ac7d318ed90b941bdc9911d6c22474c1f535;hp=c41e05d763b4bbbcd287b7f1fc8c1cf16e6477f6;hpb=9a4fa224d81978e42349bfbc6688933d67d37566;p=valheim_web.git diff --git a/backend/Cargo.toml b/backend/Cargo.toml index c41e05d..1c22b3c 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -2,23 +2,32 @@ name = "valheim_web" version = "1.0.0" authors = ["Grégory Burri "] -edition = "2018" +edition = "2021" [dependencies] -actix-web = "2" -actix-rt = "1" -actix-files = "0.2" +actix-web = "4" +actix-files = "0.6" +askama_actix = "0.13" + serde = { version = "1.0", features = ["derive"] } -listenfd = "0.3" # To watch file modifications and automatically launch a build process (only used in dev/debug). -ron = "0.6" # Rust object notation, to load configuration files. +ron = "0.7" # Rust object notation, to load configuration files. itertools = "0.10" +chrono = "0.4" + +sysinfo = "0.23" + +cached = "0.34" + futures = "0.3" # Needed by askam with the feature 'with-actix-web'. common = { path = "../common" } # Template system. [dependencies.askama] -version = "0.9" +version = "0.11" features = ["with-actix-web"] + +[target.'cfg(unix)'.dependencies] +systemd = "0.10"