From cc57467d10a6ed036be81c38b6b0b8a0ddfa26ed Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2020 01:25:13 +0000 Subject: [PATCH] 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] --- Cargo.lock | 36 +++++++++++++++++------------------ Cargo.toml | 2 +- arch/Cargo.toml | 2 +- block_util/Cargo.toml | 2 +- devices/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- pci/Cargo.toml | 2 +- qcow/Cargo.toml | 2 +- vhost_user_backend/Cargo.toml | 2 +- vhost_user_block/Cargo.toml | 2 +- vhost_user_fs/Cargo.toml | 2 +- vhost_user_net/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-virtio/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 15 files changed, 32 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff7f20c30..e8d94bec2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index d69911086..9c8065f49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"} diff --git a/arch/Cargo.toml b/arch/Cargo.toml index b537dc8e0..50ab63697 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -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" } diff --git a/block_util/Cargo.toml b/block_util/Cargo.toml index ff5cb3919..c93077a94 100644 --- a/block_util/Cargo.toml +++ b/block_util/Cargo.toml @@ -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" diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 964f53084..8ae513699 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.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" diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index cf6fb92ba..de90d4ff9 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.72" -log = "0.4.8" +log = "0.4.11" net_gen = { path = "../net_gen" } rand = "0.7.3" serde = "1.0.114" diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 17f2520b9..4dc3cc84f 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -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" diff --git a/qcow/Cargo.toml b/qcow/Cargo.toml index c0f21b32b..bffdbd3e3 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.72" -log = "0.4.8" +log = "0.4.11" 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 5596f3d85..9410e8554 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.72" -log = "0.4.8" +log = "0.4.11" virtio-bindings = "0.1.0" vm-memory = "0.2.1" vm-virtio = { path = "../vm-virtio" } diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index bcd414439..ebe1d606c 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.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" } diff --git a/vhost_user_fs/Cargo.toml b/vhost_user_fs/Cargo.toml index 66e0a93a9..a5a2d8471 100644 --- a/vhost_user_fs/Cargo.toml +++ b/vhost_user_fs/Cargo.toml @@ -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" diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index 034ecb854..e8026cde9 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -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" } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 2e0ec96f0..d9392f1ae 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -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 } diff --git a/vm-virtio/Cargo.toml b/vm-virtio/Cargo.toml index 4a56ced0e..edf4b34d7 100644 --- a/vm-virtio/Cargo.toml +++ b/vm-virtio/Cargo.toml @@ -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" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 783b8ad8d..fc743d37c 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -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" }