-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (71 loc) · 1.96 KB
/
Copy pathCargo.toml
File metadata and controls
75 lines (71 loc) · 1.96 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
[workspace]
members = [
"benchmarks/multisig-e2e",
"benchmarks/prod-server",
"crates/shared",
"crates/client",
"crates/server",
"crates/server/bench/loadgen",
"crates/miden-rpc-client",
"crates/miden-keystore",
"crates/contracts",
"crates/miden-multisig-client",
"examples/rust",
"examples/demo",
]
default-members = [
"crates/shared",
"crates/client",
"crates/server",
"crates/miden-rpc-client",
"crates/miden-keystore",
"crates/contracts",
"crates/miden-multisig-client",
]
resolver = "2"
[workspace.package]
version = "0.15.1"
edition = "2024"
rust-version = "1.93"
authors = ["OpenZeppelin"]
license = "AGPL-3.0"
repository = "https://github.com/OpenZeppelin/guardian"
homepage = "https://github.com/OpenZeppelin/guardian"
# Reproducible build configuration (workspace-wide)
[profile.release]
strip = true # Strip debug symbols for smaller, more reproducible binaries
lto = true # Link-time optimization for better optimization and determinism
codegen-units = 1 # Single codegen unit for maximum reproducibility
incremental = false # Disable incremental compilation for reproducibility
[workspace.dependencies]
# Core
serde = "1.0.228"
serde_json = "1.0.145"
tokio = "1.47.1"
tonic = "0.14.2"
prost = "0.14.1"
tonic-build = "0.14.1"
tonic-prost-build = "0.14.2"
tonic-prost = "0.14.2"
thiserror = "2.0.9"
hex = "0.4.3"
base64 = "0.22"
rand_chacha = "0.9.0"
tempfile = "3.15.0"
rand = "0.9"
anyhow = { version = "1.0", features = ["backtrace", "std"] }
assert_matches = "1.5"
rstest = "0.26"
futures = "0.3"
chrono = "0.4"
# OpenAPI spec generation (issue #241). `axum_extras` enables richer
# parameter inference for axum `Query`/`Path` extractors.
utoipa = { version = "5", features = ["axum_extras"] }
# Miden
miden-protocol = "0.15.3"
miden-standards = "0.15.3"
miden-tx = "0.15.3"
miden-node-proto ="0.15.0"
miden-testing = "0.15.3"
miden-client = "0.15.0"
miden-client-sqlite-store = "0.15.0"