build: bump log from 0.4.14 to 0.4.16

Bumps [log](https://github.com/rust-lang/log) from 0.4.14 to 0.4.16.
- [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/commits)

---
updated-dependencies:
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-03-25 16:52:26 +00:00
parent 648b61d1cc
commit 86a54a2658
17 changed files with 18 additions and 18 deletions

4
Cargo.lock generated
View File

@ -483,9 +483,9 @@ dependencies = [
[[package]]
name = "log"
version = "0.4.14"
version = "0.4.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
dependencies = [
"cfg-if",
]

View File

@ -23,7 +23,7 @@ epoll = "4.3.1"
event_monitor = { path = "event_monitor" }
hypervisor = { path = "hypervisor" }
libc = "0.2.121"
log = { version = "0.4.14", features = ["std"] }
log = { version = "0.4.16", features = ["std"] }
option_parser = { path = "option_parser" }
seccompiler = "0.2.0"
serde_json = "1.0.79"

View File

@ -16,7 +16,7 @@ byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" }
libc = "0.2.121"
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
log = "0.4.14"
log = "0.4.16"
serde = { version = "1.0.136", features = ["rc"] }
serde_derive = "1.0.136"
thiserror = "1.0.30"

View File

@ -10,7 +10,7 @@ default = []
[dependencies]
io-uring = "0.5.2"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
qcow = { path = "../qcow" }
thiserror = "1.0.30"
versionize = "0.1.6"

View File

@ -12,7 +12,7 @@ bitflags = "1.3.2"
byteorder = "1.4.3"
epoll = "4.3.1"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
versionize = "0.1.6"
versionize_derive = "0.1.4"
vm-device = { path = "../vm-device" }

View File

@ -15,7 +15,7 @@ anyhow = "1.0.56"
epoll = "4.3.1"
thiserror = "1.0.30"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
kvm-ioctls = { version = "0.11.0", optional = true }
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true }
mshv-bindings = {git = "https://github.com/rust-vmm/mshv", branch = "main", features = ["with-serde", "fam-wrappers"], optional = true }

View File

@ -8,7 +8,7 @@ edition = "2018"
epoll = "4.3.1"
getrandom = "0.2"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
net_gen = { path = "../net_gen" }
rate_limiter = { path = "../rate_limiter" }
serde = "1.0.136"

View File

@ -17,7 +17,7 @@ vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", defau
vfio_user = { path = "../vfio_user" }
vmm-sys-util = "0.9.0"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
serde = "1.0.136"
serde_derive = "1.0.136"
thiserror = "1.0.30"

View File

@ -11,6 +11,6 @@ path = "src/qcow.rs"
[dependencies]
byteorder = "1.4.3"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
remain = "0.2.2"
vmm-sys-util = "0.9.0"

View File

@ -5,5 +5,5 @@ edition = "2018"
[dependencies]
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
vmm-sys-util = "0.9.0"

View File

@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.56"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
serde = {version = ">=1.0.27", features = ["rc"] }
serde_derive = ">=1.0.27"
serde_json = ">=1.0.9"

View File

@ -9,7 +9,7 @@ license = "Apache-2.0"
byteorder = "1.4.3"
crc32c = "0.6.1"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
remain = "0.2.2"
thiserror = "1.0"
uuid = { version = "0.8.2", features = ["v4"] }

View File

@ -10,7 +10,7 @@ clap = { version = "3.1.6", features = ["wrap_help"] }
env_logger = "0.9.0"
epoll = "4.3.1"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
option_parser = { path = "../option_parser" }
qcow = { path = "../qcow" }
vhost = { version = "0.4.0", features = ["vhost-user-slave"] }

View File

@ -9,7 +9,7 @@ clap = { version = "3.1.6", features = ["wrap_help"] }
env_logger = "0.9.0"
epoll = "4.3.1"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" }
vhost = { version = "0.4.0", features = ["vhost-user-slave"] }

View File

@ -17,7 +17,7 @@ epoll = "4.3.1"
event_monitor = { path = "../event_monitor" }
io-uring = "0.5.2"
libc = "0.2.121"
log = "0.4.14"
log = "0.4.16"
net_gen = { path = "../net_gen" }
net_util = { path = "../net_util" }
pci = { path = "../pci" }

View File

@ -8,7 +8,7 @@ edition = "2018"
default = []
[dependencies]
log = "0.4.14"
log = "0.4.16"
virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
virtio-queue = "0.2.0"
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }

View File

@ -31,7 +31,7 @@ hypervisor = { path = "../hypervisor" }
lazy_static = "1.4.0"
libc = "0.2.121"
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
log = "0.4.14"
log = "0.4.16"
micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "main" }
net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" }