mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2024-11-11 11:11:19 +00:00
52 lines
No EOL
1.1 KiB
TOML
52 lines
No EOL
1.1 KiB
TOML
[package]
|
|
authors = ["Jorge Aparicio <jorge.aparicio@ferrous-systems.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
name = "apps"
|
|
version = "0.0.0"
|
|
|
|
[dependencies]
|
|
cortex-m = "0.6.2"
|
|
cortex-m-rt = "0.6.12"
|
|
dk = { path = "../../boards/dk", features = ["beginner"] }
|
|
heapless = "0.5.5"
|
|
log = "0.4.8"
|
|
panic-log = { path = "../../common/panic-log" }
|
|
|
|
# optimize code in both profiles
|
|
[profile.dev]
|
|
codegen-units = 1
|
|
debug = 1
|
|
debug-assertions = true # !
|
|
incremental = false
|
|
lto = "fat"
|
|
opt-level = 'z' # !
|
|
overflow-checks = false
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug = 1
|
|
debug-assertions = false
|
|
incremental = false
|
|
lto = "fat"
|
|
opt-level = 3
|
|
overflow-checks = false
|
|
|
|
# faster builds from scratch
|
|
[profile.dev.build-override]
|
|
codegen-units = 8
|
|
debug = false
|
|
debug-assertions = false
|
|
opt-level = 0
|
|
overflow-checks = false
|
|
|
|
[profile.release.build-override]
|
|
codegen-units = 8
|
|
debug = false
|
|
debug-assertions = false
|
|
opt-level = 0
|
|
overflow-checks = false
|
|
|
|
# adds unwind info to external assembly
|
|
[patch.crates-io]
|
|
cortex-m = { git = "https://github.com/rust-embedded/cortex-m" } |