[dependencies.cortex-m]
version = "0.7"
[dependencies.cortex-m-rt]
version = "0.7"
[dependencies.defmt]
optional = true
version = "1"
[dependencies.embedded-hal-async]
version = "1"
[dependencies.fugit]
version = "0.3"
[dependencies.woven]
version = "0.1"
[features]
defmt = ["dep:defmt", "fugit/defmt"]
[lib]
name = "synch"
path = "src/lib.rs"
[lints.clippy]
pedantic = "warn"
[lints.rust]
missing-docs = "warn"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "date-and-time", "no-std", "no-std::no-alloc"]
description = "A basic asynchronous timer implementation that uses the cortex-m SysTick peripheral"
edition = "2021"
homepage = "https://github.com/NZRosto/synch"
keywords = ["systick", "time", "cortex-m", "async", "no-std"]
license = "MIT OR Apache-2.0"
name = "synch"
readme = "README.md"
repository = "https://github.com/NZRosto/synch"
version = "0.1.2"