[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-tokio-executor"
version = "0.1.2"
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",
".cargo-audit.toml.example",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tokio-backed executor and executor service implementations for Qubit Rust libraries"
homepage = "https://github.com/qubit-ltd/rs-tokio-executor"
documentation = "https://docs.rs/qubit-tokio-executor"
readme = "README.md"
keywords = [
"tokio",
"executor",
"async",
"concurrency",
]
categories = [
"concurrency",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-tokio-executor"
[lib]
name = "qubit_tokio_executor"
path = "src/lib.rs"
doctest = true
[[test]]
name = "tokio_blocking_executor_service_tests"
path = "tests/tokio_blocking_executor_service_tests.rs"
[[test]]
name = "tokio_executor_service_shutdown_tests"
path = "tests/tokio_executor_service_shutdown_tests.rs"
[[test]]
name = "tokio_executor_service_submit_tests"
path = "tests/tokio_executor_service_submit_tests.rs"
[[test]]
name = "tokio_executor_tests"
path = "tests/tokio_executor_tests.rs"
[[test]]
name = "tokio_io_executor_service_shutdown_tests"
path = "tests/tokio_io_executor_service_shutdown_tests.rs"
[[test]]
name = "tokio_io_executor_service_spawn_tests"
path = "tests/tokio_io_executor_service_spawn_tests.rs"
[[test]]
name = "tokio_io_task_handle_tests"
path = "tests/tokio_io_task_handle_tests.rs"
[[test]]
name = "tokio_task_handle_tests"
path = "tests/tokio_task_handle_tests.rs"
[dependencies.qubit-atomic]
version = "0.10"
[dependencies.qubit-executor]
version = "0.1"
[dependencies.qubit-function]
version = "0.11"
[dependencies.tokio]
version = "1.52"
features = [
"rt",
"sync",
]
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"time",
]