-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (24 loc) · 830 Bytes
/
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
[workspace]
resolver = "2"
members = [
"crates/dead-man-switch",
"crates/dead-man-switch-tui",
"crates/dead-man-switch-web",
]
default-members = ["crates/dead-man-switch", "crates/dead-man-switch-tui"]
[workspace.package]
edition = "2021"
version = "0.4.1"
authors = ["Jose Storopoli <[email protected]>"]
description = "A simple no-BS Dead Man's Switch"
license = "AGPL-3.0-only"
readme = "README.md"
[workspace.dependencies]
dead-man-switch = { path = "crates/dead-man-switch", version = "0.5.0" }
zeroize = { version = "1.8.1", features = ["derive"] }
[profile.release]
opt-level = "z" # Optimized for size, use 3 for speed
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduced to increase optimizations
panic = "abort" # Abort on panic
strip = "symbols" # Strip symbols from binary