Update other deps

This commit is contained in:
Zhaofeng Li 2022-01-03 10:37:03 -08:00
parent 81e2982bbb
commit 3ea320b355
3 changed files with 19 additions and 30 deletions

41
Cargo.lock generated
View file

@ -140,7 +140,7 @@ dependencies = [
"clap", "clap",
"clap_complete", "clap_complete",
"clicolors-control", "clicolors-control",
"console 0.13.0", "console",
"const_format", "const_format",
"env_logger", "env_logger",
"futures", "futures",
@ -166,22 +166,6 @@ dependencies = [
"validator", "validator",
] ]
[[package]]
name = "console"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a50aab2529019abfabfa93f1e6c41ef392f91fbf179b347a7e96abb524884a08"
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
"regex",
"terminal_size",
"unicode-width",
"winapi",
"winapi-util",
]
[[package]] [[package]]
name = "console" name = "console"
version = "0.15.0" version = "0.15.0"
@ -193,6 +177,7 @@ dependencies = [
"once_cell", "once_cell",
"regex", "regex",
"terminal_size", "terminal_size",
"unicode-width",
"winapi", "winapi",
] ]
@ -236,9 +221,9 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]] [[package]]
name = "env_logger" name = "env_logger"
version = "0.8.4" version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
dependencies = [ dependencies = [
"atty", "atty",
"humantime", "humantime",
@ -427,7 +412,7 @@ name = "indicatif"
version = "0.17.0-beta.1" version = "0.17.0-beta.1"
source = "git+https://github.com/mitsuhiko/indicatif?rev=5a38ab70b75be5fc9f4a00c4d9d58adabb817398#5a38ab70b75be5fc9f4a00c4d9d58adabb817398" source = "git+https://github.com/mitsuhiko/indicatif?rev=5a38ab70b75be5fc9f4a00c4d9d58adabb817398#5a38ab70b75be5fc9f4a00c4d9d58adabb817398"
dependencies = [ dependencies = [
"console 0.15.0", "console",
"number_prefix", "number_prefix",
"once_cell", "once_cell",
"regex", "regex",
@ -999,9 +984,9 @@ dependencies = [
[[package]] [[package]]
name = "validator" name = "validator"
version = "0.12.0" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "841d6937c33ec6039d8071bcf72933146b5bbe378d645d8fa59bdadabfc2a249" checksum = "6d0f08911ab0fee2c5009580f04615fa868898ee57de10692a45da0c3bcc3e5e"
dependencies = [ dependencies = [
"idna", "idna",
"lazy_static", "lazy_static",
@ -1016,9 +1001,9 @@ dependencies = [
[[package]] [[package]]
name = "validator_derive" name = "validator_derive"
version = "0.12.0" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4286b4497f270f59276a89ae0ad109d5f8f18c69b613e3fb22b61201aadb0c4d" checksum = "d85135714dba11a1bd0b3eb1744169266f1a38977bf4e3ff5e2e1acb8c2b7eee"
dependencies = [ dependencies = [
"if_chain", "if_chain",
"lazy_static", "lazy_static",
@ -1032,9 +1017,13 @@ dependencies = [
[[package]] [[package]]
name = "validator_types" name = "validator_types"
version = "0.12.0" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad9680608df133af2c1ddd5eaf1ddce91d60d61b6bc51494ef326458365a470a" checksum = "ded9d97e1d42327632f5f3bae6403c04886e2de3036261ef42deebd931a6a291"
dependencies = [
"proc-macro2",
"syn",
]
[[package]] [[package]]
name = "version_check" name = "version_check"

View file

@ -13,9 +13,9 @@ atty = "0.2"
clap = "3.0.0" clap = "3.0.0"
clap_complete = "3.0.0" clap_complete = "3.0.0"
clicolors-control = "1" clicolors-control = "1"
console = "0.13.0" console = "0.15.0"
const_format = "0.2.22" const_format = "0.2.22"
env_logger = "0.8.2" 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"
@ -34,7 +34,7 @@ tempfile = "3.1.0"
tokio-test = "0.4.0" tokio-test = "0.4.0"
users = "0.11.0" users = "0.11.0"
uuid = { version = "0.8.2", features = ["serde", "v4"] } uuid = { version = "0.8.2", features = ["serde", "v4"] }
validator = { version = "0.12", features = ["derive"] } validator = { version = "0.14", features = ["derive"] }
# For https://github.com/mitsuhiko/indicatif/pull/325 # For https://github.com/mitsuhiko/indicatif/pull/325
# Change back to 0.17.0-beta.2 when it releases # Change back to 0.17.0-beta.2 when it releases

View file

@ -17,7 +17,7 @@ in rustPlatform.buildRustPackage rec {
src = lib.cleanSource ./.; src = lib.cleanSource ./.;
}; };
cargoSha256 = "sha256-bSlDE2UkCO4jdTHnvaMdRHMl7HLSIYVpDBMiojmBv7Q="; cargoSha256 = "sha256-FVHNtgOZCC2aC2ilt1UreDidhiAuunPOO3E9ejJzwmw=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];