aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 9a8ee61be49c1fe50b9ce3d52d331e7f1947e4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "async-task"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v4.x.y" git tag
version = "4.5.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.47"
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.1"
flume = { version = "0.11", default-features = false }
futures-lite = "1.12.0"
once_cell = "1"
pin-project-lite = "0.2.10"
smol = "1"

# rewrite dependencies to use the this version of async-task when running tests
[patch.crates-io]
async-task = { path = "." }