[package]
edition = "2021"
rust-version = "1.71"
name = "almost-enough"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Batteries-included ergonomic extensions for the `enough` cooperative cancellation crate"
readme = "README.md"
keywords = [
"cancellation",
"cooperative",
"async",
"ffi",
"no_std",
]
categories = [
"concurrency",
"no-std",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/imazen/enough"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "almost_enough"
path = "src/lib.rs"
[[bench]]
name = "stop_check"
path = "benches/stop_check.rs"
harness = false
[dependencies.enough]
version = "0.4.0"
default-features = false
[dev-dependencies.criterion]
version = "0.5"
default-features = false