future-timing 0.1.0

Future timing instrumentation. Instrumentation to record the busy and idle time taken by a future as it is driven to completion.
Documentation
[dependencies.pin-project-lite]
version = "0.2"

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

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

[lints.clippy]
cargo = "deny"
complexity = "deny"
pedantic = "deny"
perf = "deny"
style = "deny"

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"

[lints.rustdoc]
all = "deny"

[package]
authors = ["Hayden Stainsby <hds@caffeineconcepts.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::debugging", "development-tools::profiling"]
description = """
Future timing instrumentation.

Instrumentation to record the busy and idle time taken by a future as it is driven to
completion.
"""
edition = "2021"
homepage = "https://github.com/hds/future-timing"
keywords = ["debugging", "async", "timing"]
license = "MIT"
name = "future-timing"
readme = "README.md"
repository = "https://github.com/hds/future-timing"
rust-version = "1.70.0"
version = "0.1.0"

[[test]]
name = "tokio"
path = "tests/tokio.rs"