blob: 6f9c4d6ced243a6bddff2a26c843c9c2cce95c0a [file] [log] [blame]
// Licensed under the Apache-2.0 license
//! Async HAL traits for OpenPRoT
//!
//! This crate re-exports embedded-hal-async 1.0 traits for async/await-based
//! hardware abstraction layer operations compatible with modern async runtimes.
#![no_std]
#![forbid(unsafe_code)]
#![deny(missing_docs)]
// Re-export embedded-hal-async 1.0 traits
pub use embedded_hal_async::*;