# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.63" name = "reactio" version = "0.1.8" authors = ["Jack Zhang "] build = false exclude = ["/.*"] autobins = false autoexamples = false autotests = false autobenches = false description = "Low-Latency Event Driven Nonblocking Reactor Pattern" readme = "README.md" keywords = [ "reactor", "event-driven", "non-blocking", "epoll", "iocp", ] categories = [ "asynchronous", "concurrency", "network-programming", "os", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/zjgoggle/reactio-rs" [package.metadata.docs.rs] rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "reactio" path = "src/lib.rs" [[example]] name = "echo_client" path = "examples/echo_client.rs" [[example]] name = "echo_server" path = "examples/echo_server.rs" [[test]] name = "test_io_reactor" path = "tests/test_io_reactor.rs" [dependencies.libc] version = "0.2" [dependencies.polling] version = "3.7"