build(deps): bump rand from 0.8.1 to 0.8.2

Bumps [rand](https://github.com/rust-random/rand) from 0.8.1 to 0.8.2.
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-random/rand/compare/0.8.1...0.8.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot] 2021-01-13 10:10:41 +00:00
parent b2dd03b2dc
commit 6b424b5f6b
3 changed files with 7 additions and 7 deletions

10
Cargo.lock generated
View File

@ -68,7 +68,7 @@ dependencies = [
"libc",
"linux-loader",
"log 0.4.13",
"rand 0.8.1",
"rand 0.8.2",
"serde",
"serde_derive",
"serde_json",
@ -665,7 +665,7 @@ dependencies = [
"log 0.4.13",
"net_gen",
"pnet",
"rand 0.8.1",
"rand 0.8.2",
"serde",
"serde_json",
"virtio-bindings",
@ -893,9 +893,9 @@ dependencies = [
[[package]]
name = "rand"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c24fcd450d3fa2b592732565aa4f17a27a61c65ece4726353e000939b0edee34"
checksum = "18519b42a40024d661e1714153e9ad0c3de27cd495760ceb09710920f1098b1e"
dependencies = [
"libc",
"rand_chacha",
@ -1254,7 +1254,7 @@ checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
dependencies = [
"cfg-if 1.0.0",
"libc",
"rand 0.8.1",
"rand 0.8.2",
"redox_syscall 0.2.4",
"remove_dir_all",
"winapi 0.3.9",

View File

@ -26,4 +26,4 @@ git = "https://github.com/rust-vmm/linux-loader"
features = ["elf", "bzimage"]
[dev-dependencies]
rand = "0.8.1"
rand = "0.8.2"

View File

@ -8,7 +8,7 @@ epoll = ">=4.0.1"
libc = "0.2.82"
log = "0.4.13"
net_gen = { path = "../net_gen" }
rand = "0.8.1"
rand = "0.8.2"
serde = "1.0.118"
virtio-bindings = "0.1.0"
vm-memory = { version = "0.4.0", features = ["backend-mmap", "backend-atomic"] }