async-task/Cargo.toml

38 lines
1023 B
TOML
Raw Permalink Normal View History

2019-08-12 18:18:51 +00:00
[package]
name = "async-task"
2022-01-08 13:14:07 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v4.x.y" git tag
version = "4.7.1"
2019-08-12 18:18:51 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
2024-01-07 04:11:42 +00:00
edition = "2021"
rust-version = "1.57"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/async-task"
2019-08-12 18:18:51 +00:00
description = "Task abstraction for building executors"
2019-08-12 18:29:48 +00:00
keywords = ["futures", "task", "executor", "spawn"]
2020-01-08 07:10:53 +00:00
categories = ["asynchronous", "concurrency", "no-std"]
2022-01-08 13:11:37 +00:00
exclude = ["/.*"]
2019-08-12 18:18:51 +00:00
2020-04-15 16:36:47 +00:00
[features]
default = ["std"]
std = []
2019-08-12 18:18:51 +00:00
[dependencies]
# Uses portable-atomic polyfill atomics on targets without them
portable-atomic = { version = "1", optional = true, default-features = false }
2019-08-12 18:18:51 +00:00
[dev-dependencies]
2022-01-10 03:01:14 +00:00
atomic-waker = "1"
easy-parallel = "3"
flaky_test = "0.2"
flume = { version = "0.11", default-features = false }
futures-lite = "2.0.0"
2022-01-10 03:01:14 +00:00
once_cell = "1"
pin-project-lite = "0.2.10"
smol = "2"
2022-01-21 21:02:12 +00:00
# rewrite dependencies to use the this version of async-task when running tests
[patch.crates-io]
async-task = { path = "." }