pulsebar 0.2.1

Elegant progress reporting for Rust CLIs
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "pulsebar"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Elegant progress reporting for Rust CLIs"
readme = "README.md"
keywords = [
    "cli",
    "progress",
    "terminal",
    "spinner",
    "progress-bar",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/mihailShumilov/pulsebar"

[features]
default = []
tokio = ["dep:tokio"]

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

[[example]]
name = "async_usage"
path = "examples/async_usage.rs"
required-features = ["tokio"]

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "render"
path = "benches/render.rs"
harness = false

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "time",
    "sync",
]
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

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

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = ["Win32_System_Console"]