[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-execution-services"
version = "0.5.0"
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 = "Aggregated execution services facade for blocking, CPU-bound, Tokio blocking, and async IO tasks"
homepage = "https://github.com/qubit-ltd/rs-execution-services"
documentation = "https://docs.rs/qubit-execution-services"
readme = "README.md"
keywords = [
"executor",
"service",
"tokio",
"rayon",
"thread-pool",
]
categories = [
"concurrency",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-execution-services"
[lib]
name = "qubit_execution_services"
path = "src/lib.rs"
doctest = true
[[test]]
name = "execution_services_build_error_tests"
path = "tests/execution_services_build_error_tests.rs"
[[test]]
name = "execution_services_builder_tests"
path = "tests/execution_services_builder_tests.rs"
[[test]]
name = "execution_services_stop_report_tests"
path = "tests/execution_services_stop_report_tests.rs"
[[test]]
name = "execution_services_tests"
path = "tests/execution_services_tests.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.qubit-executor]
version = "0.5.1"
[dependencies.qubit-function]
version = "0.13"
[dependencies.qubit-rayon-executor]
version = "0.4.1"
[dependencies.qubit-thread-pool]
version = "0.7.1"
[dependencies.qubit-tokio-executor]
version = "0.6.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.52"
features = [
"rt",
"time",
]
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"time",
]