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: diff --git a/Cargo.toml b/Cargo.toml index 74fe6257..8ad0af6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ 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-types = { version = "0.9.0", optional = true } +prost = { version = "0.11.0", optional = true } +prost-types = { version = "0.11.1", optional = true } void = { version = "1.0", optional = true } [dev-dependencies] @@ -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"