2020-09-22 16:03:43 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"embassy",
|
|
|
|
"embassy-nrf",
|
|
|
|
"examples",
|
|
|
|
]
|
|
|
|
|
2020-09-25 01:25:06 +00:00
|
|
|
exclude = [
|
|
|
|
"third_party"
|
|
|
|
]
|
|
|
|
|
2020-09-22 16:03:43 +00:00
|
|
|
[patch.crates-io]
|
|
|
|
panic-probe = { git = "https://github.com/knurling-rs/probe-run", branch="main" }
|
2020-10-31 21:05:07 +00:00
|
|
|
defmt-rtt = { git = "https://github.com/knurling-rs/defmt", branch="main" }
|
|
|
|
defmt = { git = "https://github.com/knurling-rs/defmt", branch="main" }
|
2020-09-22 16:03:43 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
codegen-units = 1
|
|
|
|
debug = 2
|
|
|
|
debug-assertions = true
|
|
|
|
incremental = false
|
|
|
|
opt-level = 3
|
|
|
|
overflow-checks = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
debug = 2
|
|
|
|
debug-assertions = false
|
|
|
|
incremental = false
|
|
|
|
lto = "fat"
|
|
|
|
opt-level = 3
|
|
|
|
overflow-checks = false
|
|
|
|
|
|
|
|
# do not optimize proc-macro crates = 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
|