forked from console-rs/indicatif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "indicatif"
description = "A progress bar and cli reporting library for Rust"
version = "0.17.4"
keywords = ["cli", "progress", "pb", "colors", "progressbar"]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/console-rs/indicatif"
documentation = "https://docs.rs/indicatif"
readme = "README.md"
edition = "2018"
exclude = ["screenshots/*"]
rust-version = "1.62.1"
[dependencies]
console = { version = "0.15", default-features = false, features = ["ansi-parsing"] }
number_prefix = "0.4"
portable-atomic = "1.0.0"
rayon = { version = "1.1", optional = true }
tokio = { version = "1", optional = true, features = ["io-util"] }
unicode-segmentation = { version = "1", optional = true }
unicode-width = { version = "0.1", optional = true }
vt100 = { version = "0.15.1", optional = true }
[dev-dependencies]
clap = { version = "4", features = ["color", "derive"] }
once_cell = "1"
rand = "0.8"
tokio = { version = "1", features = ["fs", "time", "rt"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
instant = "0.1"
[features]
default = ["unicode-width", "console/unicode-width"]
improved_unicode = ["unicode-segmentation", "unicode-width", "console/unicode-width"]
in_memory = ["vt100"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]