mirror of
https://github.com/logos-storage/zk-benchmarks.git
synced 2026-01-09 01:03:10 +00:00
29 lines
956 B
TOML
29 lines
956 B
TOML
[package]
|
|
name = "bench"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = ["guest"]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
codegen-units = 1
|
|
lto = "fat"
|
|
|
|
[dependencies]
|
|
jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt",rev = "4805d038f7b6e7ca5e7ef64aefa62213aecac01a", features = ["host"] }
|
|
guest = { path = "./guest" }
|
|
rand = "0.8.3"
|
|
hex = "0.4.3"
|
|
ark-serialize = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }
|
|
ark-bn254 = { version = "0.4.0" }
|
|
ark-std = { version = "0.4.0" }
|
|
ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }
|
|
|
|
|
|
[patch.crates-io]
|
|
ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }
|
|
ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }
|
|
ark-serialize = { git = "https://github.com/a16z/arkworks-algebra", branch = "optimize/field-from-u64" }
|