mirror of
https://github.com/rust-embedded/embedded-hal.git
synced 2026-03-19 13:43:55 +00:00
- Use separate jobs instead of `matrix`. The Github Actions matrix is very cursed, especially if you use `include`. We don't have that many combinations, IMO doing separate jobs is way more straightforward and only slightly more verbose. - `embedded-hal` needs `rust-version = 1.60` because it uses `dep:`. Fixes #538
27 lines
647 B
TOML
27 lines
647 B
TOML
[package]
|
|
name = "embedded-io-async"
|
|
version = "0.6.1"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "Async embedded IO traits"
|
|
repository = "https://github.com/rust-embedded/embedded-hal"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
categories = [
|
|
"embedded",
|
|
"no-std",
|
|
]
|
|
|
|
[features]
|
|
std = ["alloc", "embedded-io/std"]
|
|
alloc = ["embedded-io/alloc"]
|
|
defmt-03 = ["dep:defmt-03", "embedded-io/defmt-03"]
|
|
|
|
[dependencies]
|
|
embedded-io = { version = "0.6", path = "../embedded-io" }
|
|
defmt-03 = { package = "defmt", version = "0.3", optional = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["std"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|