1//! wRPC TCP transport 2 3#[cfg(feature = "net")] 4pub mod tokio; 5#[cfg(feature = "net")] 6pub use tokio::*; 7 8#[cfg(target_family = "wasm")] 9pub mod wasi; 10#[cfg(all(target_family = "wasm", not(feature = "net")))] 11pub use wasi::*;