1[package]
2name = "embedded-io"
3version = "0.6.1"
4edition = "2021"
5description = "Embedded IO traits"
6repository = "https://github.com/rust-embedded/embedded-hal"
7readme = "README.md"
8license = "MIT OR Apache-2.0"
9categories = [
10 "embedded",
11 "no-std",
12]
13
14[features]
15std = ["alloc"]
16alloc = []
17defmt-03 = ["dep:defmt-03"]
18
19[dependencies]
20defmt-03 = { package = "defmt", version = "0.3", optional = true }
21
22[package.metadata.docs.rs]
23features = ["std"]
24rustdoc-args = ["--cfg", "docsrs"]
25