progress_bar 1.5.0

A simple and elegant crate for displaying progress bars in the terminal. It can estimate and display the remaining time, and includes logging utilities that integrate cleanly with your progress bar output.
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 = "progress_bar"
version = "1.5.0"
authors = ["Mubelotix <mubelotix@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple and elegant crate for displaying progress bars in the terminal. It can estimate and display the remaining time, and includes logging utilities that integrate cleanly with your progress bar output."
readme = "README.md"
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/Mubelotix/progress-bar"

[features]
default = []
logger = ["log"]

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

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

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

[[test]]
name = "test-global"
path = "tests/test-global.rs"

[dependencies.log]
version = "0.4"
optional = true

[dev-dependencies.env_logger]
version = "0.11"