[package] name = "reactors" version = "0.1.4" edition = "2021" license = "MIT" keywords = ["futures-rs", "reactor", "async", "file", "socket"] description = "Performance-focused cross-platform asynchronous IO implementation" readme = "README.md" repository = "https://github.com/AgoraCyber/reactors-rs" documentation = "https://docs.rs/reactors/latest/reactors/" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = { version = "^0.3", features = ["thread-pool"] } log = "^0.4" errno = "0.3.0" os_socketaddr = "0.2.4" once_cell = "^1.17.1" [target.'cfg(target_family = "unix")'.dependencies] libc = "^0.2" [target.'cfg(target_family = "windows")'.dependencies] winapi = { version = "^0.3.9", features = [ "ioapiset", "mswsock", "errhandlingapi", "handleapi", ] } [dev-dependencies] futures-test = "^0.3" pretty_env_logger = "^0.4" tokio = { version = "1", features = ["full"] } criterion = { version = "0.4", features = [ "async_tokio", "async_futures", "html_reports", ] } clap = { version = "4.1.8", features = ["derive"] } anyhow = "1.0.69" indicatif = "0.17.3" [[bench]] name = "echo" harness = false