aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor-timer-queue/Cargo.toml
diff options
context:
space:
mode:
author1-rafael-1 <[email protected]>2025-09-15 20:07:18 +0200
committer1-rafael-1 <[email protected]>2025-09-15 20:07:18 +0200
commit6bb3d2c0720fa082f27d3cdb70f516058497ec87 (patch)
tree5a1e255cff999b00800f203b91a759c720c973e5 /embassy-executor-timer-queue/Cargo.toml
parenteb685574601d98c44faed9a3534d056199b46e20 (diff)
parent92a6fd2946f2cbb15359290f68aa360953da2ff7 (diff)
Merge branch 'main' into rp2040-rtc-alarm
Diffstat (limited to 'embassy-executor-timer-queue/Cargo.toml')
-rw-r--r--embassy-executor-timer-queue/Cargo.toml41
1 files changed, 41 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..a0ac44420
--- /dev/null
+++ b/embassy-executor-timer-queue/Cargo.toml
@@ -0,0 +1,41 @@
1[package]
2name = "embassy-executor-timer-queue"
3version = "0.1.0"
4edition = "2021"
5description = "Timer queue item and interface between embassy-executor and timer queues"
6repository = "https://github.com/embassy-rs/embassy"
7documentation = "https://docs.embassy.dev/embassy-executor-timer-queue"
8readme = "README.md"
9license = "MIT OR Apache-2.0"
10categories = [
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
24timer-item-size-4-words = []
25
26## 6 words
27timer-item-size-6-words = []
28
29## 8 words
30timer-item-size-8-words = []
31
32[package.metadata.embassy_docs]
33src_base = "https://github.com/embassy-rs/embassy/blob/embassy-executor-timer-queue-v$VERSION/embassy-executor-timer-queue/src/"
34src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-executor-timer-queue/src/"
35target = "x86_64-unknown-linux-gnu"
36
37[package.metadata.embassy]
38build = [
39 {target = "thumbv7em-none-eabi", features = []},
40 {target = "thumbv6m-none-eabi", features = []},
41]