mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-07 00:00:08 +02:00
This is just too aggressive for a stable maintenance branch of tokio, in that new rust release warnings are prooving too hard to fix.
39 lines
847 B
Rust
39 lines
847 B
Rust
#![cfg(unix)]
|
|
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.5")]
|
|
#![deny(missing_docs, missing_debug_implementations)]
|
|
|
|
//! Unix Domain Sockets for Tokio.
|
|
//!
|
|
//! This crate provides APIs for using Unix Domain Sockets with Tokio.
|
|
|
|
extern crate bytes;
|
|
#[macro_use]
|
|
extern crate futures;
|
|
extern crate iovec;
|
|
extern crate libc;
|
|
#[macro_use]
|
|
extern crate log;
|
|
extern crate mio;
|
|
extern crate mio_uds;
|
|
extern crate tokio_codec;
|
|
extern crate tokio_io;
|
|
extern crate tokio_reactor;
|
|
|
|
mod datagram;
|
|
mod frame;
|
|
mod incoming;
|
|
mod listener;
|
|
mod recv_dgram;
|
|
mod send_dgram;
|
|
mod stream;
|
|
mod ucred;
|
|
|
|
pub use datagram::UnixDatagram;
|
|
pub use frame::UnixDatagramFramed;
|
|
pub use incoming::Incoming;
|
|
pub use listener::UnixListener;
|
|
pub use recv_dgram::RecvDgram;
|
|
pub use send_dgram::SendDgram;
|
|
pub use stream::{ConnectFuture, UnixStream};
|
|
pub use ucred::UCred;
|