diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2024-06-09 23:06:16 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2024-06-09 23:06:16 +0000 |
commit | 81df80c1c91f77847da9c8a4a71df51b8526392c (patch) | |
tree | f5eeec0a0e57f781219f3c140d5fdfb433a750a2 /Cargo.toml | |
parent | Bump reqwest to v0.12 (diff) | |
download | miniserve-81df80c1c91f77847da9c8a4a71df51b8526392c.tar.gz miniserve-81df80c1c91f77847da9c8a4a71df51b8526392c.zip |
Bump rustls to v0.23
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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" |