1[package]
2name = "embedded-hal-nb"
3version = "1.0.0"
4edition = "2021"
5rust-version = "1.56"
6
7categories = ["embedded", "hardware-support", "no-std"]
8description = "Non-blocking Hardware Abstraction Layer (HAL) for embedded systems using the `nb` crate."
9documentation = "https://docs.rs/embedded-hal-nb"
10keywords = ["hal", "IO"]
11license = "MIT OR Apache-2.0"
12readme = "README.md"
13repository = "https://github.com/rust-embedded/embedded-hal"
14
15[dependencies]
16embedded-hal = { version = "1.0.0", path = "../embedded-hal" }
17nb = "1"
18
19[dev-dependencies]
20cortex-m-rt = "0.7"
21stm32f1 = { version = "0.15", features = ["stm32f103", "rt"] }
22