aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f469/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32f469/Cargo.toml')
-rw-r--r--examples/stm32f469/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/stm32f469/Cargo.toml b/examples/stm32f469/Cargo.toml
index a35a811e2..612081242 100644
--- a/examples/stm32f469/Cargo.toml
+++ b/examples/stm32f469/Cargo.toml
@@ -3,6 +3,7 @@ edition = "2021"
3name = "embassy-stm32f469-examples" 3name = "embassy-stm32f469-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]
8# Specific examples only for stm32f469 9# Specific examples only for stm32f469
@@ -20,3 +21,8 @@ panic-probe = { version = "1.0.0", features = ["print-defmt"] }
20 21
21[profile.release] 22[profile.release]
22debug = 2 23debug = 2
24
25[package.metadata.embassy]
26build = [
27 { target = "thumbv7em-none-eabi", artifact-dir = "out/examples/stm32f469" }
28]