From 9936a6cf8b533997e0f722f51d7e16d6d4e8844c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Apr 2023 21:36:57 +0000 Subject: [PATCH] Bump procfs from 0.12.0 to 0.15.1 in /src/agent Bumps [procfs](https://github.com/eminence/procfs) from 0.12.0 to 0.15.1. - [Release notes](https://github.com/eminence/procfs/releases) - [Commits](https://github.com/eminence/procfs/compare/v0.12.0...v0.15.1) --- updated-dependencies: - dependency-name: procfs dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/agent/Cargo.lock | 32 ++++++++++++++++++++++++++------ src/agent/coverage/Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index 042bdccba5..371c1e600d 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -1638,7 +1638,7 @@ checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" dependencies = [ "hermit-abi 0.3.1", "io-lifetimes", - "rustix", + "rustix 0.37.3", "windows-sys 0.48.0", ] @@ -1759,6 +1759,12 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" +[[package]] +name = "linux-raw-sys" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" + [[package]] name = "linux-raw-sys" version = "0.3.1" @@ -2573,16 +2579,16 @@ dependencies = [ [[package]] name = "procfs" -version = "0.12.0" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0941606b9934e2d98a3677759a971756eb821f75764d0e0d26946d08e74d9104" +checksum = "943ca7f9f29bab5844ecd8fdb3992c5969b6622bb9609b9502fef9b4310e3f1f" dependencies = [ "bitflags", "byteorder", "flate2", "hex", "lazy_static", - "libc", + "rustix 0.36.13", ] [[package]] @@ -2869,6 +2875,20 @@ dependencies = [ "semver", ] +[[package]] +name = "rustix" +version = "0.36.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a38f9520be93aba504e8ca974197f46158de5dcaa9fa04b57c57cd6a679d658" +dependencies = [ + "bitflags", + "errno 0.3.0", + "io-lifetimes", + "libc", + "linux-raw-sys 0.1.4", + "windows-sys 0.45.0", +] + [[package]] name = "rustix" version = "0.37.3" @@ -2879,7 +2899,7 @@ dependencies = [ "errno 0.3.0", "io-lifetimes", "libc", - "linux-raw-sys", + "linux-raw-sys 0.3.1", "windows-sys 0.45.0", ] @@ -3413,7 +3433,7 @@ dependencies = [ "cfg-if 1.0.0", "fastrand", "redox_syscall 0.3.5", - "rustix", + "rustix 0.37.3", "windows-sys 0.45.0", ] diff --git a/src/agent/coverage/Cargo.toml b/src/agent/coverage/Cargo.toml index 0a910474d4..e805ae9ea7 100644 --- a/src/agent/coverage/Cargo.toml +++ b/src/agent/coverage/Cargo.toml @@ -25,7 +25,7 @@ debugger = { path = "../debugger" } pete = "0.10" # 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.2", features = ["derive"] }