diff --git a/Cargo.lock b/Cargo.lock index 618a982e..86500653 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -653,6 +653,16 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" +[[package]] +name = "core-foundation" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" version = "0.8.4" @@ -3059,9 +3069,9 @@ checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" [[package]] name = "reqwest" -version = "0.11.20" +version = "0.11.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" +checksum = "78fdbab6a7e1d7b13cc8ff10197f47986b41c639300cc3c8158cac7847c9bbef" dependencies = [ "base64 0.21.2", "bytes", @@ -3085,6 +3095,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", + "system-configuration", "tokio", "tokio-rustls 0.24.1", "tokio-socks", @@ -3885,6 +3896,27 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "tap" version = "1.0.1" diff --git a/flutter/native/Cargo.toml b/flutter/native/Cargo.toml index 8c2765cb..84e08bbe 100644 --- a/flutter/native/Cargo.toml +++ b/flutter/native/Cargo.toml @@ -35,7 +35,7 @@ tracing-wasm = "0.2.1" wasm-bindgen-futures = "0.4.37" [target.'cfg(not(target_family="wasm"))'.dependencies] -reqwest = { version = "0.11.19", features = ["serde_json", "json", "rustls-tls"], default-features = false } +reqwest = { version = "0.11.21", features = ["serde_json", "json", "rustls-tls"], default-features = false } tracing-subscriber = "0.3.17" [dev-dependencies] diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index 01cf6b1b..740ce48b 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -33,7 +33,7 @@ tokio = { version = "1.30.0", features = ["sync", "rt"] } [dev-dependencies] anyhow = { version = "1.0.75", features = ["backtrace"] } tokio = { version = "1.30.0", features = ["full"] } -reqwest = { version = "0.11.19", default-features = false } +reqwest = { version = "0.11.21", 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 903e1ce2..21af7bf4 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -35,7 +35,7 @@ thiserror = "1.0.49" moksha-core = { path = "../moksha-core" } rocksdb = "0.21.0" lightning-invoice = "0.24.0" -reqwest = { version = "0.11.19", default-features = false, features = ["serde_json", "json", "rustls-tls-webpki-roots", "socks"] } +reqwest = { version = "0.11.21", default-features = false, features = ["serde_json", "json", "rustls-tls-webpki-roots", "socks"] } url = "2.4.1" dotenvy = "0.15.7" envy = "0.4.2" diff --git a/moksha-wallet/Cargo.toml b/moksha-wallet/Cargo.toml index b2f4f653..2fe000ca 100644 --- a/moksha-wallet/Cargo.toml +++ b/moksha-wallet/Cargo.toml @@ -34,7 +34,7 @@ rexie = "0.5.0" tokio = { version = "1.32.0", features = ["rt", "sync"] } [target.'cfg(not(target_family="wasm"))'.dependencies] -reqwest = { version = "0.11.20", features = ["serde_json", "json", "rustls-tls"], default-features = false } +reqwest = { version = "0.11.21", features = ["serde_json", "json", "rustls-tls"], default-features = false } tokio = { version = "1.32.0", features = ["rt", "rt-multi-thread", "macros"] } sqlx = { version = "0.7.2", default-features = false, features = ["sqlite", "runtime-tokio-rustls", "migrate", "macros"] }