1 | [package] |
2 | authors = [ |
3 | "The Embedded HAL Team and Contributors <embedded-hal@teams.rust-embedded.org>" , |
4 | ] |
5 | categories = ["asynchronous" , "embedded" , "hardware-support" , "no-std" ] |
6 | description = "An asynchronous Hardware Abstraction Layer (HAL) for embedded systems" |
7 | documentation = "https://docs.rs/embedded-hal-async" |
8 | edition = "2021" |
9 | keywords = ["hal" , "IO" ] |
10 | license = "MIT OR Apache-2.0" |
11 | name = "embedded-hal-async" |
12 | readme = "README.md" |
13 | repository = "https://github.com/rust-embedded/embedded-hal" |
14 | version = "1.0.0" |
15 | rust-version = "1.75" |
16 | |
17 | [features] |
18 | defmt-03 = ["dep:defmt-03" , "embedded-hal/defmt-03" ] |
19 | |
20 | [dependencies] |
21 | embedded-hal = { version = "1.0.0" , path = "../embedded-hal" } |
22 | defmt-03 = { package = "defmt" , version = "0.3" , optional = true } |
23 | |