Skip to content

Commit d749024

Browse files
authored
Bump to libp2p v0.19.1 (paritytech#6125)
1 parent e6d5d49 commit d749024

File tree

11 files changed

+33
-33
lines changed

11 files changed

+33
-33
lines changed

Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node/browser-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88

99
[dependencies]
1010
futures-timer = "3.0.2"
11-
libp2p = { version = "0.19.0", default-features = false }
11+
libp2p = { version = "0.19.1", default-features = false }
1212
jsonrpc-core = "14.0.5"
1313
serde = "1.0.106"
1414
serde_json = "1.0.48"

bin/utils/subkey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ derive_more = { version = "0.99.2" }
3333
sc-rpc = { version = "2.0.0-dev", path = "../../../client/rpc" }
3434
jsonrpc-core-client = { version = "14.0.3", features = ["http"] }
3535
hyper = "0.12.35"
36-
libp2p = "0.19.0"
36+
libp2p = "0.19.1"
3737
serde_json = "1.0"
3838

3939
[features]

client/authority-discovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", default-features = false, version = "1
2121
derive_more = "0.99.2"
2222
futures = "0.3.4"
2323
futures-timer = "3.0.1"
24-
libp2p = { version = "0.19.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
24+
libp2p = { version = "0.19.1", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
2525
log = "0.4.8"
2626
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0-dev"}
2727
prost = "0.6.1"

client/network-gossip/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1616
[dependencies]
1717
futures = "0.3.4"
1818
futures-timer = "3.0.1"
19-
libp2p = { version = "0.19.0", default-features = false, features = ["websocket"] }
19+
libp2p = { version = "0.19.1", default-features = false, features = ["websocket"] }
2020
log = "0.4.8"
2121
lru = "0.4.3"
2222
sc-network = { version = "0.8.0-dev", path = "../network" }

client/network/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ wasm-timer = "0.2"
6363
zeroize = "1.0.0"
6464

6565
[dependencies.libp2p]
66-
version = "0.19.0"
66+
version = "0.19.1"
6767
default-features = false
6868
features = ["websocket", "kad", "mdns", "ping", "identify", "mplex", "yamux", "noise", "tcp-async-std"]
6969

7070
[dev-dependencies]
7171
async-std = "1.5"
7272
assert_matches = "1.3"
7373
env_logger = "0.7.0"
74-
libp2p = { version = "0.19.0", default-features = false, features = ["secio"] }
74+
libp2p = { version = "0.19.1", default-features = false, features = ["secio"] }
7575
quickcheck = "0.9.0"
7676
rand = "0.7.2"
7777
sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }

client/network/test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ parking_lot = "0.10.0"
1919
futures = "0.3.4"
2020
futures-timer = "3.0.1"
2121
rand = "0.7.2"
22-
libp2p = { version = "0.19.0", default-features = false, features = ["libp2p-websocket"] }
22+
libp2p = { version = "0.19.1", default-features = false, features = ["libp2p-websocket"] }
2323
sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
2424
sc-consensus = { version = "0.8.0-dev", path = "../../../client/consensus/common" }
2525
sc-client-api = { version = "2.0.0-dev", path = "../../api" }

client/peerset/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1515

1616
[dependencies]
1717
futures = "0.3.4"
18-
libp2p = { version = "0.19.0", default-features = false }
18+
libp2p = { version = "0.19.1", default-features = false }
1919
sp-utils = { version = "2.0.0-dev", path = "../../primitives/utils"}
2020
log = "0.4.8"
2121
serde_json = "1.0.41"

client/telemetry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ parking_lot = "0.10.0"
1919
futures = "0.3.4"
2020
futures-timer = "3.0.1"
2121
wasm-timer = "0.2.0"
22-
libp2p = { version = "0.19.0", default-features = false, features = ["websocket", "wasm-ext", "tcp-async-std", "dns"] }
22+
libp2p = { version = "0.19.1", default-features = false, features = ["websocket", "wasm-ext", "tcp-async-std", "dns"] }
2323
log = "0.4.8"
2424
pin-project = "0.4.6"
2525
rand = "0.7.2"

primitives/consensus/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1515

1616
[dependencies]
1717
derive_more = "0.99.2"
18-
libp2p = { version = "0.19.0", default-features = false }
18+
libp2p = { version = "0.19.1", default-features = false }
1919
log = "0.4.8"
2020
sp-core = { path= "../../core", version = "2.0.0-dev"}
2121
sp-inherents = { version = "2.0.0-dev", path = "../../inherents" }

0 commit comments

Comments
 (0)