qcomms/
lib.rs

1
2//! qcomms is only compatible with async std.
3//! this decision was made so users aren't locked in the tokio ecosystem
4
5mod async_comms;
6pub use async_comms::{Comms, ObjComms, UdpComms, UdpObjComms};