2023-01-26 21:29:52 +01:00
|
|
|
[package]
|
|
|
|
name = "rtic-channel"
|
|
|
|
version = "1.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
heapless = "0.7"
|
|
|
|
critical-section = "1"
|
2023-01-29 20:16:23 +01:00
|
|
|
rtic-common = { version = "1.0.0", path = "../rtic-common" }
|
2023-01-26 21:29:52 +01:00
|
|
|
|
2023-01-28 20:47:21 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["rt", "macros", "time"] }
|
|
|
|
|
2023-01-26 21:29:52 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-01-29 20:16:23 +01:00
|
|
|
testing = ["critical-section/std", "rtic-common/testing"]
|