From 2b58101c47b8784ea31ea5b2c40503433fb1e854 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 19:19:44 +0000 Subject: [PATCH] build(deps): bump nix from 0.26.4 to 0.28.0 Bumps [nix](https://github.com/nix-rust/nix) from 0.26.4 to 0.28.0. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.26.4...v0.28.0) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 +++++++++++++++++++++++----------- pretty_trace/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e08a27bfe..8f6f3dd77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -188,6 +188,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" + [[package]] name = "block-buffer" version = "0.10.2" @@ -289,6 +295,12 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "cfg_aliases" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" + [[package]] name = "cpp_demangle" version = "0.4.3" @@ -783,7 +795,7 @@ name = "hdf5" version = "0.8.1" source = "git+https://github.com/10XGenomics/hdf5-rust.git?branch=conda_nov2021#2d4a40b7ef75de530bc53fd2eb0fe75047e083ad" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "hdf5-derive", "hdf5-sys", @@ -1146,24 +1158,24 @@ dependencies = [ [[package]] name = "nix" -version = "0.24.2" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" +checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "libc", - "memoffset", ] [[package]] name = "nix" -version = "0.26.4" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" +checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" dependencies = [ - "bitflags", + "bitflags 2.4.2", "cfg-if", + "cfg_aliases", "libc", ] @@ -1376,7 +1388,7 @@ dependencies = [ "io_utils", "lazy_static", "libc", - "nix 0.24.2", + "nix 0.28.0", "pprof", "rayon", "stats_utils", @@ -1631,7 +1643,7 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -1690,7 +1702,7 @@ version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", diff --git a/pretty_trace/Cargo.toml b/pretty_trace/Cargo.toml index afb284b6f..eb1a426f6 100644 --- a/pretty_trace/Cargo.toml +++ b/pretty_trace/Cargo.toml @@ -15,7 +15,7 @@ backtrace = "0.3" io_utils = { path = "../io_utils", optional = true } lazy_static = "1" libc = "0.2" -nix = { version = ">=0.19, <0.28", features = ["signal"] } +nix = { version = ">=0.19, <0.29", features = ["signal"] } stats_utils = { path = "../stats_utils", optional = true } string_utils = { path = "../string_utils" } tables = { path = "../tables", optional = true }