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