X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=Cargo.toml;h=9b3574f2ce73c6dca5cfa7e4c4cf38618f93eb5a;hb=ea22b6b690a0d3eb0eb0b58848b7cb7192ae2c76;hp=0b617e59a3fa198c02ff3c5a92cff4ed8c5e8611;hpb=a2d9b44b27798e2c8a759b2b78d64fc3c6fd9910;p=rup.git diff --git a/Cargo.toml b/Cargo.toml index 0b617e5..9b3574f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,14 +5,22 @@ authors = ["Grégory Burri "] edition = "2018" [dependencies] -actix-web = "1.0.0" -actix-files = "0.1.1" -askama = "0.8" # Template system +actix-web = "2.0" +actix-rt = "1.1" +actix-files = "0.2" +askama = "0.10" # Template system serde = { version = "1.0", features = ["derive"] } openssl = "0.10" listenfd = "0.3" # To watch file modifications and automatically launch a build process (only used in dev/debug). -ron = "0.5.1" # Rust object notation, to load configuration files. -itertools = "0.8.0" -url = "1.7.2" \ No newline at end of file +ron = "0.6" # Rust object notation, to load configuration files. +itertools = "0.9" +percent-encoding = "2.1" +base64 = "0.12" +rand = "0.7" + +[profile.release] +codegen-units = 1 +lto = true +panic = 'abort'