mirror of
https://github.com/rust-embedded/embedded-hal.git
synced 2026-03-14 01:47:38 +00:00
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.
15 lines
352 B
TOML
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
|
|
]
|