From 3ce63735a851be0e19155fd3ae3dc5a6aa311cdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 04:55:08 +0000 Subject: [PATCH] Build(deps): bump nix from 0.28.0 to 0.29.0 Bumps [nix](https://github.com/nix-rust/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: nix dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 +++++++++++++++++++++++----- sanzu-broker/Cargo.toml | 2 +- sanzu/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c84b580..f793c87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -514,6 +514,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 = "clang-sys" version = "1.7.0" @@ -1505,9 +1511,9 @@ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.155" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "libdbus-sys" @@ -1773,11 +1779,23 @@ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" dependencies = [ "bitflags 2.4.1", "cfg-if", - "cfg_aliases", + "cfg_aliases 0.1.1", "libc", "memoffset 0.9.0", ] +[[package]] +name = "nix" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +dependencies = [ + "bitflags 2.4.1", + "cfg-if", + "cfg_aliases 0.2.1", + "libc", +] + [[package]] name = "nom" version = "7.1.3" @@ -2545,7 +2563,7 @@ dependencies = [ "lock_keys", "log", "memmap2", - "nix 0.28.0", + "nix 0.29.0", "notify-rust", "opus", "rayon", @@ -2605,7 +2623,7 @@ dependencies = [ "libgssapi", "log", "mio", - "nix 0.28.0", + "nix 0.29.0", "rustls", "rustls-pemfile", "rustls-pki-types", diff --git a/sanzu-broker/Cargo.toml b/sanzu-broker/Cargo.toml index 33bdf41..09dc591 100644 --- a/sanzu-broker/Cargo.toml +++ b/sanzu-broker/Cargo.toml @@ -19,7 +19,7 @@ env_logger = "0.11" libc = "0.2" log = "0.4" mio = { version = "0.8", features = ["net", "os-poll"] } -nix = { version = "0.28", features = ["fs", "process"] } +nix = { version = "0.29", features = ["fs", "process"] } rustls = "0.22" rustls-pemfile = "2.1" rustls-pki-types = { version="1", features = ["std"] } diff --git a/sanzu/Cargo.toml b/sanzu/Cargo.toml index 02603e0..fc146a6 100644 --- a/sanzu/Cargo.toml +++ b/sanzu/Cargo.toml @@ -69,7 +69,7 @@ winapi = { version = "0.3", features = [ [target.'cfg(unix)'.dependencies] libgssapi = { version = "0.7", optional = true } -nix = {version = "0.28", features = ["process"]} +nix = {version = "0.29", features = ["process"]} vsock = "0.5" x11-clipboard = "0.9"