1[package] 2name = "async-task" 3version = "4.0.3" 4authors = ["Stjepan Glavina <stjepang@gmail.com>"] 5edition = "2018" 6license = "Apache-2.0 OR MIT" 7repository = "https://github.com/smol-rs/async-task" 8homepage = "https://github.com/smol-rs/async-task" 9documentation = "https://docs.rs/async-task" 10description = "Task abstraction for building executors" 11keywords = ["futures", "task", "executor", "spawn"] 12categories = ["asynchronous", "concurrency", "no-std"] 13 14[features] 15default = ["std"] 16std = [] 17 18[dev-dependencies] 19atomic-waker = "1.0.0" 20easy-parallel = "3.1.0" 21flume = { version = "0.10", default-features = false } 22once_cell = "1.4.1" 23smol = "1.0.1" 24