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