mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
dfef66b73b
Updates the requirements on [embedded-hal-bus](https://github.com/rust-embedded/embedded-hal) to permit the latest version. - [Release notes](https://github.com/rust-embedded/embedded-hal/releases) - [Changelog](https://github.com/rust-embedded/embedded-hal/blob/v0.2.0/CHANGELOG.md) - [Commits](https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0...v0.2.0) --- updated-dependencies: - dependency-name: embedded-hal-bus dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
1.3 KiB
TOML
38 lines
1.3 KiB
TOML
[package]
|
|
name = "rtic-sync"
|
|
version = "1.3.1-alpha.1"
|
|
|
|
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>",
|
|
]
|
|
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
|
|
description = "Synchronization primitives for asynchronous contexts"
|
|
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
|
|
|
|
[dependencies]
|
|
heapless = "0.8"
|
|
critical-section = "1"
|
|
rtic-common = { version = "1.0.0", path = "../rtic-common" }
|
|
portable-atomic = { version = "1", default-features = false }
|
|
embedded-hal = { version = "1.0.0" }
|
|
embedded-hal-async = { version = "1.0.0" }
|
|
embedded-hal-bus = { version = "0.2.0", features = ["async"] }
|
|
|
|
defmt-03 = { package = "defmt", version = "0.3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
static_cell = "2.1.0"
|
|
tokio = { version = "1", features = ["rt", "macros", "time"] }
|
|
|
|
[features]
|
|
default = []
|
|
testing = ["critical-section/std", "rtic-common/testing"]
|
|
defmt-03 = ["dep:defmt-03", "embedded-hal/defmt-03", "embedded-hal-async/defmt-03", "embedded-hal-bus/defmt-03"]
|