From e5c6f5ad966ddac4199d05500e403f05803792dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Feb 2023 07:03:41 +0000 Subject: [PATCH] Bump procfs from 0.12.0 to 0.15.0 in /src/agent Bumps [procfs](https://github.com/eminence/procfs) from 0.12.0 to 0.15.0. - [Release notes](https://github.com/eminence/procfs/releases) - [Commits](https://github.com/eminence/procfs/compare/v0.12.0...v0.15.0) --- updated-dependencies: - dependency-name: procfs dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/agent/Cargo.lock | 6 +++--- src/agent/coverage-legacy/Cargo.toml | 2 +- src/agent/coverage/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index bf4cf7cf3a..ac71f8e779 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -2628,16 +2628,16 @@ dependencies = [ [[package]] name = "procfs" -version = "0.12.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0941606b9934e2d98a3677759a971756eb821f75764d0e0d26946d08e74d9104" +checksum = "42fc1c48bf0b73acc493bf78687f5e455642d894508217017264b2c2eae15105" dependencies = [ "bitflags", "byteorder", "flate2", "hex", "lazy_static", - "libc", + "rustix", ] [[package]] diff --git a/src/agent/coverage-legacy/Cargo.toml b/src/agent/coverage-legacy/Cargo.toml index e047be3ead..07cd5080b2 100644 --- a/src/agent/coverage-legacy/Cargo.toml +++ b/src/agent/coverage-legacy/Cargo.toml @@ -37,7 +37,7 @@ winapi = "0.3" pete = "0.9" # For procfs, opt out of the `chrono` freature; it pulls in an old version # of `time`. We do not use the methods that the `chrono` feature enables. -procfs = { version = "0.12", default-features = false, features=["flate2"] } +procfs = { version = "0.15", default-features = false, features=["flate2"] } [dev-dependencies] env_logger = "0.9" diff --git a/src/agent/coverage/Cargo.toml b/src/agent/coverage/Cargo.toml index 27f2fe61c5..6fd22ac99b 100644 --- a/src/agent/coverage/Cargo.toml +++ b/src/agent/coverage/Cargo.toml @@ -25,7 +25,7 @@ debugger = { path = "../debugger" } pete = "0.9" # For procfs, opt out of the `chrono` freature; it pulls in an old version # of `time`. We do not use the methods that the `chrono` feature enables. -procfs = { version = "0.12", default-features = false, features = ["flate2"] } +procfs = { version = "0.15", default-features = false, features = ["flate2"] } [dev-dependencies] clap = { version = "4.0", features = ["derive"] }