aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor-timer-queue/Cargo.toml
blob: a0ac44420a7f1c6d546cbfe5ad78bd750f8e478d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "embassy-executor-timer-queue"
version = "0.1.0"
edition = "2021"
description = "Timer queue item and interface between embassy-executor and timer queues"
repository = "https://github.com/embassy-rs/embassy"
documentation = "https://docs.embassy.dev/embassy-executor-timer-queue"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = [
    "embedded",
    "no-std",
    "concurrency",
    "asynchronous",
]

[dependencies]

[features]
#! ### Timer Queue Item Size
#! Sets the size of the timer items.

## 4 words
timer-item-size-4-words = []

## 6 words
timer-item-size-6-words = []

## 8 words
timer-item-size-8-words = []

[package.metadata.embassy_docs]
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-executor-timer-queue-v$VERSION/embassy-executor-timer-queue/src/"
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-executor-timer-queue/src/"
target = "x86_64-unknown-linux-gnu"

[package.metadata.embassy]
build = [
    {target = "thumbv7em-none-eabi", features = []},
    {target = "thumbv6m-none-eabi", features = []},
]