event-listener/Cargo.toml

47 lines
994 B
TOML

[package]
name = "event-listener"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.5.3"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.39"
description = "Notify async tasks or threads"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/event-listener"
keywords = ["condvar", "eventcount", "wake", "blocking", "park"]
categories = ["asynchronous", "concurrency"]
exclude = ["/.*"]
[features]
default = ["std"]
std = ["parking"]
# Unstable, test only feature. Do not enable this.
__test = []
[dependencies]
crossbeam-utils = { version = "0.8.12", default-features = false }
parking = { version = "2.0", optional = true }
[dev-dependencies]
waker-fn = "1"
[dev-dependencies.criterion]
version = "0.4"
default-features = false
features = ["cargo_bench_support"]
[[bench]]
name = "bench"
harness = false
[lib]
bench = false
[profile.release]
codegen-units = 1
debug = 1
lto = "thin"