diff --git a/Cargo.lock b/Cargo.lock index 4af675c..c0c2e25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -140,7 +140,7 @@ dependencies = [ "clap", "clap_complete", "clicolors-control", - "console 0.13.0", + "console", "const_format", "env_logger", "futures", @@ -166,22 +166,6 @@ dependencies = [ "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]] name = "console" version = "0.15.0" @@ -193,6 +177,7 @@ dependencies = [ "once_cell", "regex", "terminal_size", + "unicode-width", "winapi", ] @@ -236,9 +221,9 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" [[package]] name = "env_logger" -version = "0.8.4" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" +checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" dependencies = [ "atty", "humantime", @@ -427,7 +412,7 @@ name = "indicatif" version = "0.17.0-beta.1" source = "git+https://github.com/mitsuhiko/indicatif?rev=5a38ab70b75be5fc9f4a00c4d9d58adabb817398#5a38ab70b75be5fc9f4a00c4d9d58adabb817398" dependencies = [ - "console 0.15.0", + "console", "number_prefix", "once_cell", "regex", @@ -999,9 +984,9 @@ dependencies = [ [[package]] name = "validator" -version = "0.12.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d6937c33ec6039d8071bcf72933146b5bbe378d645d8fa59bdadabfc2a249" +checksum = "6d0f08911ab0fee2c5009580f04615fa868898ee57de10692a45da0c3bcc3e5e" dependencies = [ "idna", "lazy_static", @@ -1016,9 +1001,9 @@ dependencies = [ [[package]] name = "validator_derive" -version = "0.12.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4286b4497f270f59276a89ae0ad109d5f8f18c69b613e3fb22b61201aadb0c4d" +checksum = "d85135714dba11a1bd0b3eb1744169266f1a38977bf4e3ff5e2e1acb8c2b7eee" dependencies = [ "if_chain", "lazy_static", @@ -1032,9 +1017,13 @@ dependencies = [ [[package]] name = "validator_types" -version = "0.12.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad9680608df133af2c1ddd5eaf1ddce91d60d61b6bc51494ef326458365a470a" +checksum = "ded9d97e1d42327632f5f3bae6403c04886e2de3036261ef42deebd931a6a291" +dependencies = [ + "proc-macro2", + "syn", +] [[package]] name = "version_check" diff --git a/Cargo.toml b/Cargo.toml index cc78ed4..81c83ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,9 @@ atty = "0.2" clap = "3.0.0" clap_complete = "3.0.0" clicolors-control = "1" -console = "0.13.0" +console = "0.15.0" const_format = "0.2.22" -env_logger = "0.8.2" +env_logger = "0.9.0" futures = "0.3.8" glob = "0.3.0" hostname = "0.3.1" @@ -34,7 +34,7 @@ tempfile = "3.1.0" tokio-test = "0.4.0" users = "0.11.0" 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 # Change back to 0.17.0-beta.2 when it releases diff --git a/default.nix b/default.nix index 1e15597..39db837 100644 --- a/default.nix +++ b/default.nix @@ -17,7 +17,7 @@ in rustPlatform.buildRustPackage rec { src = lib.cleanSource ./.; }; - cargoSha256 = "sha256-bSlDE2UkCO4jdTHnvaMdRHMl7HLSIYVpDBMiojmBv7Q="; + cargoSha256 = "sha256-FVHNtgOZCC2aC2ilt1UreDidhiAuunPOO3E9ejJzwmw="; nativeBuildInputs = [ installShellFiles ];