From 43409f1f9fa8bbf5318dc6bd3a7434312bdab3b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 11:34:44 +0000 Subject: [PATCH 1/4] build(deps): update prost-build requirement from 0.9.0 to 0.11.1 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/compare/v0.9.0...prost-build-0.11.1) --- updated-dependencies: - dependency-name: prost-build dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eef8be6e..bde92a59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ tide = "0.16" actix-web = "4" [build-dependencies] -prost-build = { version = "0.9.0", optional = true } +prost-build = { version = "0.11.1", optional = true } [[bench]] name = "family" From a7cfa76379fc2984303743ae8df56de4748a34b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 11:34:47 +0000 Subject: [PATCH 2/4] build(deps): update prost-types requirement from 0.9.0 to 0.11.1 Updates the requirements on [prost-types](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/compare/v0.9.0...prost-types-0.11.1) --- updated-dependencies: - dependency-name: prost-types dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eef8be6e..1812cb4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ itoa = "1.0" parking_lot = "0.12" prometheus-client-derive-encode = { version = "0.3.0", path = "derive-encode" } prost = { version = "0.9.0", optional = true } -prost-types = { version = "0.9.0", optional = true } +prost-types = { version = "0.11.1", optional = true } void = { version = "1.0", optional = true } [dev-dependencies] From 83740dc390153de19ab5ccc748890ce8d32aad57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 11:35:08 +0000 Subject: [PATCH 3/4] build(deps): update prost requirement from 0.9.0 to 0.11.0 Updates the requirements on [prost](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/compare/v0.9.0...v0.11.0) --- updated-dependencies: - dependency-name: prost dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eef8be6e..ce2371af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ dtoa = "1.0" itoa = "1.0" parking_lot = "0.12" prometheus-client-derive-encode = { version = "0.3.0", path = "derive-encode" } -prost = { version = "0.9.0", optional = true } +prost = { version = "0.11.0", optional = true } prost-types = { version = "0.9.0", optional = true } void = { version = "1.0", optional = true } From 5102c48a76f645dcde3fe7781833defb6df5e31f Mon Sep 17 00:00:00 2001 From: Max Inden Date: Thu, 15 Sep 2022 22:42:40 +0100 Subject: [PATCH 4/4] .github/: Install protoc Signed-off-by: Max Inden --- .github/workflows/rust.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d9fdb9b1..88a4cf96 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -7,6 +7,8 @@ jobs: name: Check runs-on: ubuntu-latest steps: + - name: Install Protoc + uses: arduino/setup-protoc@v1 - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: @@ -45,6 +47,8 @@ jobs: name: Test Suite runs-on: ubuntu-latest steps: + - name: Install Protoc + uses: arduino/setup-protoc@v1 - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: @@ -79,6 +83,8 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: + - name: Install Protoc + uses: arduino/setup-protoc@v1 - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: @@ -95,6 +101,8 @@ jobs: name: Clippy runs-on: ubuntu-latest steps: + - name: Install Protoc + uses: arduino/setup-protoc@v1 - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: @@ -124,6 +132,8 @@ jobs: name: Check rustdoc intra-doc links runs-on: ubuntu-latest steps: + - name: Install Protoc + uses: arduino/setup-protoc@v1 - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: @@ -149,6 +159,8 @@ jobs: - powerpc64-unknown-linux-gnu - wasm32-unknown-unknown steps: + - name: Install Protoc + uses: arduino/setup-protoc@v1 - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: