rtic/rtic-sync/Cargo.toml

41 lines
1.3 KiB
TOML
Raw Permalink Normal View History

[package]
2023-03-01 20:11:00 +01:00
name = "rtic-sync"
version = "1.2.0"
edition = "2021"
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"
repository = "https://github.com/rtic-rs/rtic"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
features = ["unstable"]
[dependencies]
heapless = "0.8"
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 }
embedded-hal = { version = "1.0", optional = true }
embedded-hal-async = { version = "1.0", optional = true }
embedded-hal-bus = { version = "0.1.0", optional = true, features = ["async"] }
2024-02-15 15:43:25 +01:00
bitflags = "2"
2023-01-28 20:47:21 +01:00
[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros", "time"] }
[features]
default = []
testing = ["critical-section/std", "rtic-common/testing"]
unstable = ["embedded-hal", "embedded-hal-async", "embedded-hal-bus"]