Files
embedded-hal/embedded-io-async/Cargo.toml
Dario Nieuwenhuis 4857fefc90 ci: simplify, test MSRV.
- 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
2023-12-13 01:30:40 +01:00

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"]