mirror of
https://github.com/rust-embedded/embedded-hal.git
synced 2026-03-30 19:09:10 +00:00
21 lines
628 B
TOML
21 lines
628 B
TOML
[package]
|
|
name = "embedded-hal-nb"
|
|
version = "1.0.0-alpha.3"
|
|
edition = "2021"
|
|
|
|
categories = ["embedded", "hardware-support", "no-std"]
|
|
description = "Non-blocking Hardware Abstraction Layer (HAL) for embedded systems using the `nb` crate."
|
|
documentation = "https://docs.rs/embedded-hal-nb"
|
|
keywords = ["hal", "IO"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/rust-embedded/embedded-hal"
|
|
|
|
[dependencies]
|
|
embedded-hal = { version = "=1.0.0-alpha.11", path = "../embedded-hal" }
|
|
nb = "1"
|
|
|
|
[dev-dependencies]
|
|
cortex-m-rt = "0.7"
|
|
stm32f1 = { version = "0.15", features = ["stm32f103", "rt"] }
|