diff options
author | metamuffin <metamuffin@disroot.org> | 2022-11-21 20:19:18 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-11-21 20:19:18 +0100 |
commit | 11a57882861f9811cb1624d76a2b08ffb7d47b9c (patch) | |
tree | 9da6e5eea898a288a115413f2c928820f3541b1c /vgcodec/Cargo.lock | |
parent | b7e7bc086ff450f6234db5e868f1dde7d3e0c51b (diff) | |
download | video-codec-experiments-11a57882861f9811cb1624d76a2b08ffb7d47b9c.tar video-codec-experiments-11a57882861f9811cb1624d76a2b08ffb7d47b9c.tar.bz2 video-codec-experiments-11a57882861f9811cb1624d76a2b08ffb7d47b9c.tar.zst |
works (not)
Diffstat (limited to 'vgcodec/Cargo.lock')
-rw-r--r-- | vgcodec/Cargo.lock | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/vgcodec/Cargo.lock b/vgcodec/Cargo.lock index 4c7eacf..390443b 100644 --- a/vgcodec/Cargo.lock +++ b/vgcodec/Cargo.lock @@ -805,6 +805,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5da3b0203fd7ee5720aa0b5e790b591aa5d3f41c3ed2c34a3a393382198af2f7" [[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] name = "proc-macro2" version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -829,6 +835,36 @@ dependencies = [ ] [[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] name = "range-alloc" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1050,6 +1086,7 @@ dependencies = [ "image", "log", "pollster", + "rand", "wgpu", ] |