diff options
| author | zirkonya <zirkonya@iridium.lan> | 2026-08-29 22:11:23 +0200 |
|---|---|---|
| committer | zirkonya <zirkonya@iridium.lan> | 2026-08-29 22:11:23 +0200 |
| commit | bf9b81e669f4ce98c8d58df5d776ae90726d7ec2 (patch) | |
| tree | e0d5bdbd8a3423f1303577ddebbfa34696d336bb /src/lib.rs | |
| parent | bb41e396aca01fee9f81785681fac0a79d0fd9d8 (diff) | |
Add transport layer
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,8 +1,11 @@ -#[doc = include_str!("../README.md")] +#![doc = include_str!("../README.md")] +#![cfg_attr(feature = "f16", feature(f16))] +#![cfg_attr(feature = "f128", feature(f128))] pub mod backend; pub mod codec; pub mod context; pub mod event; +pub mod transport; pub mod types; #[cfg(feature = "macros")] @@ -10,3 +13,6 @@ pub use zr_protocol_macros as macros; /// The default buffer length used to allocate chunks pub(crate) const DEFAULT_BUFFER_LEN: usize = 2048; + +// TODO : rewrite tests +// TODO : benchmark with some client / server example |
