diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-08-27 02:51:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 02:51:15 +0000 |
commit | 96f68cfb7156ad1fccdb8718706401443fe5d03a (patch) | |
tree | 1633c19d861995145adccebf89cbd14889a6e967 /Cargo.toml | |
parent | Golf tests a bit more (diff) | |
parent | Fix accidental formatting (diff) | |
download | miniserve-96f68cfb7156ad1fccdb8718706401443fe5d03a.tar.gz miniserve-96f68cfb7156ad1fccdb8718706401443fe5d03a.zip |
Merge pull request #576 from svenstaro/add-rustls-support
Add TLS support via rustls (fixes #18)
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -17,7 +17,7 @@ codegen-units = 1 panic = 'abort' [dependencies] -actix-web = "3" +actix-web = { version = "3", features = ["rustls"] } actix-files = "0.5" actix-multipart = "0.3" actix-web-httpauth = "0.5" @@ -37,6 +37,7 @@ tar = "0.4" futures = "0.3" libflate = "1" thiserror = "1" +anyhow = "1" log = "0.4" strum = "0.21" strum_macros = "0.21" @@ -49,6 +50,7 @@ httparse = "1" http = "0.2" bytes = "1" atty = "0.2" +rustls = "0.18" [dev-dependencies] assert_cmd = "2" @@ -59,6 +61,7 @@ rstest = "0.11" regex = "1" pretty_assertions = "0.7" url = "2" +predicates = "2" [build-dependencies] grass = "0.10" |