Bug 1797755 - Part 5: Use a single initial mark stack size regardless of whether...
[gecko.git] / third_party / rust / async-task / Cargo.toml
blobd87c0ff2f7a2c016f0e9c1178ecf3545aea92782
1 [package]
2 name = "async-task"
3 # When publishing a new version:
4 # - Update CHANGELOG.md
5 # - Create "v4.x.y" git tag
6 version = "4.0.3"
7 authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8 edition = "2018"
9 rust-version = "1.39"
10 license = "Apache-2.0 OR MIT"
11 repository = "https://github.com/smol-rs/async-task"
12 description = "Task abstraction for building executors"
13 keywords = ["futures", "task", "executor", "spawn"]
14 categories = ["asynchronous", "concurrency", "no-std"]
15 exclude = ["/.*"]
17 [features]
18 default = ["std"]
19 std = []
21 [dev-dependencies]
22 atomic-waker = "1"
23 easy-parallel = "3"
24 flaky_test = "0.1"
25 flume = { version = "0.10", default-features = false }
26 once_cell = "1"
27 smol = "1"
29 # rewrite dependencies to use the this version of async-task when running tests
30 [patch.crates-io]
31 async-task = { path = "." }