mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-21 13:15:41 +00:00
nix upgrade to 0.26.1 (#6622)
This commit is contained in:
committed by
GitHub
parent
0119a6dae1
commit
8102eebe9b
Generated
+28
-6
@@ -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 = [
|
|||||||
"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 = [
|
|||||||
"cc",
|
"cc",
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"libc",
|
"libc",
|
||||||
"memoffset",
|
"memoffset 0.6.4",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -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"
|
|||||||
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 = [
|
|||||||
"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 = [
|
|||||||
"log",
|
"log",
|
||||||
"mach",
|
"mach",
|
||||||
"memfd",
|
"memfd",
|
||||||
"memoffset",
|
"memoffset 0.6.4",
|
||||||
"paste",
|
"paste",
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
"rustix",
|
"rustix",
|
||||||
|
|||||||
+1
-1
@@ -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"
|
|||||||
|
|
||||||
[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"
|
||||||
|
|||||||
Reference in New Issue
Block a user