1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[package]
name = "nutmeg"
version = "0.1.4"
edition = "2021"
description = "An unopinionated progress bar library"
license = "MIT"
repository = "https://github.com/sourcefrog/nutmeg"
keywords = ["progress", "progress-bar", "terminal", "ansi"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atty = "0.2"
parking_lot = "0.12"
terminal_size = "0.2"
yansi = "0.5"
[dev-dependencies]
rand = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3"
[workspace]
members = ["examples/tracing"]
|