Robin Mueller
94c6d91bae
- The workspace is now a monorepo without submodules. The HAL, PAC and BSP are integrated directly - Update all dependencies: embedded-hal v1 and RTIC v2
32 lines
504 B
TOML
32 lines
504 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"vorago-reb1",
|
|
"va108xx",
|
|
"va108xx-hal",
|
|
"examples/simple",
|
|
"board-tests",
|
|
]
|
|
|
|
exclude = [
|
|
"defmt-testapp",
|
|
]
|
|
|
|
[profile.dev]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = true # <-
|
|
incremental = false
|
|
opt-level = 'z' # <-
|
|
overflow-checks = true # <-
|
|
|
|
# cargo build/run --release
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = false # <-
|
|
incremental = false
|
|
lto = 'fat'
|
|
opt-level = 3 # <-
|
|
overflow-checks = false # <-
|