//! Async I/O support for io_uring
//!
//! This module provides async/await interfaces for io_uring operations.
//! Enable with the `async-tokio` or `async-async-std` features.
//!
//! **Note**: Only one async runtime feature should be enabled at a time.
//! If both are enabled, tokio will be used by default.
// Re-export AsyncIoUring from the appropriate runtime implementation
// If both features are enabled, prefer tokio
pub use AsyncIoUring;
pub use AsyncIoUring;