• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "async-task"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v4.x.y" git tag
6version = "4.1.0"
7authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8edition = "2018"
9rust-version = "1.39"
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[dev-dependencies]
22atomic-waker = "1"
23easy-parallel = "3"
24flaky_test = "0.1"
25flume = { version = "0.10", default-features = false }
26once_cell = "1"
27smol = "1"
28
29# rewrite dependencies to use the this version of async-task when running tests
30[patch.crates-io]
31async-task = { path = "." }
32