[package]
edition = "2024"
rust-version = "1.85.1"
name = "async-selector"
version = "0.4.0"
authors = ["MichaĆ Smolarek <msmolarekg@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast and flexible asynchronous task selector"
readme = "README.md"
keywords = [
"async",
"concurrency",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT"
repository = "https://github.com/Razz4780/async-selector"
[lib]
name = "async_selector"
path = "src/lib.rs"
[[example]]
name = "custom"
path = "examples/custom.rs"
[[example]]
name = "map"
path = "examples/map.rs"
[[example]]
name = "speed"
path = "examples/speed.rs"
[dependencies.futures]
version = "0.3"
[dependencies.static_assertions]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[target."cfg(loom)".dependencies.loom]
version = "0.7"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]