mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-19 13:25:44 +00:00
*: Update to libp2p v0.32.2 (#7708)
Version v0.32.2 pins async-tls to the semver compliant v0.11.0 instead of the yanked async-tls v0.10.2.
This commit is contained in:
Generated
+6
-6
@@ -306,9 +306,9 @@ checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "async-tls"
|
name = "async-tls"
|
||||||
version = "0.10.2"
|
version = "0.11.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "dd0d8b6fc362bebff7502479fb5e9aed00c8cc3abc5af755536e73a128f0cb88"
|
checksum = "2f23d769dbf1838d5df5156e7b1ad404f4c463d1ac2c6aeb6cd943630f8a8400"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-core",
|
"futures-core",
|
||||||
"futures-io",
|
"futures-io",
|
||||||
@@ -2818,9 +2818,9 @@ checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libp2p"
|
name = "libp2p"
|
||||||
version = "0.32.0"
|
version = "0.32.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "fac71e0cd4ba56b06464c3669bdfe893dd6c14f05f7ed1ba0965b1bc5933ee71"
|
checksum = "022cdac4ab124be12de581e591796d4dfb7d1f1eef94669d2c1eaa0e98dd2f0e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atomic",
|
"atomic",
|
||||||
"bytes 0.5.6",
|
"bytes 0.5.6",
|
||||||
@@ -3194,9 +3194,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libp2p-websocket"
|
name = "libp2p-websocket"
|
||||||
version = "0.26.1"
|
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 = "046031ad8ade16f2f0547350e4b2cea36c78cb10426e9c0d9eab35fa9943b969"
|
checksum = "522a877ce42ededf1f5dd011dbc40ea116f1776818f09dacb3d7a206f3ad6305"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-tls",
|
"async-tls",
|
||||||
"either",
|
"either",
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
libp2p = { version = "0.32.0", default-features = false }
|
libp2p = { version = "0.32.2", default-features = false }
|
||||||
jsonrpc-core = "15.0.0"
|
jsonrpc-core = "15.0.0"
|
||||||
serde = "1.0.106"
|
serde = "1.0.106"
|
||||||
serde_json = "1.0.48"
|
serde_json = "1.0.48"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ derive_more = "0.99.2"
|
|||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
futures = "0.3.4"
|
futures = "0.3.4"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
libp2p = { version = "0.32.0", default-features = false, features = ["kad"] }
|
libp2p = { version = "0.32.2", default-features = false, features = ["kad"] }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
||||||
prost = "0.6.1"
|
prost = "0.6.1"
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ regex = "1.4.2"
|
|||||||
tokio = { version = "0.2.21", features = [ "signal", "rt-core", "rt-threaded", "blocking" ] }
|
tokio = { version = "0.2.21", features = [ "signal", "rt-core", "rt-threaded", "blocking" ] }
|
||||||
futures = "0.3.4"
|
futures = "0.3.4"
|
||||||
fdlimit = "0.2.1"
|
fdlimit = "0.2.1"
|
||||||
libp2p = "0.32.0"
|
libp2p = "0.32.2"
|
||||||
parity-scale-codec = "1.3.0"
|
parity-scale-codec = "1.3.0"
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
rand = "0.7.3"
|
rand = "0.7.3"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.4"
|
futures = "0.3.4"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
libp2p = { version = "0.32.0", default-features = false }
|
libp2p = { version = "0.32.2", default-features = false }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
lru = "0.6.1"
|
lru = "0.6.1"
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.8.0", path = "../network" }
|
||||||
|
|||||||
@@ -64,13 +64,13 @@ wasm-timer = "0.2"
|
|||||||
zeroize = "1.0.0"
|
zeroize = "1.0.0"
|
||||||
|
|
||||||
[dependencies.libp2p]
|
[dependencies.libp2p]
|
||||||
version = "0.32.0"
|
version = "0.32.2"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["identify", "kad", "mdns", "mplex", "noise", "ping", "request-response", "tcp-async-std", "websocket", "yamux"]
|
features = ["identify", "kad", "mdns", "mplex", "noise", "ping", "request-response", "tcp-async-std", "websocket", "yamux"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_matches = "1.3"
|
assert_matches = "1.3"
|
||||||
libp2p = { version = "0.32.0", default-features = false }
|
libp2p = { version = "0.32.2", default-features = false }
|
||||||
quickcheck = "0.9.0"
|
quickcheck = "0.9.0"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ parking_lot = "0.10.0"
|
|||||||
futures = "0.3.4"
|
futures = "0.3.4"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
libp2p = { version = "0.32.0", default-features = false }
|
libp2p = { version = "0.32.2", default-features = false }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
||||||
sc-consensus = { version = "0.8.0", path = "../../../client/consensus/common" }
|
sc-consensus = { version = "0.8.0", path = "../../../client/consensus/common" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "2.0.0", path = "../../api" }
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.4"
|
futures = "0.3.4"
|
||||||
libp2p = { version = "0.32.0", default-features = false }
|
libp2p = { version = "0.32.2", default-features = false }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils"}
|
sp-utils = { version = "2.0.0", path = "../../primitives/utils"}
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ parking_lot = "0.10.0"
|
|||||||
futures = "0.3.4"
|
futures = "0.3.4"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
wasm-timer = "0.2.5"
|
wasm-timer = "0.2.5"
|
||||||
libp2p = { version = "0.32.0", default-features = false, features = ["dns", "tcp-async-std", "wasm-ext", "websocket"] }
|
libp2p = { version = "0.32.2", default-features = false, features = ["dns", "tcp-async-std", "wasm-ext", "websocket"] }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
pin-project = "0.4.6"
|
pin-project = "0.4.6"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
thiserror = "1.0.21"
|
thiserror = "1.0.21"
|
||||||
libp2p = { version = "0.32.0", default-features = false }
|
libp2p = { version = "0.32.2", default-features = false }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
sp-core = { path= "../../core", version = "2.0.0"}
|
sp-core = { path= "../../core", version = "2.0.0"}
|
||||||
sp-inherents = { version = "2.0.0", path = "../../inherents" }
|
sp-inherents = { version = "2.0.0", path = "../../inherents" }
|
||||||
|
|||||||
Reference in New Issue
Block a user