43 lines
939 B
TOML
43 lines
939 B
TOML
[package]
|
|
name = "slot-a-blinky"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
cortex-m-rt = "0.7"
|
|
panic-rtt-target = { version = "0.1.3" }
|
|
rtt-target = { version = "0.5" }
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
|
|
embedded-hal = "1"
|
|
va108xx-hal = { path = "../../va108xx-hal" }
|
|
|
|
[profile.dev]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = true # <-
|
|
incremental = false
|
|
# This is problematic for stepping..
|
|
# 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 # <-
|
|
|
|
[profile.small]
|
|
inherits = "release"
|
|
codegen-units = 1
|
|
debug-assertions = false # <-
|
|
lto = true
|
|
opt-level = 'z' # <-
|
|
overflow-checks = false # <-
|
|
# strip = true # Automatically strip symbols from the binary.
|