[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-execution-services"
version = "0.6.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/RUST_CODING_STYLE.md",
"/RUST_CODING_STYLE.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/resources/**",
"/src/**",
"/tests/**",
]
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.6"
[dependencies.qubit-function]
version = "0.14"
[dependencies.qubit-rayon-executor]
version = "0.5"
[dependencies.qubit-thread-pool]
version = "0.8"
[dependencies.qubit-tokio-executor]
version = "0.7"
[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",
]