aboutsummaryrefslogtreecommitdiff
path: root/examples/rp
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/rp
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/rp')
-rw-r--r--examples/rp/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index afe8a90d8..d97ebf43e 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -4,6 +4,7 @@ name = "embassy-rp-examples"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6 6
7publish = false
7 8
8[dependencies] 9[dependencies]
9embassy-embedded-hal = { version = "0.4.0", path = "../../embassy-embedded-hal", features = ["defmt"] } 10embassy-embedded-hal = { version = "0.4.0", path = "../../embassy-embedded-hal", features = ["defmt"] }
@@ -60,3 +61,8 @@ embedded-sdmmc = "0.7.0"
60[profile.release] 61[profile.release]
61# Enable generation of debug symbols even on release builds 62# Enable generation of debug symbols even on release builds
62debug = true 63debug = true
64
65[package.metadata.embassy]
66build = [
67 { target = "thumbv6m-none-eabi", artifact-dir = "out/examples/rp" }
68]