[package]
authors = ["ChiHai <ihciah@gmail.com>", "XuShuai <dyxushuai@gmail.com>"]
categories = ["asynchronous", "network-programming"]
description = "A thread per core runtime based on iouring."
edition = "2021"
keywords = ["runtime", "iouring", "async"]
license = "MIT/Apache-2.0"
name = "monoio"
readme = "README.md"
repository = "https://github.com/bytedance/monoio"
version = "0.0.3"
[dependencies]
monoio-macros = {version = "0.0.2", path = "../monoio-macros", optional = true}
futures = "0.3"
fxhash = "0.2"
io-uring = {version = "0.5", features = ["unstable"]}
libc = "0.2"
os_socketaddr = "0.2"
pin-project-lite = "0.2"
pin-utils = "0.1"
scoped-tls = "1"
socket2 = {version = "0.4", features = ["all"]}
bytes = {version = "1", optional = true}
flume = {version = "0.10", optional = true}
lazy_static = {version = "1", optional = true}
nix = {version = "0.23", optional = true}
[features]
async-cancel = []
zero-copy = []
macros = ["monoio-macros"]
sync = ["lazy_static", "flume"]
utils = ["nix"]
debug = []
default = ["async-cancel", "bytes", "macros", "utils"]