[package]
edition = "2024"
name = "async-drop"
version = "0.1.2"
authors = ["fpena2 <fpena2@unh.newhaven.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "simple async drop"
readme = "README.md"
keywords = [
"drop",
"async",
]
categories = ["asynchronous"]
license = "MIT"
repository = "https://github.com/fpena2/async-drop"
[lib]
name = "async_drop"
path = "src/lib.rs"
[[test]]
name = "panic"
path = "tests/panic.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[dependencies.tokio]
version = "1.47.1"
features = ["rt"]
[dev-dependencies.tokio]
version = "1.47.1"
features = [
"macros",
"sync",
"rt-multi-thread",
"time",
]