diff options
Diffstat (limited to 'docs/examples/layer-by-layer/Cargo.toml')
| -rw-r--r-- | docs/examples/layer-by-layer/Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/examples/layer-by-layer/Cargo.toml b/docs/examples/layer-by-layer/Cargo.toml new file mode 100644 index 000000000..943249a17 --- /dev/null +++ b/docs/examples/layer-by-layer/Cargo.toml | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | [workspace] | ||
| 2 | resolver = "2" | ||
| 3 | members = [ | ||
| 4 | "blinky-pac", | ||
| 5 | "blinky-hal", | ||
| 6 | "blinky-irq", | ||
| 7 | "blinky-async", | ||
| 8 | ] | ||
| 9 | |||
| 10 | [patch.crates-io] | ||
| 11 | embassy-executor = { path = "../../../../../embassy-executor" } | ||
| 12 | embassy-stm32 = { path = "../../../../../embassy-stm32" } | ||
| 13 | |||
| 14 | [profile.release] | ||
| 15 | codegen-units = 1 | ||
| 16 | debug = 2 | ||
| 17 | debug-assertions = false | ||
| 18 | incremental = false | ||
| 19 | lto = "fat" | ||
| 20 | opt-level = 's' | ||
| 21 | overflow-checks = false | ||
