Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
John Guibas authored and John Guibas committed Mar 6, 2024
1 parent 59d378e commit 20f437a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
"tests/sha-compress/Cargo.toml",
"tests/sha-extend/Cargo.toml",
"tests/sha2/Cargo.toml",
// Eval.
"eval/Cargo.toml"
],
"rust-analyzer.showUnlinkedFileNotification": false
}
3 changes: 2 additions & 1 deletion cli/src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ use std::{

fn get_docker_image() -> String {
// Get the docker image name from the environment variable
std::env::var("SP1_DOCKER_IMAGE").unwrap_or_else(|_| "ghcr.io/succinctlabs/sp1:latest".to_string())
std::env::var("SP1_DOCKER_IMAGE")
.unwrap_or_else(|_| "ghcr.io/succinctlabs/sp1:latest".to_string())
}

#[derive(Parser)]
Expand Down
Binary file modified examples/fibonacci-io/program/elf/riscv32im-succinct-zkvm-elf
Binary file not shown.

0 comments on commit 20f437a

Please sign in to comment.