-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (28 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "near-lc-jolt"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["guest", "types"]
[profile.release]
debug = 1
codegen-units = 1
lto = "fat"
[dependencies]
jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt", branch = "ncitron/configure-jolt-device", features = [
"std",
] }
serde_json = "*"
serde = { version = "*", features = ["derive"] }
guest = { path = "./guest" }
types = { path = "./types", features = ["std"] }
near-primitives = { version = "*" }
near-crypto = { version = "*" }
[workspace.dependencies]
jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt", branch = "ncitron/configure-jolt-device" }
[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" }
#[jolt::provable(max_input_size = 10000, max_output_size = 10000)]d25519-dalek = { git = "https://github.com/sp1-patches/curve25519-dalek" }
[dev-dependencies]