diff --git a/Cargo.lock b/Cargo.lock index ce9a9e49..9833e728 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1530,9 +1530,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.21" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" +checksum = "2bfc52cbddcfd745bf1740338492bb0bd83d76c67b445f91c5fb29fae29ecaa1" dependencies = [ "futures-core", "futures-sink", @@ -1540,9 +1540,9 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.21" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" +checksum = "d2acedae88d38235936c3922476b10fced7b2b68136f5e3c03c2d5be348a1115" [[package]] name = "futures-executor" @@ -1568,15 +1568,15 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.21" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" +checksum = "93a66fc6d035a26a3ae255a6d2bca35eda63ae4c5512bef54449113f7a1228e5" [[package]] name = "futures-macro" -version = "0.3.21" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512" +checksum = "0db9cce532b0eae2ccf2766ab246f114b56b9cf6d445e00c2549fbc100ca045d" dependencies = [ "proc-macro2", "quote", @@ -1585,21 +1585,21 @@ dependencies = [ [[package]] name = "futures-sink" -version = "0.3.21" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" +checksum = "ca0bae1fe9752cf7fd9b0064c674ae63f97b37bc714d745cbde0afb7ec4e6765" [[package]] name = "futures-task" -version = "0.3.21" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" +checksum = "842fc63b931f4056a24d59de13fb1272134ce261816e063e634ad0c15cdc5306" [[package]] name = "futures-util" -version = "0.3.21" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" +checksum = "f0828a5471e340229c11c77ca80017937ce3c58cb788a17e5f1c2d5c485a9577" dependencies = [ "futures 0.1.31", "futures-channel", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index fdf1fcc0..342350fd 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -12,7 +12,7 @@ axum-extra = { version = "0.3.7", features = ["cookie-private"] } bincode = "1.3.3" chrono = "0.4.20" data-encoding = "2.3.2" -futures-util = "0.3.21" +futures-util = "0.3.23" headers = "0.3.7" http = "0.2.8" http-body = "0.4.5" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 0eb6939b..ac994cdc 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] axum = { version = "0.5.15", optional = true } bytes = "1.2.1" -futures-util = "0.3.21" +futures-util = "0.3.23" headers = "0.3.7" http = "0.2.8" http-body = "0.4.5" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index ac50e9e4..9f409822 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.62" async-trait = "0.1.57" convert_case = "0.5.0" csv = "1.1.6" -futures-util = "0.3.21" +futures-util = "0.3.23" reqwest = { version = "0.11.11", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.142", features = ["derive"] } tokio = { version = "1.20.1", features = ["full"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index d74947c2..30de3a1c 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -14,7 +14,7 @@ crypto-mac = { version = "0.11.1", features = ["std"] } digest = "0.10.3" ecdsa = { version = "0.14.3", features = ["sign", "verify", "pem", "pkcs8"] } elliptic-curve = { version = "0.12.3", features = ["ecdh", "pem"] } -futures-util = "0.3.21" +futures-util = "0.3.23" hmac = "0.12.1" http = "0.2.8" p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] } diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index ad9091ca..41a28249 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" tokio = "1.20.1" async-trait = "0.1.57" tokio-stream = "0.1.9" -futures-util = "0.3.21" +futures-util = "0.3.23" tracing = "0.1.36" sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] }