From e0d540fc8ea8886ad2f9820fb8997d83a5149898 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 01:23:58 +0000 Subject: [PATCH] Bump the cargo group with 2 updates Bumps the cargo group with 2 updates: [serde](https://github.com/serde-rs/serde) and [nix](https://github.com/nix-rust/nix). Updates `serde` from 1.0.202 to 1.0.203 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.202...v1.0.203) Updates `nix` from 0.28.0 to 0.29.0 - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.28.0...v0.29.0) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: nix dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 32 +++++++++++++++++++++++++------- cli/Cargo.toml | 2 +- shell/Cargo.toml | 2 +- 3 files changed, 27 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 20d641a2..a0dea21f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -309,7 +309,7 @@ dependencies = [ "indexmap", "itertools 0.13.0", "lazy_static", - "nix 0.28.0", + "nix 0.29.0", "os_pipe", "pprof", "rand", @@ -407,6 +407,12 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + [[package]] name = "chrono" version = "0.4.38" @@ -1326,7 +1332,19 @@ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" dependencies = [ "bitflags 2.5.0", "cfg-if", - "cfg_aliases", + "cfg_aliases 0.1.1", + "libc", +] + +[[package]] +name = "nix" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +dependencies = [ + "bitflags 2.5.0", + "cfg-if", + "cfg_aliases 0.2.1", "libc", ] @@ -1804,18 +1822,18 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "serde" -version = "1.0.202" +version = "1.0.203" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395" +checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.202" +version = "1.0.203" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838" +checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" dependencies = [ "proc-macro2", "quote", @@ -2072,7 +2090,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ebc45f3aeb419b035f2c555b894e4281c79b4e065ea50866fa778dadc5be9c5" dependencies = [ - "nix 0.28.0", + "nix 0.26.4", "thiserror", "tokio", ] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 61668ff6..b296b9c9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -45,6 +45,6 @@ indent = "0.1.1" junit-report = "0.8.3" pathdiff = "0.2.1" regex = "1.10.4" -serde = { version = "1.0.202", features = ["derive"] } +serde = { version = "1.0.203", features = ["derive"] } serde_yaml = "0.9.34" strip-ansi-escapes = "0.2.0" diff --git a/shell/Cargo.toml b/shell/Cargo.toml index c64ddc5d..e036c35c 100644 --- a/shell/Cargo.toml +++ b/shell/Cargo.toml @@ -49,7 +49,7 @@ whoami = "1.5.1" [target.'cfg(unix)'.dependencies] exec = "0.3.1" -nix = { version = "0.28.0", features = ["fs", "process", "signal", "user"] } +nix = { version = "0.29.0", features = ["fs", "process", "signal", "user"] } tokio-command-fds = "0.2.1" uzers = "0.12.0"