progressor 0.0.1

A modern, async-first progress tracking library
Documentation
[dependencies.async-broadcast]
optional = true
version = "0.7.2"

[dependencies.futures-core]
default-features = false
version = "0.3.31"

[dependencies.pin-project-lite]
optional = true
version = "0.2.16"

[dev-dependencies.futures-util]
version = "0.3"

[dev-dependencies.tokio]
features = ["time", "macros", "rt", "rt-multi-thread"]
version = "1.0"

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

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

[features]
default = ["std"]
std = ["dep:async-broadcast", "dep:pin-project-lite"]

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

[lints.clippy]
all = "warn"
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"

[lints.rust]
missing_docs = "warn"

[package]
authors = ["Lexo Liu <me@lexo.cool>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "development-tools"]
description = "A modern, async-first progress tracking library"
edition = "2021"
exclude = [".github/", ".gitignore", "target/"]
keywords = ["async", "progress", "tracking", "stream"]
license = "MIT"
name = "progressor"
readme = "README.md"
repository = "https://github.com/lexoliu/progressor"
version = "0.0.1"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]