aboutsummaryrefslogtreecommitdiff
path: root/examples/mimxrt6
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2025-08-26 07:05:40 +0000
committerGitHub <[email protected]>2025-08-26 07:05:40 +0000
commit551aa5770fccba09ccaaa78745a3e5af2faea964 (patch)
tree6ae7de8fec93fbf30d1455727b162ed9097b0c83 /examples/mimxrt6
parent73717f9ae8ea1f13f029c4c2722610a7e54436cb (diff)
parentc40c20563664a62607f754fc734c7473d28ee955 (diff)
Merge pull request #4549 from embassy-rs/releaser-update
feat: add semver checks and releasing to releaser
Diffstat (limited to 'examples/mimxrt6')
-rw-r--r--examples/mimxrt6/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/mimxrt6/Cargo.toml b/examples/mimxrt6/Cargo.toml
index 2667ec089..8ae636921 100644
--- a/examples/mimxrt6/Cargo.toml
+++ b/examples/mimxrt6/Cargo.toml
@@ -3,6 +3,7 @@ name = "embassy-imxrt-examples"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT or Apache-2.0" 5license = "MIT or Apache-2.0"
6publish = false
6 7
7[dependencies] 8[dependencies]
8cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section-single-core"] } 9cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section-single-core"] }
@@ -58,3 +59,8 @@ incremental = false
58lto = 'fat' 59lto = 'fat'
59opt-level = 3 # <- 60opt-level = 3 # <-
60overflow-checks = false # <- 61overflow-checks = false # <-
62
63[package.metadata.embassy]
64build = [
65 { target = "thumbv8m.main-none-eabihf", artifact-dir = "out/examples/mimxrt6" }
66]