embedded-hal/Cargo.toml
Dario Nieuwenhuis 42b69fcf29 io: add separate embedded-io-adapters crate, add futures/tokio support.
If we want to release `embedded-io` 1.0 and the adapters live there, we can't make any
breaking changes to them after release. Putting them in a separate crate
allows doing breaking changes without breaking everyone using the IO traits.
2023-07-12 19:30:24 +02:00

15 lines
352 B
TOML

[workspace]
resolver = "2"
# CI removes lines containing 'nightly-only' when not building with nightly.
members = [
"embedded-hal",
"embedded-hal-async", # nightly-only
"embedded-hal-nb",
"embedded-hal-bus",
"embedded-can",
"embedded-io",
"embedded-io-async", # nightly-only
"embedded-io-adapters", # nightly-only
]