Skip to content

Commit

Permalink
chore: setup dependencies on dev forks
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Jun 26, 2023
1 parent 268583b commit 73c9d83
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 50 deletions.
69 changes: 31 additions & 38 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ anyhow = "1.0.69"
base64 = "0.13.1"
hex = { version = "0.4.3", features = ["serde"] }
thiserror = "1.0.38"
bellperson = "0.25"
blstrs = "0.7.0"
bellperson = { git = "https://github.com/lurk-lab/bellperson", branch = "dev" }
blstrs = { git = "https://github.com/lurk-lab/blstrs", branch = "dev" }
ff = "0.13"
generic-array = "0.14.6"
itertools = "0.9"
log = "0.4.17"
lurk-macros = { path = "lurk-macros" }
neptune = { version = "10.0.0", features = ["arity2","arity4","arity8","arity16","pasta","bls"] }
nova = { package = "nova-snark", version = "0.21", default-features = false }
neptune = { git = "https://github.com/lurk-lab/neptune", branch = "dev", features = ["arity2","arity4","arity8","arity16","pasta","bls"] }
nova = { git = "https://github.com/lurk-lab/nova", branch = "dev", package = "nova-snark", default-features = false }
once_cell = "1.17.1"
pairing_lib = { version = "0.23", package = "pairing" }
peekmore = "1.1.0"
Expand All @@ -37,7 +37,7 @@ serde_json = { version = "1.0" }
serde_repr = "0.1.10"
indexmap = { version = "1.9.2", features = ["rayon"] }
ahash = "0.7.6"
pasta_curves = { version = "0.5.1", features = ["repr-c", "serde"] }
pasta_curves = { git = "https://github.com/lurk-lab/pasta_curves", branch = "dev", features = ["repr-c", "serde"] }
string-interner = "0.14.0"
dashmap = "5.4.0"
libipld = { package = "lurk-ipld", version = "0.3.0", default-features = false, features = ["dag-cbor", "dag-json", "serde-codec"] }
Expand All @@ -54,7 +54,7 @@ bincode = "1.3.3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
memmap = { version = "0.5.10", package = "memmap2" }
pasta-msm = "0.1.4"
pasta-msm = { git = "https://github.com/lurk-lab/pasta-msm", branch = "dev" }
proptest = "1.1.0"
proptest-derive = "0.3.0"
rand = "0.8.5"
Expand Down
4 changes: 2 additions & 2 deletions clutch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ repository = "https://github.com/lurk-lab/lurk-rs"

[dependencies]
anyhow = "1.0.69"
blstrs = "0.7.0"
blstrs = { git = "https://github.com/lurk-lab/blstrs", branch = "dev" }
clap = "4.1.8"
lurk = { path = "../" }
pasta_curves = { version = "0.5.1", features = ["repr-c", "serde"] }
pasta_curves = { git = "https://github.com/lurk-lab/pasta_curves", branch = "dev", features = ["repr-c", "serde"] }
pretty_env_logger = "0.4"
serde = { version = "1.0", features = ["derive"] }

Expand Down
6 changes: 3 additions & 3 deletions fcomm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ path = "src/bin/fcomm.rs"

[dependencies]
base64 = "0.13.1"
bellperson = "0.25"
blstrs = "0.7.0"
bellperson = { git = "https://github.com/lurk-lab/bellperson", branch = "dev" }
blstrs = { git = "https://github.com/lurk-lab/blstrs", branch = "dev" }
clap = { version = "3.2", features = ["derive"] }
clap-verbosity-flag = "1.0"
ff = "0.13"
Expand All @@ -29,7 +29,7 @@ rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
thiserror = "1.0.38"
pasta_curves = { version = "0.5.1", features = ["repr-c", "serde"] }
pasta_curves = { git = "https://github.com/lurk-lab/pasta_curves", branch = "dev", features = ["repr-c", "serde"] }

[dev-dependencies]
assert_cmd = "2.0.8"
Expand Down
2 changes: 1 addition & 1 deletion lurk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ proc-macro2 = "1.0.24"

[dev-dependencies]
lurk_crate = { path = "../", package = "lurk" }
pasta_curves = { version = "0.5.1", features = ["repr-c", "serde"] }
pasta_curves = { git = "https://github.com/lurk-lab/pasta_curves", branch = "dev", features = ["repr-c", "serde"] }

0 comments on commit 73c9d83

Please sign in to comment.