aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2024-06-09 23:06:16 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2024-06-09 23:06:16 +0000
commit81df80c1c91f77847da9c8a4a71df51b8526392c (patch)
treef5eeec0a0e57f781219f3c140d5fdfb433a750a2 /Cargo.toml
parentBump reqwest to v0.12 (diff)
downloadminiserve-81df80c1c91f77847da9c8a4a71df51b8526392c.tar.gz
miniserve-81df80c1c91f77847da9c8a4a71df51b8526392c.zip
Bump rustls to v0.23
Diffstat (limited to '')
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b99ae64..af9096a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -47,8 +47,8 @@ nanoid = "0.4"
percent-encoding = "2"
port_check = "0.2"
regex = "1"
-rustls = { version = "0.20", optional = true }
-rustls-pemfile = { version = "1.0", optional = true }
+rustls = { version = "0.23", optional = true }
+rustls-pemfile = { version = "2", optional = true }
serde = { version = "1", features = ["derive"] }
sha2 = "0.10"
simplelog = "0.12"
@@ -65,7 +65,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", "rustls-pemfile", "actix-web/rustls"]
+tls = ["rustls", "rustls-pemfile", "actix-web/rustls-0_23"]
[dev-dependencies]
assert_cmd = "2"