diff --git a/zkvm/Cargo.toml b/zkvm/Cargo.toml index 577891d..50cb256 100644 --- a/zkvm/Cargo.toml +++ b/zkvm/Cargo.toml @@ -10,7 +10,7 @@ env_logger.workspace = true log.workspace = true serde.workspace = true -risc0-zkvm = { git="https://github.com/risc0/risc0.git", branch="release-1.1" } +risc0-zkvm = { git = "https://github.com/risc0/risc0.git", branch = "release-1.1" } test-methods = { path = "test_methods" } [features] diff --git a/zkvm/test_methods/Cargo.toml b/zkvm/test_methods/Cargo.toml index e5fa74d..5ac19b1 100644 --- a/zkvm/test_methods/Cargo.toml +++ b/zkvm/test_methods/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [build-dependencies] -risc0-build = { git="https://github.com/risc0/risc0.git", branch="release-1.1" } +risc0-build = { git = "https://github.com/risc0/risc0.git", branch = "release-1.1" } [package.metadata.risc0] methods = ["guest"] diff --git a/zkvm/test_methods/guest/Cargo.toml b/zkvm/test_methods/guest/Cargo.toml index 824170a..efc0456 100644 --- a/zkvm/test_methods/guest/Cargo.toml +++ b/zkvm/test_methods/guest/Cargo.toml @@ -6,4 +6,6 @@ edition = "2021" [workspace] [dependencies] -risc0-zkvm = { git="https://github.com/risc0/risc0.git", default-features = false, features = ["std"] } +risc0-zkvm = { git = "https://github.com/risc0/risc0.git", default-features = false, features = [ + "std", +] }