2023-01-26 21:29:52 +01:00
|
|
|
[package]
|
2023-03-01 20:11:00 +01:00
|
|
|
name = "rtic-sync"
|
2024-05-01 20:33:42 +02:00
|
|
|
version = "1.3.1-alpha.1"
|
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-12-25 10:24:56 +01:00
|
|
|
repository = "https://github.com/rtic-rs/rtic"
|
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 }
|
2024-02-23 08:38:10 +01:00
|
|
|
embedded-hal = { version = "1.0.0" }
|
|
|
|
embedded-hal-async = { version = "1.0.0" }
|
|
|
|
embedded-hal-bus = { version = "0.1.0", features = ["async"] }
|
|
|
|
|
|
|
|
defmt-03 = { package = "defmt", version = "0.3", optional = true }
|
2023-01-26 21:29:52 +01:00
|
|
|
|
2023-01-28 20:47:21 +01:00
|
|
|
[dev-dependencies]
|
2024-06-19 20:52:38 +02:00
|
|
|
static_cell = "2.1.0"
|
2023-01-28 20:47:21 +01:00
|
|
|
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"]
|
2024-06-19 20:52:38 +02:00
|
|
|
defmt-03 = ["dep:defmt-03", "embedded-hal/defmt-03", "embedded-hal-async/defmt-03", "embedded-hal-bus/defmt-03"]
|