From 2d1f35742dbbdfc7db5e67b1a48163a1db7b0939 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Dec 2022 12:12:50 +0000 Subject: [PATCH] chore(deps): bump procfs from 0.14.1 to 0.14.2 Bumps [procfs](https://github.com/eminence/procfs) from 0.14.1 to 0.14.2. - [Release notes](https://github.com/eminence/procfs/releases) - [Commits](https://github.com/eminence/procfs/compare/v0.14.1...v0.14.2) --- updated-dependencies: - dependency-name: procfs dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 40 ++++--------------- crates/libcgroups/Cargo.toml | 2 +- crates/libcontainer/Cargo.toml | 2 +- crates/youki/Cargo.toml | 2 +- .../integration_test/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0df8f27e9..8fb13c572 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1101,12 +1101,6 @@ dependencies = [ "which", ] -[[package]] -name = "io-lifetimes" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074" - [[package]] name = "io-lifetimes" version = "1.0.1" @@ -1133,8 +1127,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330" dependencies = [ "hermit-abi 0.2.6", - "io-lifetimes 1.0.1", - "rustix 0.36.4", + "io-lifetimes", + "rustix", "windows-sys 0.42.0", ] @@ -1339,12 +1333,6 @@ dependencies = [ "cc", ] -[[package]] -name = "linux-raw-sys" -version = "0.0.46" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d" - [[package]] name = "linux-raw-sys" version = "0.1.3" @@ -1837,9 +1825,9 @@ dependencies = [ [[package]] name = "procfs" -version = "0.14.1" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dfb6451c91904606a1abe93e83a8ec851f45827fa84273f256ade45dc095818" +checksum = "b1de8dacb0873f77e6aefc6d71e044761fcc68060290f5b1089fcdf84626bb69" dependencies = [ "bitflags", "byteorder", @@ -1847,7 +1835,7 @@ dependencies = [ "flate2", "hex", "lazy_static", - "rustix 0.35.13", + "rustix", ] [[package]] @@ -2121,20 +2109,6 @@ dependencies = [ "semver 1.0.13", ] -[[package]] -name = "rustix" -version = "0.35.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9" -dependencies = [ - "bitflags", - "errno", - "io-lifetimes 0.7.5", - "libc", - "linux-raw-sys 0.0.46", - "windows-sys 0.42.0", -] - [[package]] name = "rustix" version = "0.36.4" @@ -2143,9 +2117,9 @@ checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23" dependencies = [ "bitflags", "errno", - "io-lifetimes 1.0.1", + "io-lifetimes", "libc", - "linux-raw-sys 0.1.3", + "linux-raw-sys", "windows-sys 0.42.0", ] diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index 3780e6a52..3afe22b8e 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -21,7 +21,7 @@ cgroupsv2_devices = ["rbpf", "libbpf-sys", "errno", "libc"] [dependencies] nix = "0.25.0" -procfs = "0.14.1" +procfs = "0.14.2" log = "0.4" anyhow = "1.0" oci-spec = { version = "0.5.8", features = ["runtime"] } diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index 53b6873b4..5b88907c2 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -34,7 +34,7 @@ mio = { version = "0.8.5", features = ["os-ext", "os-poll"] } nix = "0.25.0" oci-spec = { version = "0.5.8", features = ["runtime"] } path-clean = "0.1.0" -procfs = "0.14.1" +procfs = "0.14.2" prctl = "1.0.0" libcgroups = { version = "0.0.4", path = "../libcgroups", default-features = false } libseccomp = { version = "0.3.0" } diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index 86bcd8233..7797ef93b 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -33,7 +33,7 @@ nix = "0.25.0" oci-spec = { version = "0.5.8", features = ["runtime"] } once_cell = "1.16.0" pentacle = "1.0.0" -procfs = "0.14.1" +procfs = "0.14.2" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tabwriter = "1" diff --git a/tests/rust-integration-tests/integration_test/Cargo.toml b/tests/rust-integration-tests/integration_test/Cargo.toml index d86c1d302..a9defe755 100644 --- a/tests/rust-integration-tests/integration_test/Cargo.toml +++ b/tests/rust-integration-tests/integration_test/Cargo.toml @@ -15,7 +15,7 @@ num_cpus = "1.14" oci-spec = "0.5.8" once_cell = "1.16.0" pnet_datalink = "0.31.0" -procfs = "0.14.1" +procfs = "0.14.2" rand = "0.8.5" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"