mirror of
https://github.com/eth-act/ere.git
synced 2026-04-03 03:00:17 -04:00
26 lines
655 B
TOML
26 lines
655 B
TOML
[package]
|
|
name = "basic"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = ["guest"]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
codegen-units = 1
|
|
lto = "fat"
|
|
|
|
[dependencies]
|
|
jolt-sdk = { git = "https://github.com/a16z/jolt", features = ["host"] }
|
|
guest = { path = "./guest" }
|
|
ark-serialize = "0.5.0"
|
|
|
|
[features]
|
|
icicle = ["jolt-sdk/icicle"]
|
|
|
|
[patch.crates-io]
|
|
ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "v0.5.0-optimize-mul-u64" }
|
|
ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "v0.5.0-optimize-mul-u64" }
|
|
ark-serialize = { git = "https://github.com/a16z/arkworks-algebra", branch = "v0.5.0-optimize-mul-u64" }
|