diff options
| author | Jokler <jokler@protonmail.com> | 2020-01-26 06:58:42 +0100 |
|---|---|---|
| committer | Jokler <jokler@protonmail.com> | 2020-01-29 20:39:27 +0100 |
| commit | af0a1b81707536caf4e498d86912f65981342072 (patch) | |
| tree | 6a875cd46bc427544804a14278a90e23a119bfc5 /Cargo.lock | |
| parent | 32686ba4a31ecf7c9aedad65c1a6be0be7d96ea2 (diff) | |
| download | pokebot-af0a1b81707536caf4e498d86912f65981342072.tar.gz pokebot-af0a1b81707536caf4e498d86912f65981342072.zip | |
Randomly choose from lists of identities and names
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -1786,6 +1786,7 @@ dependencies = [ "gstreamer-audio", "log", "log4rs", + "rand 0.7.3", "serde", "serde_json", "structopt", @@ -1914,22 +1915,23 @@ dependencies = [ "rand_isaac", "rand_jitter", "rand_os", - "rand_pcg", + "rand_pcg 0.1.2", "rand_xorshift", "winapi 0.3.8", ] [[package]] name = "rand" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" dependencies = [ "getrandom", "libc", "rand_chacha 0.2.1", "rand_core 0.5.1", "rand_hc 0.2.0", + "rand_pcg 0.2.1", ] [[package]] @@ -2039,6 +2041,15 @@ dependencies = [ ] [[package]] +name = "rand_pcg" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] name = "rand_xorshift" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2569,7 +2580,7 @@ checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" dependencies = [ "cfg-if", "libc", - "rand 0.7.2", + "rand 0.7.3", "redox_syscall", "remove_dir_all", "winapi 0.3.8", |
