diff --git a/Cargo.lock b/Cargo.lock index faedf07e..180f3c86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2525,9 +2525,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" -version = "0.11.26" +version = "0.11.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78bf93c4af7a8bb7d879d51cebe797356ff10ae8516ace542b5182d9dcac10b2" +checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ "base64 0.21.7", "bytes", diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index 20d81e6d..97b28536 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -34,7 +34,7 @@ tokio = { version = "1.35.1", features = ["sync", "rt-multi-thread"] } [dev-dependencies] anyhow = { version = "1.0.80", features = ["backtrace"] } tokio = { version = "1.36.0", features = ["full"] } -reqwest = { version = "0.11.25", default-features = false } +reqwest = { version = "0.11.27", default-features = false } moksha-mint = { path = "../moksha-mint" } moksha-wallet = { path = "../moksha-wallet" } moksha-core = { path = "../moksha-core" } diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index 4b9de302..28962ea3 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -32,7 +32,7 @@ secp256k1 = { version = "0.28.2", default-features = false, features = ["rand", thiserror = "1.0.50" moksha-core = { path = "../moksha-core", version = "0.2.1" } lightning-invoice = "0.26.0" -reqwest = { version = "0.11.25", default-features = false, features = ["serde_json", "json", "rustls-tls", "socks"] } +reqwest = { version = "0.11.27", default-features = false, features = ["serde_json", "json", "rustls-tls", "socks"] } url = "2.4.1" dotenvy = "0.15.7" fedimint-tonic-lnd = { version = "0.2.0", features = ["lightningrpc", "walletrpc"] } diff --git a/moksha-wallet/Cargo.toml b/moksha-wallet/Cargo.toml index 781bc67d..3d38ec7e 100644 --- a/moksha-wallet/Cargo.toml +++ b/moksha-wallet/Cargo.toml @@ -33,7 +33,7 @@ rexie = "0.5.0" tokio = { version = "1.35.1", features = ["rt", "sync"] } [target.'cfg(not(target_family="wasm"))'.dependencies] -reqwest = { version = "0.11.25", features = ["serde_json", "json", "rustls-tls"], default-features = false } +reqwest = { version = "0.11.27", features = ["serde_json", "json", "rustls-tls"], default-features = false } tokio = { version = "1.35.1", features = ["rt", "rt-multi-thread", "macros"] } sqlx = { version = "0.7.4", default-features = false, features = ["sqlite", "runtime-tokio", "tls-rustls", "migrate", "macros"] }