diff options
| author | Dániel Buga <[email protected]> | 2025-08-04 00:05:25 +0200 |
|---|---|---|
| committer | Dániel Buga <[email protected]> | 2025-08-18 12:50:51 +0200 |
| commit | 74037f04933f4ec9a678e0b47fd6819e7c0489a9 (patch) | |
| tree | cb81e7394b6b59324a08eb92eba6fd0d8d9f2a9c /embassy-executor-timer-queue/Cargo.toml | |
| parent | a5cb04bdab602bc3bd056d254a9d61cad55bd967 (diff) | |
Make TimerQueueItem opaque
Diffstat (limited to 'embassy-executor-timer-queue/Cargo.toml')
| -rw-r--r-- | embassy-executor-timer-queue/Cargo.toml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/embassy-executor-timer-queue/Cargo.toml b/embassy-executor-timer-queue/Cargo.toml new file mode 100644 index 000000000..0db327ba9 --- /dev/null +++ b/embassy-executor-timer-queue/Cargo.toml | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | [package] | ||
| 2 | name = "embassy-executor-timer-queue" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2021" | ||
| 5 | description = "Timer queue item and interface between embassy-executor and timer queues" | ||
| 6 | repository = "https://github.com/embassy-rs/embassy" | ||
| 7 | documentation = "https://docs.embassy.dev/embassy-executor-timer-queue" | ||
| 8 | readme = "README.md" | ||
| 9 | license = "MIT OR Apache-2.0" | ||
| 10 | categories = [ | ||
| 11 | "embedded", | ||
| 12 | "no-std", | ||
| 13 | "concurrency", | ||
| 14 | "asynchronous", | ||
| 15 | ] | ||
| 16 | |||
| 17 | [dependencies] | ||
| 18 | |||
| 19 | [features] | ||
| 20 | #! ### Timer Queue Item Size | ||
| 21 | #! Sets the size of the timer items. | ||
| 22 | |||
| 23 | ## 4 words | ||
| 24 | timer-item-size-4-words = [] | ||
| 25 | |||
| 26 | ## 6 words | ||
| 27 | timer-item-size-6-words = [] | ||
| 28 | |||
| 29 | ## 8 words | ||
| 30 | timer-item-size-8-words = [] | ||
| 31 | |||
| 32 | [package.metadata.embassy_docs] | ||
| 33 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-executor-timer-queue-v$VERSION/embassy-executor-timer-queue/src/" | ||
| 34 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-executor-timer-queue/src/" | ||
| 35 | target = "x86_64-unknown-linux-gnu" | ||
