[package]
edition = "2024"
name = "progress_bar"
version = "1.5.1"
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"