[package] name = "async-task" # When publishing a new version: # - Update CHANGELOG.md # - Create "v4.x.y" git tag version = "4.7.1" authors = ["Stjepan Glavina "] edition = "2021" rust-version = "1.57" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/async-task" description = "Task abstraction for building executors" keywords = ["futures", "task", "executor", "spawn"] categories = ["asynchronous", "concurrency", "no-std"] exclude = ["/.*"] [features] default = ["std"] std = [] [dependencies] # Uses portable-atomic polyfill atomics on targets without them portable-atomic = { version = "1", optional = true, default-features = false } [dev-dependencies] atomic-waker = "1" easy-parallel = "3" flaky_test = "0.2" flume = { version = "0.11", default-features = false } futures-lite = "2.0.0" once_cell = "1" pin-project-lite = "0.2.10" smol = "2" # rewrite dependencies to use the this version of async-task when running tests [patch.crates-io] async-task = { path = "." }