This repository was archived by the owner on Jun 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (53 loc) · 2.04 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (53 loc) · 2.04 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
[package]
name = "multilinear-toolkit"
version.workspace = true
edition.workspace = true
[workspace.package]
version = "0.3.0"
edition = "2024"
[workspace]
resolver = "2"
members = ["backend", "constraints_folder", "sumcheck", "air", "fiat-shamir", "whir"]
[workspace.dependencies]
p3-util = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig", features = [
"parallel",
] }
p3-field = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-matrix = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-koala-bear = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-symmetric = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-poseidon2 = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-merkle-tree = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-dft = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-commit = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig" }
p3-maybe-rayon = { git = "https://github.com/TomWambsgans/Plonky3.git", branch = "lean-multisig", features = [
"parallel"] }
rayon = "*"
rand = "0.9.2"
itertools = "*"
tracing = "*"
serde = { version = "1.0.227", features = ["derive"] }
tracing-forest = "0.2.0"
tracing-subscriber = { version = "0.3.17", default-features = false, features = [
"alloc",
"env-filter",
] }
# Local dependencies
backend = { path = "backend" }
constraints-folder = { path = "constraints_folder" }
sumcheck = { path = "sumcheck" }
air = { path = "air" }
fiat-shamir = { path = "fiat-shamir" }
whir = { path = "whir" }
[dependencies]
backend.workspace = true
constraints-folder.workspace = true
sumcheck.workspace = true
p3-field.workspace = true
p3-util.workspace = true
air.workspace = true
rayon.workspace = true
whir.workspace = true
tracing.workspace = true
fiat-shamir.workspace = true
p3-maybe-rayon.workspace = true