diff --git a/Cargo.lock b/Cargo.lock index 8e2e0b202..ba4c04bf9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3219,7 +3219,7 @@ dependencies = [ "camino", "chrono", "figment", - "futures", + "futures-util", "governor", "indoc", "ipnetwork", diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 236b44a70..349ea0768 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -15,7 +15,7 @@ workspace = true tokio.workspace = true tracing.workspace = true anyhow.workspace = true -futures = "0.3.31" +futures-util.workspace = true camino = { workspace = true, features = ["serde1"] } chrono.workspace = true diff --git a/crates/config/src/sections/secrets.rs b/crates/config/src/sections/secrets.rs index 233118088..abe977b81 100644 --- a/crates/config/src/sections/secrets.rs +++ b/crates/config/src/sections/secrets.rs @@ -8,7 +8,7 @@ use std::borrow::Cow; use anyhow::{Context, bail}; use camino::Utf8PathBuf; -use futures::future::{try_join, try_join_all}; +use futures_util::future::{try_join, try_join_all}; use mas_jose::jwk::{JsonWebKey, JsonWebKeySet}; use mas_keystore::{Encrypter, Keystore, PrivateKey}; use rand::{