Cargo.toml: Update indicatif to 0.17.0-rc.1

This commit is contained in:
Zhaofeng Li 2022-01-05 14:01:05 -08:00
parent da7907c874
commit 2dbe2b1440
3 changed files with 5 additions and 9 deletions

7
Cargo.lock generated
View file

@ -398,13 +398,12 @@ dependencies = [
[[package]] [[package]]
name = "indicatif" name = "indicatif"
version = "0.17.0-beta.1" version = "0.17.0-rc.1"
source = "git+https://github.com/mitsuhiko/indicatif?rev=5a38ab70b75be5fc9f4a00c4d9d58adabb817398#5a38ab70b75be5fc9f4a00c4d9d58adabb817398" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c112b1e714737c51fa137aaf6ae2cdf6960d01895e096a6feb1e0afd192c790d"
dependencies = [ dependencies = [
"console", "console",
"number_prefix", "number_prefix",
"once_cell",
"regex",
] ]
[[package]] [[package]]

View file

@ -18,6 +18,7 @@ env_logger = "0.9.0"
futures = "0.3.8" futures = "0.3.8"
glob = "0.3.0" glob = "0.3.0"
hostname = "0.3.1" hostname = "0.3.1"
indicatif = "0.17.0-rc.1"
itertools = "0.10.1" itertools = "0.10.1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
libc = "0.2.81" libc = "0.2.81"
@ -35,10 +36,6 @@ users = "0.11.0"
uuid = { version = "0.8.2", features = ["serde", "v4"] } uuid = { version = "0.8.2", features = ["serde", "v4"] }
validator = { version = "0.14", features = ["derive"] } validator = { version = "0.14", features = ["derive"] }
# For https://github.com/mitsuhiko/indicatif/pull/325
# Change back to 0.17.0-beta.2 when it releases
indicatif = { git = "https://github.com/mitsuhiko/indicatif", rev = "5a38ab70b75be5fc9f4a00c4d9d58adabb817398" }
[dependencies.tokio] [dependencies.tokio]
version = "1.0.0" version = "1.0.0"
features = [ features = [

View file

@ -17,7 +17,7 @@ in rustPlatform.buildRustPackage rec {
src = lib.cleanSource ./.; src = lib.cleanSource ./.;
}; };
cargoSha256 = "sha256-rJnPo8xmasRNOYttDuG80QqfKyeEcl7gn85dvYgeOpw="; cargoSha256 = "sha256-UUDKAY5zOm/okdRN9Bh+1OgPJFnd1Gw5VMd/+/P46jQ=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];