diff --git a/stellar-lend/Cargo.lock b/stellar-lend/Cargo.lock index b67cec6..dabba7b 100644 --- a/stellar-lend/Cargo.lock +++ b/stellar-lend/Cargo.lock @@ -162,7 +162,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ "num-traits", - "rand 0.8.5", + "rand 0.8.6", ] [[package]] @@ -1903,9 +1903,9 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" [[package]] name = "rand" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", "rand_chacha 0.3.1", @@ -2544,7 +2544,7 @@ dependencies = [ "num-integer", "num-traits", "p256", - "rand 0.8.5", + "rand 0.8.6", "rand_chacha 0.3.1", "sec1", "sha2", @@ -2598,7 +2598,7 @@ dependencies = [ "ctor", "derive_arbitrary", "ed25519-dalek", - "rand 0.8.5", + "rand 0.8.6", "rustc_version", "serde", "serde_json", @@ -2913,7 +2913,7 @@ name = "stellarlend-migration-tests" version = "0.1.0" dependencies = [ "chrono", - "rand 0.8.5", + "rand 0.9.2", "serde", "serde_json", "soroban-sdk", diff --git a/stellar-lend/tests/migration/Cargo.toml b/stellar-lend/tests/migration/Cargo.toml index 436fc31..9e62fe3 100644 --- a/stellar-lend/tests/migration/Cargo.toml +++ b/stellar-lend/tests/migration/Cargo.toml @@ -13,4 +13,4 @@ soroban-sdk = { workspace = true, features = ["testutils"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } chrono = { workspace = true, features = ["serde"] } -rand = "0.8" +rand = "0.9"