From aded900e4cd558132299edde564c6326a362afba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 11:02:22 +0000 Subject: [PATCH] build(deps): Bump rftrace from 0.1.0 to 0.2.2 Bumps [rftrace](https://github.com/hermit-os/rftrace) from 0.1.0 to 0.2.2. - [Release notes](https://github.com/hermit-os/rftrace/releases) - [Commits](https://github.com/hermit-os/rftrace/compare/v0.1.0...v0.2.2) --- updated-dependencies: - dependency-name: rftrace dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 135b6c28..38961dbd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -733,6 +733,12 @@ version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" +[[package]] +name = "llvm-tools" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955be5d0ca0465caf127165acb47964f911e2bc26073e865deb8be7189302faf" + [[package]] name = "log" version = "0.4.22" @@ -1115,9 +1121,12 @@ dependencies = [ [[package]] name = "rftrace" -version = "0.1.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa2ee2d77e97cb948eb4576a5b7908aac75c02afa337c99aa34b9cef0346bedd" +checksum = "21bbe879479cc19052fc8cd14c4e840e3893abbc76ee43533367527fe15009b0" +dependencies = [ + "llvm-tools", +] [[package]] name = "rftrace-frontend" diff --git a/Cargo.toml b/Cargo.toml index 9c365c87..79443700 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ time = "0.3" tun-tap = { version = "0.1.3", default-features = false } uhyve-interface = { version = "0.1.1", path = "uhyve-interface", features = ["std"] } virtio-bindings = { version = "0.2", features = ["virtio-v4_14_0"] } -rftrace = { version = "0.1", optional = true } +rftrace = { version = "0.2", optional = true } rftrace-frontend = { version = "0.1", optional = true } shell-words = "1" sysinfo = { version = "0.32.0", default-features = false, features = ["system"] }