-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (59 loc) · 1.6 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (59 loc) · 1.6 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
[workspace]
resolver = "2"
exclude = ["grovedb/grovedbg"]
members = [
"costs",
"grovedb",
"merk",
"storage",
"visualize",
"path",
"grovedbg-types",
"grovedb-version",
"grovedb-epoch-based-storage-flags",
"grovedb-element",
"grovedb-commitment-tree",
"grovedb-merkle-mountain-range",
"grovedb-bulk-append-tree",
"grovedb-dense-fixed-sized-merkle-tree",
"grovedb-query",
]
[workspace.dependencies]
rand = "0.10"
thiserror = "2.0"
hex = "0.4.3"
integer-encoding = "4.1.0"
blake3 = "1.8"
bincode = "=2.0.1"
bincode_derive = "=2.0.1"
indexmap = "2.13.0"
serde = { version = "1.0", features = ["derive"] }
byteorder = "1.5.0"
intmap = "3.1.3"
tempfile = "3.26.0"
assert_matches = "1.5.0"
criterion = "0.8.2"
tokio = "1.50.0"
itertools = "0.14.0"
ed = "0.2.2"
num_cpus = "1.17.0"
axum = { version = "0.8", features = ["macros"] }
tokio-util = "0.7.17"
tower-http = { version = "0.6.8", features = ["fs"] }
# Sinsemilla hashing (used by grovedb-commitment-tree) is Pallas-curve
# arithmetic, which is orders of magnitude slower without optimization.
# Optimizing just these dependencies keeps debug/test builds of workspace
# crates fully debuggable while making commitment-tree tests run in seconds
# instead of minutes. Applies to dev/test profiles only; release is unaffected.
[profile.dev.package.pasta_curves]
opt-level = 3
[profile.dev.package.halo2_gadgets]
opt-level = 3
[profile.dev.package.halo2_proofs]
opt-level = 3
[profile.dev.package.sinsemilla]
opt-level = 3
[profile.dev.package.orchard]
opt-level = 3
[profile.dev.package.incrementalmerkletree]
opt-level = 3