Skip to content

Commit

Permalink
Merge pull request #2935 from o1-labs/dw/rust-1.77
Browse files Browse the repository at this point in the history
Support Rust 1.77
  • Loading branch information
dannywillems authored Jan 8, 2025
2 parents 6f87ed7 + 611255f commit 39a3b5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
RUST_TOOLCHAIN_COVERAGE_VERSION: "1.74"
strategy:
matrix:
rust_toolchain_version: ["1.71", "1.72", "1.73", "1.74", "1.75", "1.76"]
rust_toolchain_version: ["1.71", "1.72", "1.73", "1.74", "1.75", "1.76", "1.77"]
# FIXME: currently not available for 5.0.0.
# It might be related to boxroot dependency, and we would need to bump
# up the ocaml-rs dependency
Expand Down
1 change: 1 addition & 0 deletions kimchi/src/precomputed_srs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ mod tests {
if std::env::var("SRS_OVERWRITE").is_ok() {
let mut file = std::fs::OpenOptions::new()
.create(true)
.truncate(true)
.write(true)
.open(srs_path)
.expect("failed to open SRS file");
Expand Down
1 change: 1 addition & 0 deletions msm/src/precomputed_srs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ fn create_and_store_srs_with_path(
// Open/create the file
let mut file = std::fs::OpenOptions::new()
.create(true)
.truncate(true)
.write(true)
.open(srs_path.clone())
.expect("failed to open SRS file");
Expand Down

0 comments on commit 39a3b5d

Please sign in to comment.