Skip to content

Commit 5be84f9

Browse files
build(deps): Update quickcheck requirement from 0.9.0 to 1.0.3
Updates the requirements on [quickcheck](https://github.com/BurntSushi/quickcheck) to permit the latest version. - [Release notes](https://github.com/BurntSushi/quickcheck/releases) - [Commits](BurntSushi/quickcheck@0.9.2...1.0.3) --- updated-dependencies: - dependency-name: quickcheck dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a1f791f commit 5be84f9

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ libp2p-mplex = { path = "../muxers/mplex" }
4949
libp2p-noise = { path = "../transports/noise" }
5050
libp2p-tcp = { path = "../transports/tcp" }
5151
multihash = { version = "0.14", default-features = false, features = ["arb"] }
52-
quickcheck = "0.9.0"
52+
quickcheck = "1.0.3"
5353
rand07 = { package = "rand", version = "0.7" }
5454

5555
[build-dependencies]

misc/multistream-select/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ env_logger = "0.9"
2424
libp2p-core = { path = "../../core", default-features = false }
2525
libp2p-mplex = { path = "../../muxers/mplex" }
2626
libp2p-plaintext = { path = "../../transports/plaintext" }
27-
quickcheck = "0.9.0"
27+
quickcheck = "1.0.3"
2828
rand = "0.7.2"
2929
rw-stream-sink = "0.2.1"

muxers/mplex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env_logger = "0.9"
2929
futures = "0.3"
3030
libp2p-tcp = { path = "../../transports/tcp" }
3131
libp2p-plaintext = { path = "../../transports/plaintext" }
32-
quickcheck = "0.9"
32+
quickcheck = "1.0"
3333
rand = "0.7"
3434

3535
[[bench]]

protocols/gossipsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ libp2p-plaintext = { path = "../../transports/plaintext" }
4040
libp2p-yamux = { path = "../../muxers/yamux" }
4141
libp2p-mplex = { path = "../../muxers/mplex" }
4242
libp2p-noise = { path = "../../transports/noise" }
43-
quickcheck = "0.9.2"
43+
quickcheck = "1.0.3"
4444
hex = "0.4.2"
4545
derive_builder = "0.10.0"
4646

protocols/kad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ env_logger = "0.9.0"
3535
futures-timer = "3.0"
3636
libp2p-noise = { path = "../../transports/noise" }
3737
libp2p-yamux = { path = "../../muxers/yamux" }
38-
quickcheck = "0.9.0"
38+
quickcheck = "1.0.3"
3939

4040
[build-dependencies]
4141
prost-build = "0.9"

protocols/ping/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ libp2p-tcp = { path = "../../transports/tcp" }
2626
libp2p-noise = { path = "../../transports/noise" }
2727
libp2p-yamux = { path = "../../muxers/yamux" }
2828
libp2p-mplex = { path = "../../muxers/mplex" }
29-
quickcheck = "0.9.0"
29+
quickcheck = "1.0.3"

swarm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ instant = "0.1.11"
2323

2424
[dev-dependencies]
2525
libp2p = { path = "../", default-features = false, features = ["identify", "ping", "plaintext", "yamux"] }
26-
quickcheck = "0.9.0"
26+
quickcheck = "1.0.3"
2727
rand = "0.7.2"

transports/deflate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ flate2 = "1.0"
1818
[dev-dependencies]
1919
async-std = "1.6.2"
2020
libp2p-tcp = { path = "../../transports/tcp" }
21-
quickcheck = "0.9"
21+
quickcheck = "1.0"
2222
rand = "0.7"

transports/noise/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ snow = { version = "0.8.0", features = ["default-resolver"], default-features =
3232
async-io = "1.2.0"
3333
env_logger = "0.9.0"
3434
libp2p-tcp = { path = "../../transports/tcp" }
35-
quickcheck = "0.9.0"
35+
quickcheck = "1.0.3"
3636
sodiumoxide = "0.2.5"
3737

3838
[build-dependencies]

transports/plaintext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void = "1.0.2"
2222

2323
[dev-dependencies]
2424
env_logger = "0.9.0"
25-
quickcheck = "0.9.0"
25+
quickcheck = "1.0.3"
2626
rand = "0.7"
2727

2828
[build-dependencies]

transports/pnet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ rand = "0.7"
1919
pin-project = "1.0.2"
2020

2121
[dev-dependencies]
22-
quickcheck = "0.9.0"
22+
quickcheck = "1.0.3"

0 commit comments

Comments
 (0)