[package]
name = "dev-async"
version = "0.9.0"
edition = "2021"
rust-version = "1.85"
readme = "README.md"
license = "Apache-2.0"
authors = [
"James Gober <me@jamesgober.com>"
]
description = "Async-specific validation for Rust. Deadlocks, task leaks, hung futures, graceful shutdown. Part of the dev-* verification suite."
keywords = [
"async",
"tokio",
"deadlock",
"verification",
"ai-tools"
]
categories = [
"development-tools",
"development-tools::testing",
"asynchronous"
]
documentation = "https://docs.rs/dev-async"
repository = "https://github.com/jamesgober/dev-async"
homepage = "https://github.com/jamesgober/dev-async"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
dev-report = { version = "0.9", path = "../dev-report" }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "sync", "time", "macros"] }
pin-project-lite = { version = "0.2", optional = true }
[dev-dependencies]
[features]
default = []
block-detect = ["dep:pin-project-lite"]
[profile.release]
opt-level = 3
lto = "thin"