[package]
edition = "2021"
rust-version = "1.56"
name = "busybeaver"
version = "0.1.5"
authors = ["https://github.com/0barman"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This Beaver executes your Futures independently of your worker threads, supporting scheduling strategies such as time intervals, execution count intervals, specific-time polling policies, and more."
homepage = "https://github.com/0barman/busybeaver"
documentation = "https://docs.rs/busybeaver"
readme = "README.md"
keywords = [
"async",
"retry",
"executor",
"task",
"scheduler",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0barman/busybeaver"
[lib]
name = "busybeaver"
path = "src/lib.rs"
[[test]]
name = "beaver_tests"
path = "tests/beaver_tests.rs"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "fixed_count_task_tests"
path = "tests/fixed_count_task_tests.rs"
[[test]]
name = "listener_tests"
path = "tests/listener_tests.rs"
[[test]]
name = "panic_crash_tests"
path = "tests/panic_crash_tests.rs"
[[test]]
name = "periodic_task_tests"
path = "tests/periodic_task_tests.rs"
[[test]]
name = "range_interval_task_tests"
path = "tests/range_interval_task_tests.rs"
[[test]]
name = "send_sync_tests"
path = "tests/send_sync_tests.rs"
[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"
[[test]]
name = "task_api_tests"
path = "tests/task_api_tests.rs"
[[test]]
name = "time_interval_task_tests"
path = "tests/time_interval_task_tests.rs"
[[test]]
name = "work_ctx_tests"
path = "tests/work_ctx_tests.rs"
[[test]]
name = "work_tests"
path = "tests/work_tests.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.tokio]
version = "1.50.0"
features = [
"rt-multi-thread",
"sync",
"time",
]
default-features = false
[dependencies.uuid]
version = "1.22.0"
features = [
"v4",
"std",
]
default-features = false
[dev-dependencies.tokio]
version = "1.50.0"
features = ["macros"]
[profile.release]
lto = true
codegen-units = 1
strip = true