1[package] 2name = "async-task" 3# When publishing a new version: 4# - Update CHANGELOG.md 5# - Create "v4.x.y" git tag 6version = "4.5.0" 7authors = ["Stjepan Glavina <stjepang@gmail.com>"] 8edition = "2018" 9rust-version = "1.47" 10license = "Apache-2.0 OR MIT" 11repository = "https://github.com/smol-rs/async-task" 12description = "Task abstraction for building executors" 13keywords = ["futures", "task", "executor", "spawn"] 14categories = ["asynchronous", "concurrency", "no-std"] 15exclude = ["/.*"] 16 17[features] 18default = ["std"] 19std = [] 20 21[dependencies] 22# Uses portable-atomic polyfill atomics on targets without them 23portable-atomic = { version = "1", optional = true, default-features = false } 24 25[dev-dependencies] 26atomic-waker = "1" 27easy-parallel = "3" 28flaky_test = "0.1" 29flume = { version = "0.11", default-features = false } 30futures-lite = "1.12.0" 31once_cell = "1" 32pin-project-lite = "0.2.10" 33smol = "1" 34 35# rewrite dependencies to use the this version of async-task when running tests 36[patch.crates-io] 37async-task = { path = "." } 38