[package]
edition = "2024"
name = "plyne"
version = "0.2.0"
authors = ["xiao-e-yun <a0970323059@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Based pipeline of async task system"
readme = "README.md"
keywords = [
"async",
"pipeline",
"task",
]
categories = ["asynchronous"]
license = "BSD-3-Clause"
repository = "https://github.com/xiao-e-yun/Plyne"
[lib]
name = "plyne"
path = "src/lib.rs"
[[test]]
name = "tasks"
path = "tests/tasks.rs"
[dependencies.futures]
version = "0.3"
[dependencies.magic-params]
version = "0.1.1"
[dependencies.paste]
version = "1"
[dependencies.take-once]
version = "0.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"sync",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"sync",
"rt",
"time",
]