diff --git a/Cargo.lock b/Cargo.lock index dc0800b..61b0583 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -147,19 +147,20 @@ dependencies = [ [[package]] name = "actix-tls" -version = "3.0.3" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297" +checksum = "a70bd48b6604191a700372f60bdc997db560eff5e4d41a7f00664390b5228b38" dependencies = [ - "actix-codec", "actix-rt", "actix-service", "actix-utils", "futures-core", - "log", + "impl-more", "pin-project-lite", + "tokio", "tokio-rustls 0.23.4", "tokio-util", + "tracing", "webpki-roots", ] @@ -1000,6 +1001,12 @@ dependencies = [ "unicode-normalization", ] +[[package]] +name = "impl-more" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" + [[package]] name = "indexmap" version = "1.9.3" diff --git a/Cargo.toml b/Cargo.toml index be83a02..530a068 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ env_logger = "0.10.0" actix = "0.13.0" actix-web = { version = "4", features = ["rustls"] } actix-web-actors = "4.2.0" -actix-tls = "3.0.3" +actix-tls = "3.1.0" serde = { version = "1.0.185", features = ["derive"] } tokio = { version = "1", features = ["full"] } futures = "0.3.25"