2023-01-26 21:29:52 +01:00
|
|
|
[package]
|
2023-03-01 20:11:00 +01:00
|
|
|
name = "rtic-sync"
|
2023-12-04 20:37:00 +01:00
|
|
|
version = "1.1.0"
|
2023-02-01 22:11:50 +01:00
|
|
|
|
2023-01-26 21:29:52 +01:00
|
|
|
edition = "2021"
|
2023-02-01 22:11:50 +01:00
|
|
|
authors = [
|
|
|
|
"The Real-Time Interrupt-driven Concurrency developers",
|
|
|
|
"Emil Fresk <emil.fresk@gmail.com>",
|
|
|
|
"Henrik Tjäder <henrik@tjaders.com>",
|
|
|
|
"Jorge Aparicio <jorge@japaric.io>",
|
|
|
|
"Per Lindgren <per.lindgren@ltu.se>",
|
|
|
|
]
|
2023-02-01 21:55:05 +01:00
|
|
|
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
|
2023-03-01 20:11:00 +01:00
|
|
|
description = "Synchronization primitives for asynchronous contexts"
|
2023-02-01 21:55:05 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-01-26 21:29:52 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-04 18:26:21 +01:00
|
|
|
heapless = "0.8"
|
2023-01-26 21:29:52 +01:00
|
|
|
critical-section = "1"
|
2023-05-25 08:27:58 +02:00
|
|
|
rtic-common = { version = "1.0.0", path = "../rtic-common" }
|
2023-09-27 21:39:35 +02:00
|
|
|
portable-atomic = { version = "1", default-features = false }
|
2023-12-01 08:59:22 +01:00
|
|
|
embedded-hal = { version = "1.0.0-rc.2", optional = true }
|
|
|
|
embedded-hal-async = { version = "1.0.0-rc.2", optional = true }
|
|
|
|
embedded-hal-bus = { version = "0.1.0-rc.2", optional = true, features = ["async"] }
|
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"]
|
2023-10-09 16:55:55 +02:00
|
|
|
unstable = ["embedded-hal", "embedded-hal-async", "embedded-hal-bus"]
|