From bbf518c0b5fc70a3da05e9c7598ed39273947376 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 19:08:26 +0000 Subject: [PATCH] Bump nix from 0.20.0 to 0.20.2 Bumps [nix](https://github.com/nix-rust/nix) from 0.20.0 to 0.20.2. - [Release notes](https://github.com/nix-rust/nix/releases) - [Changelog](https://github.com/nix-rust/nix/blob/v0.20.2/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.20.0...v0.20.2) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 ++++++++++++++---- Cargo.toml | 2 +- minion-tests/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5cc92e18..bfa31537 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,9 +339,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.91" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7" +checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" [[package]] name = "lock_api" @@ -370,6 +370,15 @@ dependencies = [ "regex-automata", ] +[[package]] +name = "memoffset" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" +dependencies = [ + "autocfg", +] + [[package]] name = "minion" version = "0.1.0" @@ -471,14 +480,15 @@ dependencies = [ [[package]] name = "nix" -version = "0.20.0" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a" +checksum = "f5e06129fb611568ef4e868c14b326274959aa70ff7776e9d55323531c374945" dependencies = [ "bitflags", "cc", "cfg-if", "libc", + "memoffset", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index bc37d5cb..0bd82033 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ errno = "0.2.7" rand = "0.8.3" serde = { version = "1.0.125", features = ["derive"] } serde_json = "1.0.64" -nix = "0.20.0" +nix = "0.20.2" backtrace = "0.3.56" thiserror = "1.0.24" anyhow = "1.0.39" diff --git a/minion-tests/Cargo.toml b/minion-tests/Cargo.toml index 68e1ce05..62affe01 100644 --- a/minion-tests/Cargo.toml +++ b/minion-tests/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" once_cell = "1.7.2" minion = {path = "..", features = ["internal_dev"]} clap = "3.0.0-beta.2" -nix = "0.20.0" +nix = "0.20.2" tempfile = "3.2.0" tokio = { version = "1.4.0", features = ["macros", "rt"] } tracing-subscriber = "0.2.17"