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