mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
29 lines
485 B
TOML
29 lines
485 B
TOML
|
[workspace]
|
||
|
members = [
|
||
|
"rtic",
|
||
|
"xtask",
|
||
|
]
|
||
|
|
||
|
[profile.release]
|
||
|
codegen-units = 1
|
||
|
lto = true
|
||
|
|
||
|
# do not optimize proc-macro deps or build scripts
|
||
|
[profile.dev.build-override]
|
||
|
codegen-units = 16
|
||
|
debug = false
|
||
|
debug-assertions = false
|
||
|
opt-level = 0
|
||
|
overflow-checks = false
|
||
|
|
||
|
|
||
|
[profile.release.build-override]
|
||
|
codegen-units = 16
|
||
|
debug = false
|
||
|
debug-assertions = false
|
||
|
opt-level = 0
|
||
|
overflow-checks = false
|
||
|
|
||
|
[patch.crates-io]
|
||
|
lm3s6965 = { git = "https://github.com/japaric/lm3s6965" }
|