mill-net 3.0.0

High-level networking protocols components built with mill-io event-loop library.
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-net"
version = "3.0.0"
authors = [
    "Citadel-tech",
    "Mohamed Emad",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level networking protocols components built with mill-io event-loop library."
homepage = "https://github.com/citadel-tech/mill-io"
documentation = "https://docs.rs/mill-net"
readme = "README.md"
keywords = [
    "networking",
    "tcp",
    "mill-io",
    "event-loop",
    "async",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/citadel-tech/mill-io"

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

[[example]]
name = "tcp_echo_server"
path = "examples/tcp_echo_server.rs"
required-features = ["tcp"]

[[example]]
name = "tcp_http_server"
path = "examples/tcp_http_server.rs"
required-features = ["tcp"]

[[example]]
name = "tcp_jsonrpc_server"
path = "examples/tcp_jsonrpc_server.rs"
required-features = ["tcp"]

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

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

[dependencies.lock_freedom]
version = "0.1.1"

[dependencies.mill-io]
version = "3.0.0"

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

[dependencies.parking_lot]
version = "0.12"

[dev-dependencies.async-std]
version = "1"
features = ["attributes"]

[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"

[dev-dependencies.smol]
version = "2"

[dev-dependencies.tokio]
version = "1"
features = ["full"]