Skip to content

Commit

Permalink
fix the dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
weikengchen committed Aug 11, 2021
1 parent 4a6d3fd commit 6b97903
Show file tree
Hide file tree
Showing 23 changed files with 142 additions and 152 deletions.
117 changes: 43 additions & 74 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion phase1-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"
[dependencies]
phase1 = { path = "../phase1", default-features = false }
setup-utils = { path = "../setup-utils", default-features = false }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }

gumdrop = { version = "0.8.0" }
hex = { version = "0.4.2" }
Expand Down
2 changes: 1 addition & 1 deletion phase1-coordinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ path = "src/main.rs"
[dependencies]
phase1 = { path = "../phase1" }
setup-utils = { path = "../setup-utils", default-features = false }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }

anyhow = { version = "1.0.37" }
chrono = { version = "0.4", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions phase1-coordinator/src/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3254,7 +3254,7 @@ mod tests {
serde_json::to_string_pretty(&coordinator_clone.read().unwrap().current_round().unwrap())
.unwrap()
);
panic!(format!("{:?}", try_lock.unwrap()))
panic!("{:?}", try_lock.unwrap())
}
}
{
Expand Down Expand Up @@ -3288,7 +3288,7 @@ mod tests {
serde_json::to_string_pretty(&coordinator_clone.read().unwrap().current_round().unwrap())
.unwrap()
);
panic!(format!("{:?}", verify.unwrap()))
panic!("{:?}", verify.unwrap())
}
}
});
Expand Down
4 changes: 2 additions & 2 deletions phase1-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
phase1 = { path = "../phase1", default-features = false }
setup-utils = { path = "../setup-utils", default-features = false }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-fields = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-fields = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }

getrandom = { version = "0.2" }
rand = { version = "0.8" }
Expand Down
18 changes: 9 additions & 9 deletions phase1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ required-features = ["benchmark"]

[dependencies]
setup-utils = { path = "../setup-utils", default-features = false }
snarkvm-algorithms = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f", default-features = false }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-fields = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-utilities = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-algorithms = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c", default-features = false }
snarkvm-curves = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-fields = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-utilities = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }

cfg-if = { version = "0.1.10" }
criterion = { version = "0.3", optional = true }
Expand All @@ -31,13 +31,13 @@ serde = { version = "1.0", features = ["derive"] }

[dev-dependencies]
phase1 = { path = "./", features = ["testing"] }
snarkvm-marlin = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-polycommit = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-posw = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-r1cs = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "707b06f" }
snarkvm-marlin = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-polycommit = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-ledger = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }
snarkvm-r1cs = { git = "https://github.com/AleoHQ/snarkVM.git", rev = "fc997c" }

anyhow = { version = "1.0.37" }
blake2 = { version = "0.8", default-features = false }
blake2 = { version = "0.9", default-features = false }
num-traits = { version = "0.2.12" }
rand_chacha = { version = "0.3" }
rusty-hook = { version = "0.11.2" }
Expand Down
Loading

0 comments on commit 6b97903

Please sign in to comment.