diff --git a/Cargo.lock b/Cargo.lock index 962029b1..ad7ee762 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2118,9 +2118,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.147" +version = "0.2.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" +checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" [[package]] name = "libloading" @@ -2224,9 +2224,9 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.4.5" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" +checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" [[package]] name = "lock_api" @@ -3022,6 +3022,15 @@ dependencies = [ "bitflags 1.3.2", ] +[[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +dependencies = [ + "bitflags 1.3.2", +] + [[package]] name = "redox_users" version = "0.4.3" @@ -3193,9 +3202,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustix" -version = "0.38.8" +version = "0.38.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" +checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" dependencies = [ "bitflags 2.4.0", "errno", @@ -3950,13 +3959,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.8.0" +version = "3.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" +checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" dependencies = [ "cfg-if", "fastrand", - "redox_syscall 0.3.5", + "redox_syscall 0.4.1", "rustix", "windows-sys", ] diff --git a/flutter/native/Cargo.toml b/flutter/native/Cargo.toml index 1257f7e5..d842c91f 100644 --- a/flutter/native/Cargo.toml +++ b/flutter/native/Cargo.toml @@ -42,4 +42,4 @@ reqwest = { version = "0.11.22", features = ["serde_json", "json", "rustls-tls"] tracing-subscriber = "0.3.17" [dev-dependencies] -tempfile = "3.8.0" +tempfile = "3.8.1" diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index e7079584..ab48803a 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -41,4 +41,4 @@ reqwest = { version = "0.11.22", default-features = false } moksha-mint = { path = "../moksha-mint" } moksha-wallet = { path = "../moksha-wallet" } moksha-core = { path = "../moksha-core" } -tempfile = "3.8.0" +tempfile = "3.8.1" diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index e5037cd8..91a729c4 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -45,7 +45,7 @@ envy = "0.4.2" tonic_lnd = "0.5.1" [dev-dependencies] -tempfile = "3.8.0" +tempfile = "3.8.1" tower = "0.4.13" mockall = "0.11.4" hex = "0.4.3" diff --git a/moksha-wallet/Cargo.toml b/moksha-wallet/Cargo.toml index a676f9ce..170c022e 100644 --- a/moksha-wallet/Cargo.toml +++ b/moksha-wallet/Cargo.toml @@ -42,4 +42,4 @@ 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"] } [dev-dependencies] -tempfile = "3.8.0" +tempfile = "3.8.1"