-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (34 loc) · 1.26 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
31
32
33
34
35
36
37
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
rust-version = "1.80"
version = "0.1.0"
license = "MIT"
[workspace.dependencies]
peerpiper = { path = "crates/peerpiper" }
peerpiper-core = { path = "crates/peerpiper-core" }
peerpiper-native = { path = "crates/peerpiper-native" }
peerpiper-browser = { path = "crates/peerpiper-browser" }
futures = "0.3.29"
rand = "0.8"
thiserror = "1"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
libp2p = { version = "0.54.1", git = "https://github.com/libp2p/rust-libp2p.git" }
wit-bindgen-rt = { version = "0.34.0", features = ["bitflags"] }
# for submodules
bls12_381_plus = { version = "0.8.16", features = ["expose-fields", "alloc"] }
delano-keys = { path = "./submodules/delanocreds/crates/delano-keys" }
seed-keeper-core = { path = "./submodules/seed-keeper/crates/seed-keeper-core" }
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Link Time Optimization
codegen-units = 1 # allow for maximum size reduction optimizations
strip = true # Automatically strip symbols from the binary.
panic = 'abort' # Abort on panic
debug = false
debug-assertions = false
overflow-checks = false
incremental = false
rpath = false