Skip to content

Commit 7a11478

Browse files
build(deps): Update prost-build requirement from 0.9 to 0.10 (#2596)
* build(deps): Update prost-build requirement from 0.9 to 0.10 Updates the requirements on [prost-build](https://github.com/tokio-rs/prost) to permit the latest version. - [Release notes](https://github.com/tokio-rs/prost/releases) - [Commits](https://github.com/tokio-rs/prost/commits) --- updated-dependencies: - dependency-name: prost-build dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * .github/workflow: Don't run integration test in container * .github/workflow: Don't run doc step in container * .github/workflows: Remove component docs Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Inden <[email protected]>
1 parent 90140a6 commit 7a11478

File tree

12 files changed

+23
-15
lines changed

12 files changed

+23
-15
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,6 @@ jobs:
8484
check-rustdoc-links:
8585
name: Check rustdoc intra-doc links
8686
runs-on: ubuntu-latest
87-
container:
88-
image: rust
8987
steps:
9088

9189
- name: Cancel Previous Runs
@@ -95,6 +93,12 @@ jobs:
9593

9694
- uses: actions/checkout@v3
9795

96+
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
97+
with:
98+
profile: minimal
99+
toolchain: stable
100+
override: true
101+
98102
- uses: Swatinem/rust-cache@842ef286fff290e445b90b4002cc9807c3669641 # v1.3.0
99103

100104
- name: Check rustdoc links
@@ -128,8 +132,6 @@ jobs:
128132
integration-test:
129133
name: Integration tests
130134
runs-on: ubuntu-latest
131-
container:
132-
image: rust
133135
steps:
134136

135137
- name: Cancel Previous Runs
@@ -139,6 +141,12 @@ jobs:
139141

140142
- uses: actions/checkout@v3
141143

144+
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
145+
with:
146+
profile: minimal
147+
toolchain: stable
148+
override: true
149+
142150
- uses: Swatinem/rust-cache@842ef286fff290e445b90b4002cc9807c3669641 # v1.3.0
143151

144152
- name: Run ipfs-kad example

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ rmp-serde = "1.0"
5656
serde_json = "1.0"
5757

5858
[build-dependencies]
59-
prost-build = "0.9"
59+
prost-build = "0.10"
6060

6161
[features]
6262
default = [ "secp256k1", "ecdsa" ]

protocols/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
1111
categories = ["network-programming", "asynchronous"]
1212

1313
[build-dependencies]
14-
prost-build = "0.9"
14+
prost-build = "0.10"
1515

1616
[dependencies]
1717
async-trait = "0.1"

protocols/dcutr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
2626
void = "1"
2727

2828
[build-dependencies]
29-
prost-build = "0.9"
29+
prost-build = "0.10"
3030

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

protocols/floodsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ rand = "0.7"
2222
smallvec = "1.6.1"
2323

2424
[build-dependencies]
25-
prost-build = "0.9"
25+
prost-build = "0.10"

protocols/gossipsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ hex = "0.4.2"
4545
derive_builder = "0.11.1"
4646

4747
[build-dependencies]
48-
prost-build = "0.9"
48+
prost-build = "0.10"

protocols/identify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ libp2p-noise = { path = "../../transports/noise" }
2828
libp2p-tcp = { path = "../../transports/tcp" }
2929

3030
[build-dependencies]
31-
prost-build = "0.9"
31+
prost-build = "0.10"

protocols/kad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ libp2p-yamux = { path = "../../muxers/yamux" }
4040
quickcheck = "0.9.0"
4141

4242
[build-dependencies]
43-
prost-build = "0.9"
43+
prost-build = "0.10"
4444

4545
[features]
4646
serde = ["_serde", "bytes/serde"]

protocols/relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ unsigned-varint = { version = "0.7", features = ["asynchronous_codec"] }
3030
void = "1"
3131

3232
[build-dependencies]
33-
prost-build = "0.9"
33+
prost-build = "0.10"
3434

3535
[dev-dependencies]
3636
env_logger = "0.9.0"

protocols/rendezvous/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ rand = "0.8"
3434
tokio = { version = "1.15", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
3535

3636
[build-dependencies]
37-
prost-build = "0.9"
37+
prost-build = "0.10"

0 commit comments

Comments
 (0)