tube/lib.rs
1#![feature(assert_matches)]
2#![feature(map_try_insert)]
3
4/*
5mod common;
6
7pub use common::tube;
8
9// "client"-feature exports
10#[cfg(feature = "client")] pub mod client;
11#[cfg(feature = "client")] pub use client::Client;
12
13// "server"-feature exports
14#[cfg(feature = "server")] pub mod server;
15#[cfg(feature = "server")] pub use server::Server;
16*/