1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! transformer: a (stream/sink) <-> (stream/sink) adapter
mod convert;
mod copy;
mod error;
pub mod eth_creds;
mod switch;
mod trace;
mod uri;
pub use convert::{convert, convert_fut, json};
pub use copy::copy;
pub use error::{errors_to_sink, errors_to_stream};
pub use switch::{switch, switch_convert_stream, switch_stream};
pub use trace::debug;
pub use uri::{canon_request, canon_request_stream};