2026-01-19 20:13:25 +01:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "3"
|
2026-01-22 01:21:23 +01:00
|
|
|
members = ["acid-firmware", "password-hash"]
|
2026-01-24 21:12:25 +01:00
|
|
|
default-members = []
|
2026-01-30 03:10:01 +01:00
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
spectre-api-sys = { git = "https://github.com/Limeth/spectre-api-sys", rev = "9e844eb056c3dfee8286ac21ec40fa689a8b8aa2" }
|
2026-02-03 00:27:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[profile.dev.package.esp-storage]
|
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
|
# Rust debug is too slow.
|
|
|
|
|
# For debug builds always builds with some optimization
|
|
|
|
|
opt-level = "s"
|
|
|
|
|
lto = 'thin'
|
|
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
codegen-units = 1 # LLVM can perform better optimizations using a single thread
|
|
|
|
|
debug = 2
|
|
|
|
|
debug-assertions = false
|
|
|
|
|
incremental = false
|
|
|
|
|
lto = 'thin'
|
|
|
|
|
opt-level = 3
|
|
|
|
|
overflow-checks = false
|