2022-07-29 19:58:35 +00:00
|
|
|
[package]
|
2022-08-22 19:46:09 +00:00
|
|
|
name = "embassy-sync"
|
2022-07-29 19:58:35 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-10-04 14:38:11 +00:00
|
|
|
description = "no-std, no-alloc synchronization primitives with async support"
|
|
|
|
repository = "https://github.com/embassy-rs/embassy"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
categories = [
|
|
|
|
"embedded",
|
|
|
|
"no-std",
|
|
|
|
"concurrency",
|
|
|
|
"asynchronous",
|
|
|
|
]
|
2022-07-29 19:58:35 +00:00
|
|
|
|
|
|
|
[package.metadata.embassy_docs]
|
2022-08-22 19:46:09 +00:00
|
|
|
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-sync-v$VERSION/embassy-sync/src/"
|
|
|
|
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-sync/src/"
|
2022-08-03 12:15:16 +00:00
|
|
|
features = ["nightly"]
|
2022-08-15 18:40:41 +00:00
|
|
|
target = "thumbv7em-none-eabi"
|
2022-07-29 19:58:35 +00:00
|
|
|
|
2022-10-26 20:11:08 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["nightly"]
|
|
|
|
|
2022-08-03 12:15:16 +00:00
|
|
|
[features]
|
|
|
|
nightly = ["embedded-io/async"]
|
2022-08-29 08:27:51 +00:00
|
|
|
std = []
|
2022-08-03 12:15:16 +00:00
|
|
|
|
2022-07-29 19:58:35 +00:00
|
|
|
[dependencies]
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
|
|
log = { version = "0.4.14", optional = true }
|
|
|
|
|
|
|
|
futures-util = { version = "0.3.17", default-features = false }
|
2022-08-14 21:16:06 +00:00
|
|
|
atomic-polyfill = "1.0.1"
|
|
|
|
critical-section = "1.1"
|
2022-07-29 19:58:35 +00:00
|
|
|
heapless = "0.7.5"
|
|
|
|
cfg-if = "1.0.0"
|
2022-10-26 14:47:29 +00:00
|
|
|
embedded-io = "0.3.1"
|
2022-07-29 19:58:35 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
futures-executor = { version = "0.3.17", features = [ "thread-pool" ] }
|
|
|
|
futures-test = "0.3.17"
|
|
|
|
futures-timer = "3.0.2"
|
|
|
|
futures-util = { version = "0.3.17", features = [ "channel" ] }
|
2022-08-14 21:16:06 +00:00
|
|
|
|
|
|
|
# Enable critical-section implementation for std, for tests
|
|
|
|
critical-section = { version = "1.1", features = ["std"] }
|
2022-08-22 13:51:44 +00:00
|
|
|
static_cell = "1.0"
|