diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-08-15 15:30:14 +0200 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2025-08-25 19:44:50 +0200 |
| commit | 9f12852c389d65a8b2e252e027f69dfef2383736 (patch) | |
| tree | 8dc1f32170a62d2a82e033f57ccf423b648b93e5 /embassy-executor | |
| parent | 3f21c9022396fb2f77b4521dda67728520b999a9 (diff) | |
Read crate configs from metadata.
Diffstat (limited to 'embassy-executor')
| -rw-r--r-- | embassy-executor/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml index bff13de56..7da807906 100644 --- a/embassy-executor/Cargo.toml +++ b/embassy-executor/Cargo.toml | |||
| @@ -12,6 +12,26 @@ categories = [ | |||
| 12 | "asynchronous", | 12 | "asynchronous", |
| 13 | ] | 13 | ] |
| 14 | 14 | ||
| 15 | [package.metadata.embassy] | ||
| 16 | build = [ | ||
| 17 | {target = "thumbv7em-none-eabi", features = []}, | ||
| 18 | {target = "thumbv7em-none-eabi", features = ["log"]}, | ||
| 19 | {target = "thumbv7em-none-eabi", features = ["defmt"]}, | ||
| 20 | {target = "thumbv6m-none-eabi", features = ["defmt"]}, | ||
| 21 | {target = "thumbv6m-none-eabi", features = ["arch-cortex-m", "defmt", "executor-interrupt", "executor-thread"]}, | ||
| 22 | {target = "thumbv7em-none-eabi", features = ["arch-cortex-m"]}, | ||
| 23 | {target = "thumbv7em-none-eabi", features = ["arch-cortex-m", "rtos-trace"]}, | ||
| 24 | {target = "thumbv7em-none-eabi", features = ["arch-cortex-m", "executor-thread"]}, | ||
| 25 | {target = "thumbv7em-none-eabi", features = ["arch-cortex-m", "executor-interrupt"]}, | ||
| 26 | {target = "thumbv7em-none-eabi", features = ["arch-cortex-m", "executor-interrupt", "executor-thread"]}, | ||
| 27 | {target = "armv7a-none-eabi", features = ["arch-cortex-ar", "executor-thread"]}, | ||
| 28 | {target = "armv7r-none-eabi", features = ["arch-cortex-ar", "executor-thread"]}, | ||
| 29 | {target = "armv7r-none-eabihf", features = ["arch-cortex-ar", "executor-thread"]}, | ||
| 30 | {target = "riscv32imac-unknown-none-elf", features = ["arch-riscv32"]}, | ||
| 31 | {target = "riscv32imac-unknown-none-elf", features = ["arch-riscv32", "executor-thread"]}, | ||
| 32 | ] | ||
| 33 | |||
| 34 | |||
| 15 | [package.metadata.embassy_docs] | 35 | [package.metadata.embassy_docs] |
| 16 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-executor-v$VERSION/embassy-executor/src/" | 36 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-executor-v$VERSION/embassy-executor/src/" |
| 17 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-executor/src/" | 37 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-executor/src/" |
