1[package]
2authors = [
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]
7categories = ["asynchronous", "embedded", "hardware-support", "no-std"]
8description = " A Hardware Abstraction Layer (HAL) for embedded systems "
9documentation = "https://docs.rs/embedded-hal"
10edition = "2021"
11rust-version = "1.60"
12keywords = ["hal", "IO"]
13license = "MIT OR Apache-2.0"
14name = "embedded-hal"
15readme = "README.md"
16repository = "https://github.com/rust-embedded/embedded-hal"
17version = "1.0.0"
18
19[features]
20defmt-03 = ["dep:defmt-03"]
21
22[dependencies]
23defmt-03 = { package = "defmt", version = "0.3", optional = true }
24