canary 0.3.3

provides ergonomic abstractions for network communication and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod addr;
#[cfg(not(target_arch = "wasm32"))]
mod any;
mod tcp;
mod unix;
mod wss;

pub use addr::*;
pub use wss::*;

#[cfg(not(target_arch = "wasm32"))]
pub use any::*;

#[cfg(not(target_arch = "wasm32"))]
pub use tcp::*;

#[cfg(unix)]
pub use unix::*;