forked from rust-embedded/embedded-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (18 loc) · 643 Bytes
/
Cargo.toml
File metadata and controls
21 lines (18 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "embedded-hal-nb"
version = "1.0.0-rc.3"
edition = "2021"
rust-version = "1.56"
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-rc.3", path = "../embedded-hal" }
nb = "1"
[dev-dependencies]
cortex-m-rt = "0.7"
stm32f1 = { version = "0.15", features = ["stm32f103", "rt"] }