Skip to content

Commit 682c2c7

Browse files
build(deps): Update rand requirement from 0.7 to 0.8
Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/commits/0.8.4) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e1646a5 commit 682c2c7

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ multistream-select = { version = "0.10", path = "../misc/multistream-select" }
2626
parking_lot = "0.11.0"
2727
pin-project = "1.0.0"
2828
prost = "0.8"
29-
rand = "0.7"
29+
rand = "0.8"
3030
rw-stream-sink = "0.2.0"
3131
sha2 = "0.9.1"
3232
smallvec = "1.6.1"

misc/multistream-select/Cargo.toml

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

muxers/mplex/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ libp2p-core = { version = "0.29.0", path = "../../core" }
1717
log = "0.4"
1818
nohash-hasher = "0.2"
1919
parking_lot = "0.11"
20-
rand = "0.7"
20+
rand = "0.8"
2121
smallvec = "1.6.1"
2222
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
2323

@@ -29,7 +29,7 @@ futures = "0.3"
2929
libp2p-tcp = { path = "../../transports/tcp" }
3030
libp2p-plaintext = { path = "../../transports/plaintext" }
3131
quickcheck = "0.9"
32-
rand = "0.7"
32+
rand = "0.8"
3333

3434
[[bench]]
3535
name = "split_send_size"

protocols/floodsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ libp2p-core = { version = "0.29.0", path = "../../core" }
1717
libp2p-swarm = { version = "0.30.0", path = "../../swarm" }
1818
log = "0.4"
1919
prost = "0.8"
20-
rand = "0.7"
20+
rand = "0.8"
2121
smallvec = "1.6.1"
2222

2323
[build-dependencies]

protocols/gossipsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bytes = "1.0"
1616
byteorder = "1.3.4"
1717
fnv = "1.0.7"
1818
futures = "0.3.5"
19-
rand = "0.7.3"
19+
rand = "0.8.4"
2020
asynchronous-codec = "0.6"
2121
wasm-timer = "0.2.4"
2222
unsigned-varint = { version = "0.7.0", features = ["asynchronous_codec"] }

protocols/kad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ log = "0.4"
2020
libp2p-core = { version = "0.29.0", path = "../../core" }
2121
libp2p-swarm = { version = "0.30.0", path = "../../swarm" }
2222
prost = "0.8"
23-
rand = "0.7.2"
23+
rand = "0.8.4"
2424
sha2 = "0.9.1"
2525
smallvec = "1.6.1"
2626
wasm-timer = "0.2"

protocols/ping/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ futures = "0.3.1"
1414
libp2p-core = { version = "0.29.0", path = "../../core" }
1515
libp2p-swarm = { version = "0.30.0", path = "../../swarm" }
1616
log = "0.4.1"
17-
rand = "0.7.2"
17+
rand = "0.8.4"
1818
void = "1.0"
1919
wasm-timer = "0.2"
2020

protocols/relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libp2p-swarm = { version = "0.30", path = "../../swarm" }
1919
log = "0.4"
2020
pin-project = "1"
2121
prost = "0.8"
22-
rand = "0.7"
22+
rand = "0.8"
2323
smallvec = "1.6.1"
2424
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
2525
void = "1"

protocols/request-response/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ libp2p-swarm = { version = "0.30.0", path = "../../swarm" }
1818
log = "0.4.11"
1919
lru = "0.6"
2020
minicbor = { version = "0.8", features = ["std", "derive"] }
21-
rand = "0.7"
21+
rand = "0.8"
2222
smallvec = "1.6.1"
2323
unsigned-varint = { version = "0.7", features = ["std", "futures"] }
2424
wasm-timer = "0.2"
@@ -28,4 +28,4 @@ async-std = "1.6.2"
2828
libp2p-noise = { path = "../../transports/noise" }
2929
libp2p-tcp = { path = "../../transports/tcp" }
3030
libp2p-yamux = { path = "../../muxers/yamux" }
31-
rand = "0.7"
31+
rand = "0.8"

swarm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ either = "1.6.0"
1414
futures = "0.3.1"
1515
libp2p-core = { version = "0.29.0", path = "../core" }
1616
log = "0.4"
17-
rand = "0.7"
17+
rand = "0.8"
1818
smallvec = "1.6.1"
1919
wasm-timer = "0.2"
2020
void = "1"
@@ -23,4 +23,4 @@ void = "1"
2323
libp2p-mplex = { path = "../muxers/mplex" }
2424
libp2p-noise = { path = "../transports/noise" }
2525
quickcheck = "0.9.0"
26-
rand = "0.7.2"
26+
rand = "0.8.4"

transports/deflate/Cargo.toml

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

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
[dev-dependencies]
2323
env_logger = "0.9.0"
2424
quickcheck = "0.9.0"
25-
rand = "0.7"
25+
rand = "0.8"
2626

2727
[build-dependencies]
2828
prost-build = "0.8"

transports/pnet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ futures = "0.3.1"
1414
log = "0.4.8"
1515
salsa20 = "0.8"
1616
sha3 = "0.9"
17-
rand = "0.7"
17+
rand = "0.8"
1818
pin-project = "1.0.2"
1919

2020
[dev-dependencies]

0 commit comments

Comments
 (0)