[package]
edition = "2024"
rust-version = "1.87.0"
name = "yash-executor"
version = "1.0.1"
authors = ["WATANABE Yuki <magicant@wonderwand.net>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "single-threaded concurrent task executor"
readme = "README.md"
keywords = [
"concurrency",
"executor",
"single-threaded",
]
categories = [
"asynchronous",
"concurrency",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/magicant/yash-rs"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "yash_executor"
path = "src/lib.rs"
[[test]]
name = "executor"
path = "tests/executor.rs"
[[test]]
name = "forwarder"
path = "tests/forwarder.rs"
[[test]]
name = "spawner"
path = "tests/spawner.rs"
[lints]