-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (26 loc) · 1.17 KB
/
Cargo.toml
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
[workspace]
members = [".", "crates/*"]
resolver = "2"
[workspace.package]
version = "0.2.0"
authors = ["Doug Anderson <[email protected]>"]
description = "Delanocreds, Delegatable Anonymous Credentials in pure Rust"
repository = "https://github.com/DougAnderson444/delanocreds"
[workspace.dependencies]
delanocreds = { version = "^0.2", path = "crates/delanocreds" }
delano-keys = { version = "0.1.1", path = "crates/delano-keys" }
delano-wit-ui = { version = "0.2.0", path = "crates/delano-wit-ui" }
delano-events = { version = "0.2.0", path = "crates/delano-events" }
bls12_381_plus = { version = "0.8.17", features = ["expose-fields", "alloc"] }
secrecy = "0.8"
[profile.release]
codegen-units = 1 # allow for maximum size reduction optimizations
debug = false
debug-assertions = false
incremental = false
lto = true # Enable Link Time Optimization, see: https://nnethercote.github.io/perf-book/build-configuration.html#link-time-optimization
opt-level = 'z' # Optimize for size
overflow-checks = false
panic = 'abort' # Abort on panic
rpath = false
strip = true # Automatically strip symbols from the binary.