takyon 0.2.0

A simple, single threaded async runtime
Documentation
1
2
3
4
5
6
7
8
9
10
//! TCP and UDP networking
//! 
//! This module provides functionality for async IO over TCP and UDP sockets, and aims
//! to provide APIs identical to the equivalent `std` types

mod udp;
mod tcp;

pub use udp::UdpSocket;
pub use tcp::{TcpListener, TcpStream};