aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2022-02-06 09:27:01 +0000
committerGitHub <noreply@github.com>2022-02-06 09:27:01 +0000
commitaa773795460214966bffee4edb4f35036ad8a6de (patch)
tree608ce6228a5e77c729e75a05a2b62eba0b876032 /Cargo.toml
parentMerge pull request #726 from svenstaro/use-custom-freebsd-image (diff)
parentupdate to actix-web v4.0-rc.2 (diff)
downloadminiserve-aa773795460214966bffee4edb4f35036ad8a6de.tar.gz
miniserve-aa773795460214966bffee4edb4f35036ad8a6de.zip
Merge pull request #725 from aliemjay/update_actix_web
Update actix web to v4.0.0-rc.2
Diffstat (limited to '')
-rw-r--r--Cargo.toml13
1 files changed, 7 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e640dd5..9438e7c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,10 +17,10 @@ codegen-units = 1
panic = 'abort'
[dependencies]
-actix-web = "4.0.0-beta.8"
-actix-files = "0.6.0-beta.6"
-actix-multipart = "0.4.0-beta.5"
-actix-web-httpauth = "0.6.0-beta.2"
+actix-web = "=4.0.0-rc.2"
+actix-files = "=0.6.0-beta.16"
+actix-multipart = "=0.4.0-beta.13"
+actix-web-httpauth = "=0.6.0-beta.7"
maud = "0.23"
yansi = "0.5"
simplelog = "0.11"
@@ -50,7 +50,8 @@ mime = "0.3"
httparse = "1"
http = "0.2"
atty = "0.2"
-rustls = { version = "0.19", optional = true }
+rustls = { version = "0.20", optional = true }
+rustls-pemfile = { version = "0.2", optional = true }
socket2 = "0.4"
get_if_addrs = "0.5"
@@ -60,7 +61,7 @@ default = ["tls"]
# See also https://github.com/briansmith/ring/issues/1182
# and https://github.com/briansmith/ring/issues/562
# and https://github.com/briansmith/ring/issues/1367
-tls = ["rustls", "actix-web/rustls"]
+tls = ["rustls", "rustls-pemfile", "actix-web/rustls"]
[dev-dependencies]
assert_cmd = "2"