diff --git a/Cargo.lock b/Cargo.lock index 945c1d5..900b7bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2434,18 +2434,6 @@ dependencies = [ "windows-sys", ] -[[package]] -name = "rustls" -version = "0.20.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" -dependencies = [ - "log", - "ring 0.16.20", - "sct", - "webpki", -] - [[package]] name = "rustls" version = "0.21.5" @@ -3388,17 +3376,6 @@ dependencies = [ "syn 2.0.33", ] -[[package]] -name = "tokio-rustls" -version = "0.23.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" -dependencies = [ - "rustls 0.20.8", - "tokio", - "webpki", -] - [[package]] name = "tokio-rustls" version = "0.24.1" @@ -3434,14 +3411,14 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.18.0" +version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd" +checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" dependencies = [ "futures-util", "log", "tokio", - "tungstenite 0.18.0", + "tungstenite 0.20.1", ] [[package]] @@ -3645,13 +3622,13 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "tungstenite" -version = "0.18.0" +version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788" +checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" dependencies = [ - "base64 0.13.1", "byteorder", "bytes", + "data-encoding", "http 0.2.9", "httparse", "log", @@ -3851,9 +3828,9 @@ dependencies = [ [[package]] name = "warp" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba431ef570df1287f7f8b07e376491ad54f84d26ac473489427231e1718e1f69" +checksum = "c1e92e22e03ff1230c03a1a8ee37d2f89cd489e2e541b7550d6afad96faed169" dependencies = [ "bytes", "futures-channel", @@ -3873,9 +3850,9 @@ dependencies = [ "serde_json", "serde_urlencoded", "tokio", - "tokio-rustls 0.23.4", + "tokio-rustls 0.24.1", "tokio-stream", - "tokio-tungstenite 0.18.0", + "tokio-tungstenite 0.20.1", "tokio-util", "tower-service", "tracing", diff --git a/taxy-api/Cargo.toml b/taxy-api/Cargo.toml index 83011fd..64798b3 100644 --- a/taxy-api/Cargo.toml +++ b/taxy-api/Cargo.toml @@ -26,4 +26,4 @@ thiserror = "1.0.43" time = "0.3.23" url = { version = "2.4.0", features = ["serde"] } utoipa = "4.2.0" -warp = { version = "0.3.5", optional = true } +warp = { version = "0.3.6", optional = true } diff --git a/taxy/Cargo.toml b/taxy/Cargo.toml index d211f20..57d292d 100644 --- a/taxy/Cargo.toml +++ b/taxy/Cargo.toml @@ -90,7 +90,7 @@ tracing-subscriber = { version = "0.3.17", features = ["json"] } url = { version = "2.4.0", features = ["serde"] } utoipa = "4.2.0" utoipa-swagger-ui = { version = "6.0.0", optional = true } -warp = "0.3.5" +warp = "0.3.6" webpki = "0.22.4" x509-parser = "0.15.0" @@ -110,4 +110,4 @@ reqwest = { version = "0.11.18", default-features = false, features = [ tokio-tungstenite = { version = "0.21.0", features = [ "rustls-tls-native-roots", ] } -warp = { version = "0.3.5", features = ["tls"] } +warp = { version = "0.3.6", features = ["tls"] }