Skip to content
Snippets Groups Projects
Commit 8102eebe authored by Michal Kucharczyk's avatar Michal Kucharczyk Committed by GitHub
Browse files

nix upgrade to 0.26.1 (#6622)

parent 0119a6da
Branches
No related merge requests found
...@@ -1322,7 +1322,7 @@ dependencies = [ ...@@ -1322,7 +1322,7 @@ dependencies = [
"cfg-if", "cfg-if",
"crossbeam-utils", "crossbeam-utils",
"lazy_static", "lazy_static",
"memoffset", "memoffset 0.6.4",
"scopeguard", "scopeguard",
] ]
...@@ -4421,6 +4421,15 @@ dependencies = [ ...@@ -4421,6 +4421,15 @@ dependencies = [
"autocfg", "autocfg",
] ]
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
[[package]] [[package]]
name = "memory-db" name = "memory-db"
version = "0.31.0" version = "0.31.0"
...@@ -4783,7 +4792,7 @@ dependencies = [ ...@@ -4783,7 +4792,7 @@ dependencies = [
"cc", "cc",
"cfg-if", "cfg-if",
"libc", "libc",
"memoffset", "memoffset 0.6.4",
] ]
[[package]] [[package]]
...@@ -4795,7 +4804,21 @@ dependencies = [ ...@@ -4795,7 +4804,21 @@ dependencies = [
"bitflags", "bitflags",
"cfg-if", "cfg-if",
"libc", "libc",
"memoffset", "memoffset 0.6.4",
]
[[package]]
name = "nix"
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
dependencies = [
"bitflags",
"cfg-if",
"libc",
"memoffset 0.7.1",
"pin-utils",
"static_assertions",
] ]
[[package]] [[package]]
...@@ -6345,7 +6368,7 @@ version = "0.9.37" ...@@ -6345,7 +6368,7 @@ version = "0.9.37"
dependencies = [ dependencies = [
"assert_cmd", "assert_cmd",
"color-eyre", "color-eyre",
"nix 0.24.1", "nix 0.26.2",
"polkadot-cli", "polkadot-cli",
"polkadot-core-primitives", "polkadot-core-primitives",
"substrate-rpc-client", "substrate-rpc-client",
...@@ -7038,7 +7061,6 @@ dependencies = [ ...@@ -7038,7 +7061,6 @@ dependencies = [
"futures-timer", "futures-timer",
"hyper", "hyper",
"log", "log",
"nix 0.24.1",
"parity-scale-codec", "parity-scale-codec",
"polkadot-primitives", "polkadot-primitives",
"polkadot-test-service", "polkadot-test-service",
...@@ -12880,7 +12902,7 @@ dependencies = [ ...@@ -12880,7 +12902,7 @@ dependencies = [
"log", "log",
"mach", "mach",
"memfd", "memfd",
"memoffset", "memoffset 0.6.4",
"paste", "paste",
"rand 0.8.5", "rand 0.8.5",
"rustix", "rustix",
......
...@@ -25,7 +25,7 @@ tikv-jemallocator = "0.5.0" ...@@ -25,7 +25,7 @@ tikv-jemallocator = "0.5.0"
[dev-dependencies] [dev-dependencies]
assert_cmd = "2.0.4" assert_cmd = "2.0.4"
nix = "0.24.1" nix = { version = "0.26.1", features = ["signal"] }
tempfile = "3.2.0" tempfile = "3.2.0"
tokio = "1.24.1" tokio = "1.24.1"
substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
......
...@@ -25,7 +25,6 @@ log = "0.4.17" ...@@ -25,7 +25,6 @@ log = "0.4.17"
[dev-dependencies] [dev-dependencies]
assert_cmd = "2.0.4" assert_cmd = "2.0.4"
nix = "0.24.1"
tempfile = "3.2.0" tempfile = "3.2.0"
hyper = { version = "0.14.20", default-features = false, features = ["http1", "tcp"] } hyper = { version = "0.14.20", default-features = false, features = ["http1", "tcp"] }
tokio = "1.24.1" tokio = "1.24.1"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment