mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-09 23:48:10 -05:00
Fix: examples path deps (#363)
Change rust example deps to use paths Co-authored-by: Leon Hibnik <107353745+LeonHibnik@users.noreply.github.com>
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "msm"
|
name = "msm"
|
||||||
version = "1.0.0"
|
version = "1.2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
icicle-cuda-runtime = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0" }
|
icicle-cuda-runtime = { path = "../../../wrappers/rust/icicle-cuda-runtime" }
|
||||||
icicle-core = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0" }
|
icicle-core = { path = "../../../wrappers/rust/icicle-core" }
|
||||||
icicle-bn254 = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0", features = [ "g2" ] }
|
icicle-bn254 = { path = "../../../wrappers/rust/icicle-curves/icicle-bn254", features = ["g2"] }
|
||||||
icicle-bls12-377 = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0" }
|
icicle-bls12-377 = { path = "../../../wrappers/rust/icicle-curves/icicle-bls12-377" }
|
||||||
ark-bn254 = { version = "0.4.0", optional = true}
|
ark-bn254 = { version = "0.4.0", optional = true}
|
||||||
ark-bls12-377 = { version = "0.4.0", optional = true}
|
ark-bls12-377 = { version = "0.4.0", optional = true}
|
||||||
ark-ec = { version = "0.4.0", optional = true}
|
ark-ec = { version = "0.4.0", optional = true}
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ntt"
|
name = "ntt"
|
||||||
version = "1.0.0"
|
version = "1.2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
icicle-cuda-runtime = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0" }
|
icicle-cuda-runtime = { path = "../../../wrappers/rust/icicle-cuda-runtime" }
|
||||||
icicle-core = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0", features = ["arkworks"] }
|
icicle-core = { path = "../../../wrappers/rust/icicle-core", features = ["arkworks"] }
|
||||||
icicle-bn254 = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0", features = ["arkworks"] }
|
icicle-bn254 = { path = "../../../wrappers/rust/icicle-curves/icicle-bn254", features = ["arkworks"] }
|
||||||
icicle-bls12-377 = { git = "https://github.com/ingonyama-zk/icicle.git", tag = "v1.1.0", features = ["arkworks"] }
|
icicle-bls12-377 = { path = "../../../wrappers/rust/icicle-curves/icicle-bls12-377", features = ["arkworks"] }
|
||||||
|
|
||||||
ark-ff = { version = "0.4.0" }
|
ark-ff = { version = "0.4.0" }
|
||||||
ark-poly = "0.4.0"
|
ark-poly = "0.4.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user