Skip to content

Commit

Permalink
chore: Update rust-toolchain to 1.66 for testing (privacy-scaling-exp…
Browse files Browse the repository at this point in the history
…lorations#208)

* chore: Update rust-toolchain to 1.66 for testing

Note that tests will not compile due to the silent MSRV bump in
`blake2b_simd`.

Hence, we need to use `1.66` as toolchain.

Resolves: privacy-scaling-explorations#207

* change: UIpdate MSRVs in Cargo.toml
  • Loading branch information
CPerezz authored and Velaciela committed Oct 13, 2023
1 parent 657f98b commit bf08bb4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions halo2_gadgets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
"Kris Nuttycombe <kris@electriccoin.co>",
]
edition = "2021"
rust-version = "1.56.1"
rust-version = "1.66.0"
description = "Reusable gadgets and chip implementations for Halo 2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zcash/halo2"
Expand All @@ -32,7 +32,7 @@ halo2curves = { version = "0.1.0" }
proptest = { version = "1.0.0", optional = true }
rand = "0.8"
subtle = "2.3"
uint = "0.9.2" # MSRV 1.56.1
uint = "0.9.2"

# Developer tooling dependencies
plotters = { version = "0.3.0", default-features = false, optional = true }
Expand Down
4 changes: 2 additions & 2 deletions halo2_proofs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
"Jack Grigg <jack@electriccoin.co>",
]
edition = "2021"
rust-version = "1.56.1"
rust-version = "1.66.0"
description = """
Fast PLONK-based zero-knowledge proving system with no trusted setup
"""
Expand Down Expand Up @@ -50,7 +50,7 @@ group = "0.13"
halo2curves = { version = "0.1.0" }
rand_core = { version = "0.6", default-features = false }
tracing = "0.1"
blake2b_simd = "1"
blake2b_simd = "1" # MSRV 1.66.0
sha3 = "0.9.1"
subtle = "2.3"
cfg-if = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.65.0
1.66.0

0 comments on commit bf08bb4

Please sign in to comment.