diff --git a/Cargo.lock b/Cargo.lock index f22bd25bf6b82..db570bcc8b6e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3336,11 +3336,12 @@ dependencies = [ [[package]] name = "fakedata_generator" -version = "0.2.4" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6815202b22ccd0dd16957e52e254c52392c84edafb4d3cc0161b9f30a85dbb88" +checksum = "302a45f60d105c247c9d3131107392da80df844f9215260b7f8ccfa301a6a6f4" dependencies = [ - "rand 0.7.3", + "passt", + "rand 0.8.5", "serde", "serde_json", ] @@ -6091,6 +6092,12 @@ dependencies = [ "regex", ] +[[package]] +name = "passt" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13242a5ce97f39a8095d03c8b273e91d09f2690c0b7d69a2af844941115bab24" + [[package]] name = "paste" version = "1.0.14" diff --git a/LICENSE-3rdparty.csv b/LICENSE-3rdparty.csv index 3f8fa40e83adb..a7da2e060786f 100644 --- a/LICENSE-3rdparty.csv +++ b/LICENSE-3rdparty.csv @@ -385,6 +385,7 @@ overload,https://github.com/danaugrs/overload,MIT,Daniel Salvadori parking,https://github.com/stjepang/parking,Apache-2.0 OR MIT,"Stjepan Glavina , The Rust Project Developers" parking_lot,https://github.com/Amanieu/parking_lot,MIT OR Apache-2.0,Amanieu d'Antras +passt,https://github.com/kevingimbel/passt,MIT OR Apache-2.0,Kevin Gimbel paste,https://github.com/dtolnay/paste,MIT OR Apache-2.0,David Tolnay pbkdf2,https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2,MIT OR Apache-2.0,RustCrypto Developers peeking_take_while,https://github.com/fitzgen/peeking_take_while,MIT OR Apache-2.0,Nick Fitzgerald diff --git a/lib/fakedata/Cargo.toml b/lib/fakedata/Cargo.toml index 6dedcb99df25e..ef8b8455ca6fb 100644 --- a/lib/fakedata/Cargo.toml +++ b/lib/fakedata/Cargo.toml @@ -8,5 +8,5 @@ license = "MPL-2.0" [dependencies] chrono = "0.4.31" -fakedata_generator = "0.2.4" +fakedata_generator = "0.4.0" rand = "0.8.5"