testkit-async 0.0.1

Practical testing tools for async Rust - time control, deterministic execution, and failure injection
Documentation
[dependencies.async-std]
optional = true
version = "1.12"

[dependencies.futures]
version = "0.3"

[dependencies.parking_lot]
version = "0.12"

[dependencies.pin-project]
version = "1.1"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["time", "rt", "macros"]
optional = true
version = "1.35"

[dev-dependencies.async-std]
features = ["attributes"]
version = "1.12"

[dev-dependencies.tokio]
features = ["full"]
version = "1.35"

[[example]]
name = "failure_injection"
path = "examples/failure_injection.rs"

[[example]]
name = "sync_points"
path = "examples/sync_points.rs"

[[example]]
name = "time_control"
path = "examples/time_control.rs"

[features]
async-std = ["dep:async-std"]
default = ["tokio"]
full = ["tokio", "async-std"]
tokio = ["dep:tokio"]

[lib]
name = "testkit_async"
path = "src/lib.rs"

[package]
authors = ["Ibrahim Cesar <email@ibrahimcesar.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "development-tools::testing"]
description = "Practical testing tools for async Rust - time control, deterministic execution, and failure injection"
documentation = "https://docs.rs/testkit-async"
edition = "2021"
homepage = "https://github.com/ibrahimcesar/testkit-async"
keywords = ["async", "testing", "mock", "test", "tokio"]
license = "MIT"
name = "testkit-async"
readme = "README.md"
repository = "https://github.com/ibrahimcesar/testkit-async"
rust-version = "1.70"
version = "0.0.1"

[profile.dev]
opt-level = 0

[profile.test]
opt-level = 1