aboutsummaryrefslogtreecommitdiff
path: root/rtic-arbiter/Cargo.toml
blob: 52daa27dc7cb403c98ecdc02b15d695b859332e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "rtic-arbiter"
version = "1.0.0-alpha.0"
edition = "2021"
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "rtic-arbiter lib TODO"
license = "MIT OR Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
critical-section = "1"
rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" }

[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros", "time"] }


[features]
default = []
testing = ["critical-section/std", "rtic-common/testing"]