[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-executor"
version = "0.1.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
exclude = [
"coverage.sh",
"COVERAGE.md",
"COVERAGE.zh_CN.md",
".circleci/*",
"ci-check.sh",
".llvm-cov.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Executor abstractions, task handles, and basic executor implementations for Qubit Rust libraries"
homepage = "https://github.com/qubit-ltd/rs-executor"
documentation = "https://docs.rs/qubit-executor"
readme = "README.md"
keywords = [
"executor",
"task",
"concurrency",
"service",
]
categories = [
"concurrency",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-executor"
[lib]
name = "qubit_executor"
path = "src/lib.rs"
doctest = true
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "task_execution_error_tests"
path = "tests/task_execution_error_tests.rs"
[dependencies.qubit-atomic]
version = "0.10"
[dependencies.qubit-function]
version = "0.10"
[dependencies.qubit-lock]
version = "0.3"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"time",
]