Skip to content

Commit 99da27b

Browse files
authored
*: Patch prost / prost-build version to v0.8 (#2126)
1 parent 05a4b16 commit 99da27b

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ multihash = { version = "0.13", default-features = false, features = ["std", "mu
2525
multistream-select = { version = "0.10", path = "../misc/multistream-select" }
2626
parking_lot = "0.11.0"
2727
pin-project = "1.0.0"
28-
prost = "0.7"
28+
prost = "0.8"
2929
rand = "0.7"
3030
rw-stream-sink = "0.2.0"
3131
sha2 = "0.9.1"
@@ -50,7 +50,7 @@ quickcheck = "0.9.0"
5050
wasm-timer = "0.2"
5151

5252
[build-dependencies]
53-
prost-build = "0.7"
53+
prost-build = "0.8"
5454

5555
[features]
5656
default = ["secp256k1"]

protocols/floodsub/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ futures = "0.3.1"
1616
libp2p-core = { version = "0.29.0", path = "../../core" }
1717
libp2p-swarm = { version = "0.30.0", path = "../../swarm" }
1818
log = "0.4"
19-
prost = "0.7"
19+
prost = "0.8"
2020
rand = "0.7"
2121
smallvec = "1.6.1"
2222

2323
[build-dependencies]
24-
prost-build = "0.7"
24+
prost-build = "0.8"

protocols/gossipsub/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ log = "0.4.11"
2424
sha2 = "0.9.1"
2525
base64 = "0.13.0"
2626
smallvec = "1.6.1"
27-
prost = "0.7"
27+
prost = "0.8"
2828
hex_fmt = "0.3.0"
2929
regex = "1.4.0"
3030

@@ -40,4 +40,4 @@ hex = "0.4.2"
4040
derive_builder = "0.10.0"
4141

4242
[build-dependencies]
43-
prost-build = "0.7"
43+
prost-build = "0.8"

protocols/identify/Cargo.toml

Lines changed: 2 additions & 2 deletions
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-
prost = "0.7"
17+
prost = "0.8"
1818
smallvec = "1.6.1"
1919
wasm-timer = "0.2"
2020

@@ -26,4 +26,4 @@ libp2p-noise = { path = "../../transports/noise" }
2626
libp2p-tcp = { path = "../../transports/tcp" }
2727

2828
[build-dependencies]
29-
prost-build = "0.7"
29+
prost-build = "0.8"

protocols/kad/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ futures = "0.3.1"
1919
log = "0.4"
2020
libp2p-core = { version = "0.29.0", path = "../../core" }
2121
libp2p-swarm = { version = "0.30.0", path = "../../swarm" }
22-
prost = "0.7"
22+
prost = "0.8"
2323
rand = "0.7.2"
2424
sha2 = "0.9.1"
2525
smallvec = "1.6.1"
@@ -35,4 +35,4 @@ libp2p-yamux = { path = "../../muxers/yamux" }
3535
quickcheck = "0.9.0"
3636

3737
[build-dependencies]
38-
prost-build = "0.7"
38+
prost-build = "0.8"

protocols/relay/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ libp2p-core = { version = "0.29", path = "../../core" }
1818
libp2p-swarm = { version = "0.30", path = "../../swarm" }
1919
log = "0.4"
2020
pin-project = "1"
21-
prost = "0.7"
21+
prost = "0.8"
2222
rand = "0.7"
2323
smallvec = "1.6.1"
2424
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
2525
void = "1"
2626
wasm-timer = "0.2"
2727

2828
[build-dependencies]
29-
prost-build = "0.7"
29+
prost-build = "0.8"
3030

3131
[dev-dependencies]
3232
env_logger = "0.8.3"

transports/noise/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ futures = "0.3.1"
1414
lazy_static = "1.2"
1515
libp2p-core = { version = "0.29.0", path = "../../core" }
1616
log = "0.4"
17-
prost = "0.7"
17+
prost = "0.8"
1818
rand = "0.8.3"
1919
sha2 = "0.9.1"
2020
static_assertions = "1"
@@ -35,4 +35,4 @@ quickcheck = "0.9.0"
3535
sodiumoxide = "0.2.5"
3636

3737
[build-dependencies]
38-
prost-build = "0.7"
38+
prost-build = "0.8"

transports/plaintext/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ futures = "0.3.1"
1515
asynchronous-codec = "0.6"
1616
libp2p-core = { version = "0.29.0", path = "../../core" }
1717
log = "0.4.8"
18-
prost = "0.7"
18+
prost = "0.8"
1919
unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
2020
void = "1.0.2"
2121

@@ -25,4 +25,4 @@ quickcheck = "0.9.0"
2525
rand = "0.7"
2626

2727
[build-dependencies]
28-
prost-build = "0.7"
28+
prost-build = "0.8"

0 commit comments

Comments
 (0)