bluetape_rs/lib.rs
1//! Rust backend primitives for the bluetape ecosystem.
2//!
3//! This root crate is a small convenience facade over the foundation crates
4//! shipped in the first release. Use the focused crates directly when a smaller
5//! dependency surface is preferred.
6
7#[cfg(feature = "async")]
8pub use bluetape_rs_async as async_utils;
9#[cfg(feature = "codec")]
10pub use bluetape_rs_codec as codec;
11#[cfg(feature = "collections")]
12pub use bluetape_rs_collections as collections;
13#[cfg(feature = "core")]
14pub use bluetape_rs_core as core;
15#[cfg(feature = "logging")]
16pub use bluetape_rs_logging as logging;
17#[cfg(feature = "test")]
18pub use bluetape_rs_test as test;