chore(deps): Bump nix from 0.26.2 to 0.27.0 (#8582)

* chore(deps): Bump nix from 0.26.2 to 0.27.0

Bumps [nix](https://github.com/nix-rust/nix) from 0.26.2 to 0.27.0.
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nix-rust/nix/compare/v0.26.2...v0.27.0)

---
updated-dependencies:
- dependency-name: nix
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: Run cargo hakari tasks

* chore: fix `nix` features

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: CircleCI[bot] <circleci@influxdata.com>
Co-authored-by: Marco Neumann <marco@crepererum.net>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
dependabot[bot] 2023-08-28 13:48:56 +00:00 committed by GitHub
parent 1df5948c97
commit 2572bea8d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 24 deletions

38
Cargo.lock generated
View File

@ -1287,7 +1287,7 @@ dependencies = [
"autocfg", "autocfg",
"cfg-if", "cfg-if",
"crossbeam-utils", "crossbeam-utils",
"memoffset 0.9.0", "memoffset",
"scopeguard", "scopeguard",
] ]
@ -3451,15 +3451,6 @@ dependencies = [
"libc", "libc",
] ]
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
[[package]] [[package]]
name = "memoffset" name = "memoffset"
version = "0.9.0" version = "0.9.0"
@ -3618,16 +3609,24 @@ dependencies = [
[[package]] [[package]]
name = "nix" name = "nix"
version = "0.26.2" version = "0.26.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" checksum = "abbbc55ad7b13aac85f9401c796dcda1b864e07fcad40ad47792eaa8932ea502"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 2.4.0",
"cfg-if",
"libc",
]
[[package]]
name = "nix"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "896d4664b919f48478f3ce02c502adfe9bffeb61563d2a12ddf1aad8f6cd926f"
dependencies = [
"bitflags 2.4.0",
"cfg-if", "cfg-if",
"libc", "libc",
"memoffset 0.7.1",
"pin-utils",
"static_assertions",
] ]
[[package]] [[package]]
@ -4268,7 +4267,7 @@ dependencies = [
"inferno", "inferno",
"libc", "libc",
"log", "log",
"nix", "nix 0.26.3",
"once_cell", "once_cell",
"parking_lot", "parking_lot",
"prost", "prost",
@ -4930,7 +4929,7 @@ dependencies = [
"libc", "libc",
"log", "log",
"memchr", "memchr",
"nix", "nix 0.26.3",
"scopeguard", "scopeguard",
"unicode-segmentation", "unicode-segmentation",
"unicode-width", "unicode-width",
@ -5863,7 +5862,7 @@ dependencies = [
"iox_catalog", "iox_catalog",
"mutable_batch_lp", "mutable_batch_lp",
"mutable_batch_pb", "mutable_batch_pb",
"nix", "nix 0.27.0",
"observability_deps", "observability_deps",
"once_cell", "once_cell",
"parking_lot", "parking_lot",
@ -6955,7 +6954,6 @@ dependencies = [
"log", "log",
"md-5", "md-5",
"memchr", "memchr",
"nix",
"nom", "nom",
"num-traits", "num-traits",
"object_store", "object_store",

View File

@ -22,7 +22,7 @@ ingester_query_grpc = { path = "../ingester_query_grpc" }
iox_catalog = { path = "../iox_catalog" } iox_catalog = { path = "../iox_catalog" }
mutable_batch_lp = { path = "../mutable_batch_lp" } mutable_batch_lp = { path = "../mutable_batch_lp" }
mutable_batch_pb = { path = "../mutable_batch_pb" } mutable_batch_pb = { path = "../mutable_batch_pb" }
nix = "0.26" nix = { version = "0.27", default-features = false, features = ["signal"] }
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
once_cell = { version = "1.18", features = ["parking_lot"] } once_cell = { version = "1.18", features = ["parking_lot"] }
parking_lot = "0.12" parking_lot = "0.12"

View File

@ -164,7 +164,6 @@ uuid = { version = "1", features = ["v4"] }
[target.x86_64-unknown-linux-gnu.dependencies] [target.x86_64-unknown-linux-gnu.dependencies]
bitflags = { version = "2", default-features = false, features = ["std"] } bitflags = { version = "2", default-features = false, features = ["std"] }
nix = { version = "0.26" }
once_cell = { version = "1", default-features = false, features = ["unstable"] } once_cell = { version = "1", default-features = false, features = ["unstable"] }
rustls = { version = "0.21" } rustls = { version = "0.21" }
@ -175,7 +174,6 @@ rustls = { version = "0.21" }
[target.x86_64-apple-darwin.dependencies] [target.x86_64-apple-darwin.dependencies]
bitflags = { version = "2", default-features = false, features = ["std"] } bitflags = { version = "2", default-features = false, features = ["std"] }
nix = { version = "0.26" }
once_cell = { version = "1", default-features = false, features = ["unstable"] } once_cell = { version = "1", default-features = false, features = ["unstable"] }
rustls = { version = "0.21" } rustls = { version = "0.21" }
@ -186,7 +184,6 @@ rustls = { version = "0.21" }
[target.aarch64-apple-darwin.dependencies] [target.aarch64-apple-darwin.dependencies]
bitflags = { version = "2", default-features = false, features = ["std"] } bitflags = { version = "2", default-features = false, features = ["std"] }
nix = { version = "0.26" }
once_cell = { version = "1", default-features = false, features = ["unstable"] } once_cell = { version = "1", default-features = false, features = ["unstable"] }
rustls = { version = "0.21" } rustls = { version = "0.21" }