From 53697fb9eb13768fc69d1a0a85505a1c65a7ed12 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 00:57:59 +0000 Subject: [PATCH] Bump thiserror from 2.0.7 to 2.0.8 in the patch group Bumps the patch group with 1 update: [thiserror](https://github.com/dtolnay/thiserror). Updates `thiserror` from 2.0.7 to 2.0.8 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.7...2.0.8) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- crates/libcgroups/Cargo.toml | 2 +- crates/libcontainer/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 69cc38845..d73bd520d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1983,7 +1983,7 @@ dependencies = [ "serde_json", "serial_test", "tempfile", - "thiserror 2.0.7", + "thiserror 2.0.8", "tracing", ] @@ -2014,7 +2014,7 @@ dependencies = [ "serde_json", "serial_test", "tempfile", - "thiserror 2.0.7", + "thiserror 2.0.8", "tracing", ] @@ -2442,7 +2442,7 @@ dependencies = [ "serde_json", "strum", "strum_macros", - "thiserror 2.0.7", + "thiserror 2.0.8", ] [[package]] @@ -3999,11 +3999,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.7" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767" +checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" dependencies = [ - "thiserror-impl 2.0.7", + "thiserror-impl 2.0.8", ] [[package]] @@ -4019,9 +4019,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.7" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36" +checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" dependencies = [ "proc-macro2", "quote", diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index f27b754a1..09c880d55 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -29,7 +29,7 @@ rbpf = { version = "0.3.0", optional = true } libbpf-sys = { version = "1.5.0", optional = true } errno = { version = "0.3.10", optional = true } libc = { version = "0.2.168", optional = true } -thiserror = "2.0.7" +thiserror = "2.0.8" tracing = { version = "0.1.41", features = ["attributes"] } [dev-dependencies] diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index a3eeee403..7c66634ea 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -47,7 +47,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" rust-criu = "0.4.0" regex = { version = "1.10.6", default-features = false, features = ["std", "unicode-perl"] } -thiserror = "2.0.7" +thiserror = "2.0.8" tracing = { version = "0.1.41", features = ["attributes"] } safe-path = "0.1.0" nc = "0.9.5"