forked from a16z/jolt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 806 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 806 Bytes
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
[package]
name = "zklean-extractor"
version = "0.1.0"
authors = [
"Ben Hamlin <hamlinb@galois.com>",
]
description = "Extracts an IR suitable for the ZKLean library for Jolt instructions"
license = "MIT"
homepage = "https://github.com/a16z/jolt/README.md"
repository = "https://github.com/a16z/jolt"
edition = "2021"
[build-dependencies]
build-fs-tree = "0.7.1"
[dependencies]
ark-std.workspace = true
ark-bn254.workspace = true
ark-serialize.workspace = true
ark-ff.workspace = true
clap.workspace = true
rand_core = { version = "0.6.4", default-features = false }
regex = "1.11.1"
strum.workspace = true
build-fs-tree = "0.7.1"
allocative.workspace = true
jolt-core = { path = "../jolt-core" }
common = { path = "../common" }
tracer = { path = "../tracer" }
[dev-dependencies]
proptest = "1.6.0"