diff --git a/Cargo.lock b/Cargo.lock index 5c282143a..8e0daa22e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,7 +67,7 @@ dependencies = [ "hypervisor", "libc", "linux-loader", - "log 0.4.11", + "log 0.4.13", "rand 0.8.1", "serde", "serde_derive", @@ -158,7 +158,7 @@ version = "0.1.0" dependencies = [ "io-uring", "libc", - "log 0.4.11", + "log 0.4.13", "serde", "serde_derive", "serde_json", @@ -221,7 +221,7 @@ dependencies = [ "hypervisor", "lazy_static", "libc", - "log 0.4.11", + "log 0.4.13", "net_util", "option_parser", "seccomp", @@ -282,7 +282,7 @@ dependencies = [ "byteorder", "epoll", "libc", - "log 0.4.11", + "log 0.4.13", "serde", "serde_derive", "serde_json", @@ -321,7 +321,7 @@ checksum = "f26ecb66b4bdca6c1409b40fb255eefc2bd4f6d135dab3c3124f80ffa2a9661e" dependencies = [ "atty", "humantime", - "log 0.4.11", + "log 0.4.13", "regex", "termcolor", ] @@ -434,7 +434,7 @@ dependencies = [ "kvm-bindings", "kvm-ioctls", "libc", - "log 0.4.11", + "log 0.4.13", "mshv-bindings", "mshv-ioctls", "serde", @@ -583,14 +583,14 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" dependencies = [ - "log 0.4.11", + "log 0.4.13", ] [[package]] name = "log" -version = "0.4.11" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" +checksum = "fcf3805d4480bb5b86070dcfeb9e2cb2ebc148adb753c5cca5f884d1d65a42b2" dependencies = [ "cfg-if 0.1.10", ] @@ -661,7 +661,7 @@ dependencies = [ "epoll", "lazy_static", "libc", - "log 0.4.11", + "log 0.4.13", "net_gen", "pnet", "rand 0.8.1", @@ -728,7 +728,7 @@ dependencies = [ "byteorder", "hypervisor", "libc", - "log 0.4.11", + "log 0.4.13", "serde", "serde_derive", "serde_json", @@ -862,7 +862,7 @@ version = "0.1.0" dependencies = [ "byteorder", "libc", - "log 0.4.11", + "log 0.4.13", "remain", "tempfile", "vmm-sys-util", @@ -1451,7 +1451,7 @@ dependencies = [ "byteorder", "kvm-bindings", "kvm-ioctls", - "log 0.4.11", + "log 0.4.13", "vfio-bindings", "vm-memory", "vmm-sys-util", @@ -1473,7 +1473,7 @@ version = "0.1.0" dependencies = [ "epoll", "libc", - "log 0.4.11", + "log 0.4.13", "vhost", "virtio-bindings", "vm-memory", @@ -1489,7 +1489,7 @@ dependencies = [ "clap", "epoll", "libc", - "log 0.4.11", + "log 0.4.13", "option_parser", "qcow", "vhost", @@ -1506,7 +1506,7 @@ dependencies = [ "clap", "epoll", "libc", - "log 0.4.11", + "log 0.4.13", "net_util", "option_parser", "vhost", @@ -1533,7 +1533,7 @@ dependencies = [ "epoll", "io-uring", "libc", - "log 0.4.11", + "log 0.4.13", "net_gen", "net_util", "pci", @@ -1601,7 +1601,7 @@ dependencies = [ name = "vm-virtio" version = "0.1.0" dependencies = [ - "log 0.4.11", + "log 0.4.13", "serde", "serde_derive", "serde_json", @@ -1627,7 +1627,7 @@ dependencies = [ "lazy_static", "libc", "linux-loader", - "log 0.4.11", + "log 0.4.13", "micro_http", "net_util", "option_parser", diff --git a/Cargo.toml b/Cargo.toml index 3d4880d90..d53abcc89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ clap = { version = "2.33.3", features = ["wrap_help"] } epoll = ">=4.0.1" hypervisor = { path = "hypervisor" } libc = "0.2.81" -log = { version = "0.4.11", features = ["std"] } +log = { version = "0.4.13", features = ["std"] } option_parser = { path = "option_parser" } seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.22.0" } serde_json = "1.0.61" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index e27a4938b..debd585a3 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -12,7 +12,7 @@ anyhow = "1.0" byteorder = "1.3.4" hypervisor = { path = "../hypervisor" } libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" serde_json = ">=1.0.9" diff --git a/block_util/Cargo.toml b/block_util/Cargo.toml index e3a19a580..7b07ee8c4 100644 --- a/block_util/Cargo.toml +++ b/block_util/Cargo.toml @@ -11,7 +11,7 @@ io_uring = [] [dependencies] io-uring = ">=0.4.0" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" serde = ">=1.0.27" serde_derive = ">=1.0.27" serde_json = ">=1.0.9" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 29a085954..e63de385b 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -9,7 +9,7 @@ bitflags = ">=1.2.1" byteorder = "1.3.4" epoll = ">=4.0.1" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" serde_json = ">=1.0.9" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index b0aaf229a..5a5fe33a6 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0" epoll = ">=4.0.1" thiserror = "1.0" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" kvm-ioctls = { git = "https://github.com/cloud-hypervisor/kvm-ioctls", branch = "ch" } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch", features = ["with-serde", "fam-wrappers"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 48ec94cab..e7d75699a 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -6,7 +6,7 @@ authors = ["The Chromium OS Authors"] [dependencies] epoll = ">=4.0.1" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" net_gen = { path = "../net_gen" } rand = "0.8.1" serde = "1.0.118" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index c3423b79c..aad596355 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -11,7 +11,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.81" -log = "0.4.11" +log = "0.4.13" serde = {version = ">=1.0.27", features = ["rc"] } serde_derive = ">=1.0.27" serde_json = ">=1.0.9" diff --git a/qcow/Cargo.toml b/qcow/Cargo.toml index 98923e251..2f519d1c0 100644 --- a/qcow/Cargo.toml +++ b/qcow/Cargo.toml @@ -11,7 +11,7 @@ path = "src/qcow.rs" [dependencies] byteorder = "1.3.4" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" remain = "0.2.2" vmm-sys-util = ">=0.3.1" diff --git a/vhost_user_backend/Cargo.toml b/vhost_user_backend/Cargo.toml index e13ce372d..701a72c2f 100644 --- a/vhost_user_backend/Cargo.toml +++ b/vhost_user_backend/Cargo.toml @@ -10,7 +10,7 @@ default = [] [dependencies] epoll = ">=4.0.1" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" virtio-bindings = "0.1.0" vm-memory = "0.4.0" vm-virtio = { path = "../vm-virtio" } diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index 677fecaa1..59713f369 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -9,7 +9,7 @@ block_util = { path = "../block_util" } clap = { version = "2.33.3", features=["wrap_help"] } epoll = ">=4.0.1" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" option_parser = { path = "../option_parser" } qcow = { path = "../qcow" } vhost_user_backend = { path = "../vhost_user_backend" } diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index e8a12ce86..50a3552a4 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" clap = { version = "2.33.3", features=["wrap_help"] } epoll = ">=4.0.1" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" net_util = { path = "../net_util" } option_parser = { path = "../option_parser" } vhost_user_backend = { path = "../vhost_user_backend" } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 89cc72eef..312039c54 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -16,7 +16,7 @@ byteorder = "1.3.4" epoll = ">=4.0.1" io-uring = ">=0.4.0" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" net_gen = { path = "../net_gen" } net_util = { path = "../net_util" } pci = { path = "../pci" } diff --git a/vm-virtio/Cargo.toml b/vm-virtio/Cargo.toml index 98ad20b53..1e3c897a9 100644 --- a/vm-virtio/Cargo.toml +++ b/vm-virtio/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" default = [] [dependencies] -log = "0.4.11" +log = "0.4.13" serde = ">=1.0.27" serde_derive = ">=1.0.27" serde_json = ">=1.0.9" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 59499dc94..1a6d0853d 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -26,7 +26,7 @@ epoll = ">=4.0.1" hypervisor = { path = "../hypervisor" } lazy_static = "1.4.0" libc = "0.2.81" -log = "0.4.11" +log = "0.4.13" micro_http = { git = "https://github.com/firecracker-microvm/micro-http", branch = "master" } net_util = { path = "../net_util" } option_parser = { path = "../option_parser" }