diff options
| author | Ulf Lilleengen <[email protected]> | 2024-05-21 08:11:34 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-21 08:11:34 +0000 |
| commit | cd27439fca0332ca1c20931ce587471f53e1b0ec (patch) | |
| tree | 8dd446c12202d5e242ba287f54cdf737ef29bd96 /docs/examples/layer-by-layer/Cargo.toml | |
| parent | 51d553092550059afb22b2620cea14bbed21abff (diff) | |
| parent | bb9c687a39c0675bd622f612a645b16229cb9024 (diff) | |
Merge pull request #2958 from embassy-rs/embassy-book-refactor
Embassy book refactor
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..0f233eae5 --- /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 | ||
