[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-executor"
version = "0.3.3"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
exclude = [
"align-ci.sh",
"ci-check.sh",
"coverage.sh",
"style-check.sh",
"update-submodule.sh",
".github/*",
".llvm-cov.toml",
".cargo-audit.toml.example",
]
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"
[dependencies.log]
version = "0.4"
[dependencies.oneshot]
version = "0.2"
features = [
"async",
"std",
]
[dependencies.parking_lot]
version = "0.12"
[dependencies.qubit-atomic]
version = "0.11"
[dependencies.qubit-cas]
version = "0.6"
[dependencies.qubit-function]
version = "0.13"
[dependencies.qubit-lock]
version = "0.5"
[dependencies.qubit-state-machine]
version = "0.3"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"time",
]