-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (84 loc) · 3.05 KB
/
Copy pathCargo.toml
File metadata and controls
104 lines (84 loc) · 3.05 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[package]
name = "jolt-atlas"
version = "0.1.0"
authors = [
"Wyatt Benno <wyatt@icme.io>",
"Khalil Gibran Hassam <khalilhassam4@gmail.com>",
"Alberto Centelles Hidalgo <zk_albi@proton.me>",
"Antoine Douchet <antoinedcht@hotmail.com>",
]
edition = "2021"
description = "Fast and fully open source from a16z crypto modified by NovaNet for zkML precompiles."
documentation = "https://github.com/ICME-Lab/jolt-atlas/README.md"
repository = "https://github.com/ICME-Lab/jolt-atlas"
license-file = "LICENSE"
keywords = ["SNARK", "cryptography", "proofs", "zkML"]
[workspace]
members = ["jolt-atlas-core", "atlas-onnx-tracer", "common", "joltworks"]
[workspace.dependencies]
# Internal
atlas-onnx-tracer = { path = "./atlas-onnx-tracer" }
common = { path = "./common" }
joltworks = { path = "./joltworks" }
# Cryptography and Math
ark-bn254 = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout", default-features = false }
ark-serialize = { version = "0.5.0", default-features = false, features = [
"derive",
] }
ark-std = { version = "0.5.0", default-features = false }
allocative = { git = "https://github.com/facebookexperimental/allocative", rev = "85b773d85d526d068ce94724ff7a7b81203fc95e" }
# Numeric
num = "0.4.3"
num-derive = "0.4.2"
num-traits = "0.2.19"
# Serialization
bincode = { version = "2.0.1", features = ["serde"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
# Parallel Processing
rayon = "1.10"
# Randomness
rand = { version = "0.8.5", default-features = false }
rand_core = { version = "0.6.4", default-features = false }
# Tracing and Profiling
tracing = { version = "0.1.37", default-features = false }
tracing-chrome = "0.7"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
# Core Utilities
derive_more = { version = "2.0.1", default-features = false, features = [
"from",
] }
itertools = "0.10.0"
regex = "1.10.6"
strum = { version = "0.26.3", default-features = false }
strum_macros = "0.26.4"
thiserror = { version = "1.0.58", default-features = false }
# Testing
serial_test = "3.2.0"
[lib]
path = "./src/lib.rs"
[dev-dependencies]
bincode = { version = "2.0.1", features = ["serde"] }
[dependencies]
jolt-atlas-core = { path = "./jolt-atlas-core" }
[profile.test]
opt-level = 3
lto = "off"
[profile.release]
debug = 1
overflow-checks = true
lto = "fat"
[profile.build-fast]
inherits = "release"
incremental = true
lto = "off"
overflow-checks = true
[profile.guest]
inherits = "release"
debug = false
[patch.crates-io]
ark-ff = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout" }
ark-ec = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout" }
ark-serialize = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout" }
ark-bn254 = { git = "https://github.com/a16z/arkworks-algebra", branch = "dev/twist-shout" }
allocative = { git = "https://github.com/facebookexperimental/allocative", rev = "85b773d85d526d068ce94724ff7a7b81203fc95e" }