16 lines
283 B
TOML
16 lines
283 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = [ "firmware", "lib-bms-protocol" ]
|
|
|
|
[profile.dev]
|
|
#lto = true
|
|
opt-level = 1
|
|
|
|
[profile.release]
|
|
strip = false # symbols are not flashed to the microcontroller, so don't strip them.
|
|
#lto = true
|
|
debug = true
|
|
opt-level = "z" # Optimize for size.
|
|
|
|
|