async-acceptor 0.1.0

Abstraction over tokio async listeners with an accept() method
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 = "2024"
name = "async-acceptor"
version = "0.1.0"
authors = ["Zhang Maiyun <me@maiyun.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Abstraction over tokio async listeners with an accept() method"
readme = "README.md"
keywords = [
    "async",
    "listener",
    "tokio",
]
categories = ["asynchronous"]
license = "Apache-2.0 OR GPL-3.0-or-later"
repository = "https://github.com/myzhang1029/penguin-rs"

[features]
__dev-dependencies = [
    "tokio/io-util",
    "tokio/macros",
    "tokio/process",
    "tokio/rt-multi-thread",
]
default = [
    "tokio-net",
    "stdio",
]
stdio = ["tokio/io-std"]
tokio-net = ["tokio/net"]

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

[dependencies.derive_more]
version = "2"
features = ["debug"]

[dependencies.futures-util]
version = "0.3"
default-features = false

[dependencies.tokio]
version = "^1, >=1.23.1"

[dev-dependencies]