atap 0.1.0

Threadsafe futureless async runtime for macOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Unix
//! Tasks that talk to other programs on this machine over Unix
//! sockets, both the stream kind and the datagram kind

pub(crate) mod path;
pub mod unix;
pub mod unix_socket;
pub mod unix_task;

pub use unix::Unix;
pub use unix_socket::{Credentials, UnixConnection, UnixDatagram, UnixListener};
pub use unix_task::{
    UnixAcceptTask, UnixBindTask, UnixConnectTask, UnixListenTask, UnixPairTask, UnixRecvFromTask,
    UnixSendToTask,
};