[package] name = "rust_asio" version = "0.6.0" authors = ["Haruhiko Uchida "] description = "Asynchronous I/O library" documentation = "http://harre-orz.github.io/rust_asio/asyncio/" repository = "https://github.com/harre-orz/rust_asio.git" keywords = ["asyncio", "asynchronous", "network", "socket"] license = "MIT" [lib] name = "asyncio" [dependencies] bitflags = "^0.7" lazy_static = "^0.2" kernel32-sys = "^0.2" winapi = "^0.2" libc = "^0.2" ws2_32-sys = "^0.2" errno = "^0.1" context = { version = "^1.0", optional = true } termios = { version = "^0.2", optional = true } openssl = { version = "^0.9", optional = true } openssl-sys = { version = "^0.9", optional = true } time = "^0.1" [features] default = ["context", "epoll", "kqueue", "pipe", "timerfd", "signalfd"] linux = ["openssl", "openssl-sys", "termios"] macos = ["openssl", "openssl-sys", "termios"] windows = [] epoll = [] kqueue = [] pipe = [] timerfd = [] signalfd = []