32 lines
813 B
TOML
32 lines
813 B
TOML
[package]
|
|
name = "async-task"
|
|
# When publishing a new version:
|
|
# - Update CHANGELOG.md
|
|
# - Create "v4.x.y" git tag
|
|
version = "4.1.0"
|
|
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
|
|
edition = "2018"
|
|
rust-version = "1.39"
|
|
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 = []
|
|
|
|
[dev-dependencies]
|
|
atomic-waker = "1"
|
|
easy-parallel = "3"
|
|
flaky_test = "0.1"
|
|
flume = { version = "0.10", default-features = false }
|
|
once_cell = "1"
|
|
smol = "1"
|
|
|
|
# rewrite dependencies to use the this version of async-task when running tests
|
|
[patch.crates-io]
|
|
async-task = { path = "." }
|