aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l1/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32l1/Cargo.toml')
-rw-r--r--examples/stm32l1/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/stm32l1/Cargo.toml b/examples/stm32l1/Cargo.toml
index 442a5c795..659524cb3 100644
--- a/examples/stm32l1/Cargo.toml
+++ b/examples/stm32l1/Cargo.toml
@@ -3,6 +3,7 @@ edition = "2021"
3name = "embassy-stm32l1-examples" 3name = "embassy-stm32l1-examples"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6publish = false
6 7
7[dependencies] 8[dependencies]
8embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt"] } 9embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = ["defmt"] }
@@ -24,3 +25,8 @@ embedded-storage = "0.3.1"
24 25
25[profile.release] 26[profile.release]
26debug = 2 27debug = 2
28
29[package.metadata.embassy]
30build = [
31 { target = "thumbv7m-none-eabi", artifact-dir = "out/examples/stm32l1" }
32]