forked from a16z/jolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
90 lines (84 loc) · 2.39 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "jolt-core"
version = "0.1.0"
authors = [
# author of original Spartan paper and code base
"Srinath Setty <[email protected]>",
# authors who contributed to the Arkworks Spartan fork
"Zhenfei Zhang <[email protected]>",
# authors who contributed to Lasso/Jolt
"Michael Zhu <[email protected]>",
"Sam Ragsdale <[email protected]>",
"Noah Citron <[email protected]>",
"Arasu Arun <[email protected]>",
]
edition = "2021"
description = "The lookup singularity. Based on Spartan; built on Arkworks."
documentation = "https://github.com/a16z/jolt/README.md"
repository = "https://github.com/a16z/jolt"
license-file = "LICENSE"
keywords = ["SNARK", "cryptography", "proofs"]
[dependencies]
ark-bn254 = "0.4.0"
ark-ec = { version = "0.4.2", default-features = false }
ark-ff = { version = "0.4.2", default-features = false }
ark-serialize = { version = "0.4.2", default-features = false, features = [
"derive",
] }
ark-std = { version = "0.4.0", default-features = false }
clap = { version = "4.3.10", features = ["derive"] }
criterion = { version = "0.5.1", features = ["html_reports"] }
digest = "0.8.1"
enum_dispatch = "0.3.12"
fixedbitset = "0.5.0"
itertools = "0.10.0"
lazy_static = "1.4.0"
merlin = "3.0.0"
num-integer = "0.1.45"
postcard = { version = "1.0.8", default-features = false, features = [
"use-std",
] }
rand = "0.7.3"
rand_chacha = { version = "0.3.0", default-features = false }
rand_core = { version = "0.5", default-features = false }
rayon = { version = "^1.8.0", optional = true }
rgb = "0.8.37"
serde = { version = "1.0.*", default-features = false }
sha3 = "0.8.2"
smallvec = "1.13.1"
strum = "0.25.0"
strum_macros = "0.25.2"
textplots = "0.8.4"
thiserror = "1.0.58"
tracing = "0.1.37"
tracing-chrome = "0.7.1"
tracing-flame = "0.2.0"
tracing-subscriber = "0.3.18"
tracing-texray = "0.2.0"
iai-callgrind = "0.10.2"
target-lexicon = "0.12.14"
reqwest = { version = "0.12.3", features = ["json", "blocking"] }
dirs = "5.0.1"
eyre = "0.6.12"
indicatif = "0.17.8"
tokio = "1.37.0"
common = { path = "../common" }
tracer = { path = "../tracer" }
bincode = "1.3.3"
[build-dependencies]
common = { path = "../common" }
[[bench]]
name = "iai"
harness = false
[lib]
name = "jolt_core"
path = "src/lib.rs"
[features]
default = [
"ark-ec/parallel",
"ark-ff/parallel",
"ark-std/parallel",
"ark-ff/asm",
"multicore",
]
multicore = ["rayon"]