mill-io 3.0.0

A lightweight event loop library for Rust providing efficient non-blocking I/O management
Documentation
# 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.70"
name = "mill-io"
version = "3.0.0"
authors = [
    "Citadel-tech",
    "Mohamed Emad",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight event loop library for Rust providing efficient non-blocking I/O management"
homepage = "https://github.com/citadel-tech/mill-io"
documentation = "https://docs.rs/mill-io"
readme = "README.md"
keywords = [
    "io",
    "event-loop",
    "mio",
    "reactor",
    "async",
]
categories = [
    "network-programming",
    "asynchronous",
    "concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/citadel-tech/mill-io"

[features]
default = []
unstable = ["unstable-mpmc"]
unstable-mpmc = []

[lib]
name = "mill_io"
path = "src/lib.rs"

[[example]]
name = "compute_pool"
path = "examples/compute_pool.rs"

[[example]]
name = "file_watcher"
path = "examples/file_watcher.rs"

[[example]]
name = "scratch_echo_server"
path = "examples/scratch_echo_server.rs"

[[example]]
name = "scratch_http_server"
path = "examples/scratch_http_server.rs"

[[example]]
name = "scratch_jsonrpc_server"
path = "examples/scratch_jsonrpc_server.rs"

[[bench]]
name = "comprehensive"
path = "benches/comprehensive.rs"
harness = false

[dependencies.lock_freedom]
version = "0.1.1"

[dependencies.mio]
version = "1.1.0"
features = [
    "os-poll",
    "net",
]

[dependencies.parking_lot]
version = "0.12"

[dev-dependencies.criterion]
version = "0.5.1"
features = ["html_reports"]

[dev-dependencies.serde]
version = "1.0.219"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0.141"

[target.'cfg(target_os = "linux")'.dev-dependencies.inotify]
version = "0.10"