aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-08-15 15:30:14 +0200
committerUlf Lilleengen <[email protected]>2025-08-25 19:44:50 +0200
commit9f12852c389d65a8b2e252e027f69dfef2383736 (patch)
tree8dc1f32170a62d2a82e033f57ccf423b648b93e5 /embassy-rp
parent3f21c9022396fb2f77b4521dda67728520b999a9 (diff)
Read crate configs from metadata.
Diffstat (limited to 'embassy-rp')
-rw-r--r--embassy-rp/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index 7f2167f90..a5f84944e 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -9,6 +9,17 @@ categories = ["embedded", "hardware-support", "no-std", "asynchronous"]
9repository = "https://github.com/embassy-rs/embassy" 9repository = "https://github.com/embassy-rs/embassy"
10documentation = "https://docs.embassy.dev/embassy-rp" 10documentation = "https://docs.embassy.dev/embassy-rp"
11 11
12[package.metadata.embassy]
13build = [
14 {target = "thumbv6m-none-eabi", features = ["defmt", "rp2040", "time-driver"]},
15 {target = "thumbv6m-none-eabi", features = ["log", "rp2040", "time-driver"]},
16 {target = "thumbv6m-none-eabi", features = ["intrinsics", "rp2040", "time-driver"]},
17 {target = "thumbv6m-none-eabi", features = ["qspi-as-gpio", "rp2040", "time-driver"]},
18 {target = "thumbv8m.main-none-eabihf", features = ["defmt", "rp235xa", "time-driver"]},
19 {target = "thumbv8m.main-none-eabihf", features = ["log", "rp235xa", "time-driver"]},
20 {target = "thumbv8m.main-none-eabihf", features = ["binary-info", "rp235xa", "time-driver"]},
21]
22
12[package.metadata.embassy_docs] 23[package.metadata.embassy_docs]
13src_base = "https://github.com/embassy-rs/embassy/blob/embassy-rp-v$VERSION/embassy-rp/src/" 24src_base = "https://github.com/embassy-rs/embassy/blob/embassy-rp-v$VERSION/embassy-rp/src/"
14src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-rp/src/" 25src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-rp/src/"