Skip to content
Snippets Groups Projects
Commit bc6ebabf authored by Pierre Krieger's avatar Pierre Krieger Committed by GitHub
Browse files

Force libp2p 0.18.1 (#5689)

parent f544907b
Branches
No related merge requests found
...@@ -2576,9 +2576,9 @@ checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a" ...@@ -2576,9 +2576,9 @@ checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
[[package]] [[package]]
name = "libp2p" name = "libp2p"
version = "0.18.0" version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa5aedb713f76577818529be8283e35ec5e8b3ecdccfe0231ba4d860687438ab" checksum = "32ea742c86405b659c358223a8f0f9f5a9eb27bb6083894c6340959b05269662"
dependencies = [ dependencies = [
"bytes 0.5.4", "bytes 0.5.4",
"futures 0.3.4", "futures 0.3.4",
...@@ -2901,9 +2901,9 @@ dependencies = [ ...@@ -2901,9 +2901,9 @@ dependencies = [
[[package]] [[package]]
name = "libp2p-swarm" name = "libp2p-swarm"
version = "0.18.0" version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622605817885e67b5572189c2507e514b786beb69ed85a120dbb245a7f15383d" checksum = "44ab289ae44cc691da0a6fe96aefa43f26c86c6c7813998e203f6d80f1860f18"
dependencies = [ dependencies = [
"futures 0.3.4", "futures 0.3.4",
"libp2p-core", "libp2p-core",
......
...@@ -32,7 +32,7 @@ derive_more = { version = "0.99.2" } ...@@ -32,7 +32,7 @@ derive_more = { version = "0.99.2" }
sc-rpc = { version = "2.0.0-dev", path = "../../../client/rpc" } sc-rpc = { version = "2.0.0-dev", path = "../../../client/rpc" }
jsonrpc-core-client = { version = "14.0.3", features = ["http"] } jsonrpc-core-client = { version = "14.0.3", features = ["http"] }
hyper = "0.12.35" hyper = "0.12.35"
libp2p = "0.18.0" libp2p = "0.18.1"
serde_json = "1.0" serde_json = "1.0"
[features] [features]
......
...@@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", default-features = false, version = "1 ...@@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", default-features = false, version = "1
derive_more = "0.99.2" derive_more = "0.99.2"
futures = "0.3.4" futures = "0.3.4"
futures-timer = "3.0.1" futures-timer = "3.0.1"
libp2p = { version = "0.18.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] } libp2p = { version = "0.18.1", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
log = "0.4.8" log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-dev"} prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-dev"}
prost = "0.6.1" prost = "0.6.1"
......
...@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"] ...@@ -16,7 +16,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.18.0", default-features = false, features = ["websocket"] } libp2p = { version = "0.18.1", default-features = false, features = ["websocket"] }
log = "0.4.8" log = "0.4.8"
lru = "0.4.3" lru = "0.4.3"
sc-network = { version = "0.8.0-dev", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
......
...@@ -63,7 +63,7 @@ void = "1.0.2" ...@@ -63,7 +63,7 @@ void = "1.0.2"
zeroize = "1.0.0" zeroize = "1.0.0"
[dependencies.libp2p] [dependencies.libp2p]
version = "0.18.0" version = "0.18.1"
default-features = false default-features = false
features = ["websocket", "kad", "mdns", "ping", "identify", "mplex", "yamux", "noise"] features = ["websocket", "kad", "mdns", "ping", "identify", "mplex", "yamux", "noise"]
...@@ -71,7 +71,7 @@ features = ["websocket", "kad", "mdns", "ping", "identify", "mplex", "yamux", "n ...@@ -71,7 +71,7 @@ features = ["websocket", "kad", "mdns", "ping", "identify", "mplex", "yamux", "n
async-std = "1.5" async-std = "1.5"
assert_matches = "1.3" assert_matches = "1.3"
env_logger = "0.7.0" env_logger = "0.7.0"
libp2p = { version = "0.18.0", default-features = false, features = ["secio"] } libp2p = { version = "0.18.1", default-features = false, features = ["secio"] }
quickcheck = "0.9.0" quickcheck = "0.9.0"
rand = "0.7.2" rand = "0.7.2"
sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }
......
...@@ -19,7 +19,7 @@ parking_lot = "0.10.0" ...@@ -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.18.0", default-features = false, features = ["libp2p-websocket"] } libp2p = { version = "0.18.1", default-features = false, features = ["libp2p-websocket"] }
sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sc-client = { version = "0.8.0-dev", path = "../../" } sc-client = { version = "0.8.0-dev", path = "../../" }
sc-client-api = { version = "2.0.0-dev", path = "../../api" } sc-client-api = { version = "2.0.0-dev", path = "../../api" }
......
...@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] ...@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies] [dependencies]
futures = "0.3.4" futures = "0.3.4"
libp2p = { version = "0.18.0", default-features = false } libp2p = { version = "0.18.1", default-features = false }
sp-utils = { version = "2.0.0-dev", path = "../../primitives/utils"} sp-utils = { version = "2.0.0-dev", 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" ...@@ -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.0" wasm-timer = "0.2.0"
libp2p = { version = "0.18.0", default-features = false, features = ["websocket", "wasm-ext", "tcp", "dns"] } libp2p = { version = "0.18.1", default-features = false, features = ["websocket", "wasm-ext", "tcp", "dns"] }
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"
......
...@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] ...@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies] [dependencies]
derive_more = "0.99.2" derive_more = "0.99.2"
libp2p = { version = "0.18.0", default-features = false } libp2p = { version = "0.18.1", default-features = false }
log = "0.4.8" log = "0.4.8"
sp-core = { path= "../../core", version = "2.0.0-dev"} sp-core = { path= "../../core", version = "2.0.0-dev"}
sp-inherents = { version = "2.0.0-dev", path = "../../inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../inherents" }
......
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