build(deps): bump log from 0.4.8 to 0.4.11

Bumps [log](https://github.com/rust-lang/log) from 0.4.8 to 0.4.11.
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/log/compare/0.4.8...0.4.11)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot] 2020-07-16 01:25:13 +00:00
parent d80e383dbb
commit cc57467d10
15 changed files with 32 additions and 32 deletions

36
Cargo.lock generated
View File

@ -65,7 +65,7 @@ dependencies = [
"kvm-ioctls",
"libc",
"linux-loader",
"log 0.4.8",
"log 0.4.11",
"rand 0.7.3",
"vm-memory",
]
@ -150,7 +150,7 @@ dependencies = [
name = "block_util"
version = "0.1.0"
dependencies = [
"log 0.4.8",
"log 0.4.11",
"serde",
"serde_derive",
"serde_json",
@ -203,7 +203,7 @@ dependencies = [
"hypervisor",
"lazy_static",
"libc",
"log 0.4.8",
"log 0.4.11",
"net_util",
"seccomp",
"serde_json",
@ -262,7 +262,7 @@ dependencies = [
"byteorder",
"epoll",
"libc",
"log 0.4.8",
"log 0.4.11",
"serde",
"serde_derive",
"serde_json",
@ -593,14 +593,14 @@ version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
dependencies = [
"log 0.4.8",
"log 0.4.11",
]
[[package]]
name = "log"
version = "0.4.8"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
dependencies = [
"cfg-if",
]
@ -648,7 +648,7 @@ dependencies = [
"epoll",
"lazy_static",
"libc",
"log 0.4.8",
"log 0.4.11",
"net_gen",
"pnet",
"rand 0.7.3",
@ -732,7 +732,7 @@ dependencies = [
"devices",
"hypervisor",
"libc",
"log 0.4.8",
"log 0.4.11",
"serde",
"serde_derive",
"serde_json",
@ -905,7 +905,7 @@ version = "0.1.0"
dependencies = [
"byteorder",
"libc",
"log 0.4.8",
"log 0.4.11",
"remain",
"tempfile",
"vmm-sys-util",
@ -1417,7 +1417,7 @@ dependencies = [
"byteorder",
"kvm-bindings",
"kvm-ioctls",
"log 0.4.8",
"log 0.4.11",
"vfio-bindings 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"vm-memory",
"vmm-sys-util",
@ -1439,7 +1439,7 @@ version = "0.1.0"
dependencies = [
"epoll",
"libc",
"log 0.4.8",
"log 0.4.11",
"vhost",
"virtio-bindings",
"vm-memory",
@ -1455,7 +1455,7 @@ dependencies = [
"clap",
"epoll",
"libc",
"log 0.4.8",
"log 0.4.11",
"option_parser",
"qcow",
"vhost",
@ -1474,7 +1474,7 @@ dependencies = [
"epoll",
"futures",
"libc",
"log 0.4.8",
"log 0.4.11",
"seccomp",
"tempdir",
"vhost",
@ -1493,7 +1493,7 @@ dependencies = [
"clap",
"epoll",
"libc",
"log 0.4.8",
"log 0.4.11",
"net_util",
"option_parser",
"vhost",
@ -1520,7 +1520,7 @@ dependencies = [
"devices",
"epoll",
"libc",
"log 0.4.8",
"log 0.4.11",
"net_gen",
"net_util",
"pci",
@ -1586,7 +1586,7 @@ dependencies = [
name = "vm-virtio"
version = "0.1.0"
dependencies = [
"log 0.4.8",
"log 0.4.11",
"serde",
"serde_derive",
"serde_json",
@ -1610,7 +1610,7 @@ dependencies = [
"lazy_static",
"libc",
"linux-loader",
"log 0.4.8",
"log 0.4.11",
"micro_http",
"net_util",
"option_parser",

View File

@ -13,7 +13,7 @@ lto = true
clap = { version = "2.33.1", features = ["wrap_help"] }
hypervisor = { path = "hypervisor" }
libc = "0.2.72"
log = { version = "0.4.8", features = ["std"] }
log = { version = "0.4.11", features = ["std"] }
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" }
serde_json = "1.0.56"
vhost_user_block = { path = "vhost_user_block"}

View File

@ -14,7 +14,7 @@ hypervisor = { path = "../hypervisor" }
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch" }
kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" }
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
vm-memory = { version = "0.2.1", features = ["backend-mmap"] }
acpi_tables = { path = "../acpi_tables", optional = true }
arch_gen = { path = "../arch_gen" }

View File

@ -5,7 +5,7 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2018"
[dependencies]
log = "0.4.8"
log = "0.4.11"
serde = ">=1.0.27"
serde_derive = ">=1.0.27"
serde_json = ">=1.0.9"

View File

@ -9,7 +9,7 @@ bitflags = ">=1.2.1"
byteorder = "1.3.4"
epoll = ">=4.0.1"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
serde = {version = ">=1.0.27", features = ["rc"] }
serde_derive = ">=1.0.27"
serde_json = ">=1.0.9"

View File

@ -6,7 +6,7 @@ authors = ["The Chromium OS Authors"]
[dependencies]
epoll = ">=4.0.1"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
net_gen = { path = "../net_gen" }
rand = "0.7.3"
serde = "1.0.114"

View File

@ -12,7 +12,7 @@ hypervisor = { path = "../hypervisor" }
vfio-ioctls = { git = "https://github.com/cloud-hypervisor/vfio-ioctls", branch = "ch" }
vmm-sys-util = ">=0.3.1"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
serde = {version = ">=1.0.27", features = ["rc"] }
serde_derive = ">=1.0.27"
serde_json = ">=1.0.9"

View File

@ -11,7 +11,7 @@ path = "src/qcow.rs"
[dependencies]
byteorder = "1.3.4"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
remain = "0.2.2"
vmm-sys-util = ">=0.3.1"

View File

@ -10,7 +10,7 @@ default = []
[dependencies]
epoll = ">=4.0.1"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
virtio-bindings = "0.1.0"
vm-memory = "0.2.1"
vm-virtio = { path = "../vm-virtio" }

View File

@ -9,7 +9,7 @@ block_util = { path = "../block_util" }
clap = { version = "2.33.1", features=["wrap_help"] }
epoll = ">=4.0.1"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
option_parser = { path = "../option_parser" }
qcow = { path = "../qcow" }
vhost_user_backend = { path = "../vhost_user_backend" }

View File

@ -10,7 +10,7 @@ clap = { version = "2.33.1", features=["wrap_help"] }
epoll = ">=4.0.1"
futures = { version = "0.3.5", features = ["thread-pool"] }
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
# Match the version in vmm
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.21.1" }
tempdir = "0.3.7"

View File

@ -8,7 +8,7 @@ edition = "2018"
clap = { version = "2.33.1", features=["wrap_help"] }
epoll = ">=4.0.1"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" }
vhost_user_backend = { path = "../vhost_user_backend" }

View File

@ -17,7 +17,7 @@ byteorder = "1.3.4"
devices = { path = "../devices" }
epoll = ">=4.0.1"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
net_gen = { path = "../net_gen" }
net_util = { path = "../net_util" }
pci = { path = "../pci", optional = true }

View File

@ -8,7 +8,7 @@ edition = "2018"
default = []
[dependencies]
log = "0.4.8"
log = "0.4.11"
serde = ">=1.0.27"
serde_derive = ">=1.0.27"
serde_json = ">=1.0.9"

View File

@ -24,7 +24,7 @@ epoll = ">=4.0.1"
hypervisor = { path = "../hypervisor" }
lazy_static = "1.4.0"
libc = "0.2.72"
log = "0.4.8"
log = "0.4.11"
micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "master" }
net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" }