1 | [package] |
2 | authors = [ |
3 | "The Embedded HAL Team <embedded-hal@teams.rust-embedded.org>" , |
4 | "Jorge Aparicio <jorge@japaric.io>" , |
5 | "Jonathan 'theJPster' Pallant <github@thejpster.org.uk>" |
6 | ] |
7 | categories = ["asynchronous" , "embedded" , "hardware-support" , "no-std" ] |
8 | description = " A Hardware Abstraction Layer (HAL) for embedded systems " |
9 | documentation = "https://docs.rs/embedded-hal" |
10 | keywords = ["hal" , "IO" ] |
11 | license = "MIT OR Apache-2.0" |
12 | name = "embedded-hal" |
13 | readme = "README.md" |
14 | repository = "https://github.com/rust-embedded/embedded-hal" |
15 | version = "0.2.7" |
16 | |
17 | [dependencies.void] |
18 | default-features = false |
19 | version = "1.0.2" |
20 | |
21 | [dependencies.nb] |
22 | version = "0.1.3" |
23 | |
24 | [dev-dependencies] |
25 | stm32f30x = "0.8.0" |
26 | futures = "0.1.17" |
27 | |
28 | [features] |
29 | unproven = ["nb/unstable" ] |
30 | |
31 | [package.metadata.docs.rs] |
32 | features = ["unproven" ] |
33 | |