This commit is contained in:
parent
69be9f7aca
commit
089def45d1
37 changed files with 2792 additions and 225 deletions
|
|
@ -2,8 +2,16 @@ pub mod client;
|
|||
pub mod connection;
|
||||
pub mod connection_handle;
|
||||
|
||||
#[cfg(feature = "pipes")]
|
||||
pub mod pipe;
|
||||
|
||||
pub use connection::{Policy, Receiver, SendMode, Sender};
|
||||
|
||||
#[cfg(feature = "pipes")]
|
||||
pub use connection::TransportEvent;
|
||||
#[cfg(feature = "pipes")]
|
||||
pub use pipe::{PipeReader, PipeWriter};
|
||||
|
||||
pub use client::connect;
|
||||
pub use connection_handle::ConnectionHandle;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue