-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (92 loc) · 3.22 KB
/
Copy pathCargo.toml
File metadata and controls
97 lines (92 loc) · 3.22 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
[workspace]
members = [
"ceno_cli",
"ceno_emul",
"ceno_host",
"ceno_rt",
"ceno_zkvm",
"examples-builder",
"examples",
"mpcs",
"multilinear_extensions",
"sumcheck_macro",
"poseidon",
"subprotocols",
"sumcheck",
"transcript",
"whir",
"witness",
"p3",
]
resolver = "2"
[workspace.package]
categories = ["cryptography", "zk", "blockchain", "ceno"]
edition = "2021"
keywords = ["cryptography", "zk", "blockchain", "ceno"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/scroll-tech/ceno"
version = "0.1.0"
[workspace.dependencies]
anyhow = { version = "1.0", default-features = false }
bincode = "1"
cfg-if = "1.0"
clap = { version = "4.5", features = ["derive"] }
criterion = { version = "0.5", features = ["html_reports"] }
crossbeam-channel = "0.5"
either = { version = "1.15.*", features = ["serde"] }
itertools = "0.13"
num-bigint = { version = "0.4.6" }
num-derive = "0.4"
num-traits = "0.2"
p3 = { path = "p3" }
p3-baby-bear = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-challenger = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-commit = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-dft = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-field = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-fri = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-goldilocks = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-matrix = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-maybe-rayon = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-mds = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-merkle-tree = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-poseidon = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-poseidon2 = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-symmetric = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
p3-util = { git = "https://github.com/scroll-tech/plonky3", rev = "20c3cb9" }
paste = "1"
poseidon = { path = "./poseidon" }
pprof2 = { version = "0.13", features = ["flamegraph"] }
prettytable-rs = "^0.10"
proptest = "1"
rand = "0.8"
rand_chacha = { version = "0.3", features = ["serde1"] }
rand_core = "0.6"
rand_xorshift = "0.3"
rayon = "1.10"
rkyv = { version = "0.8", features = ["pointer_width_32"] }
secp = "0.4.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.26"
strum_macros = "0.26"
substrate-bn = { version = "0.6.0" }
sumcheck = { path = "sumcheck" }
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
tracing = { version = "0.1", features = [
"attributes",
] }
tracing-forest = { version = "0.1.6" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uint = "0.8"
[profile.dev]
lto = "thin"
# We are running our tests with optimizations turned on to make them faster.
# Please turn optimizations off, when you want accurate stack traces for debugging.
opt-level = 2
[profile.dev.package."*"]
# Set the default for dependencies in Development mode.
opt-level = 3
[profile.release]
lto = "thin"