From 46f17bd624359ba23214847ee2e0b08099dcff7c Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 9 Sep 2020 00:32:16 +0100 Subject: [PATCH] Bump protobuf dependencies MSRV is now 1.44.1. --- .github/workflows/ci.yml | 6 +++--- rust-toolchain | 2 +- zcash_client_backend/Cargo.toml | 4 ++-- zcash_client_sqlite/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6126769d1..609cfaf8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.44.0 + toolchain: 1.44.1 override: true # cargo fmt does not build the code, and running it in a fresh clone of @@ -48,7 +48,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.44.0 + toolchain: 1.44.1 override: true - name: Fetch path to Zcash parameters @@ -98,7 +98,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.44.0 + toolchain: 1.44.1 override: true - name: Add target run: rustup target add ${{ matrix.target }} diff --git a/rust-toolchain b/rust-toolchain index 372cf402c..d724e4390 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -1.44.0 +1.44.1 diff --git a/zcash_client_backend/Cargo.toml b/zcash_client_backend/Cargo.toml index b1e3f5f83..041762a24 100644 --- a/zcash_client_backend/Cargo.toml +++ b/zcash_client_backend/Cargo.toml @@ -19,12 +19,12 @@ ff = "0.8" group = "0.8" hex = "0.4" jubjub = "0.5" -protobuf = "=2.14.0" # 2.15 has MSRV of 1.44.1 +protobuf = "2.15" subtle = "2" zcash_primitives = { version = "0.3", path = "../zcash_primitives" } [build-dependencies] -protobuf-codegen-pure = "2.14" +protobuf-codegen-pure = "2.15" [dev-dependencies] rand_core = "0.5" diff --git a/zcash_client_sqlite/Cargo.toml b/zcash_client_sqlite/Cargo.toml index cec607363..3677b5c83 100644 --- a/zcash_client_sqlite/Cargo.toml +++ b/zcash_client_sqlite/Cargo.toml @@ -17,7 +17,7 @@ bs58 = { version = "0.3", features = ["check"] } ff = "0.8" group = "0.8" jubjub = "0.5" -protobuf = "2" +protobuf = "2.15" rand_core = "0.5.1" rusqlite = { version = "0.23", features = ["bundled"] } time = "0.1"