From 5b979bb4589f3f7d758788fb43d906a460b70567 Mon Sep 17 00:00:00 2001 From: arctic_hen7 Date: Mon, 27 Dec 2021 09:20:27 +1030 Subject: [PATCH] fix(deps): locked `indicatif` to `v0.17.0-beta.1` If they release a new breaking change, this would break production Perseus deployments without this lock (as happened with `clap` during the beta versions of Perseus `v0.3.0`). --- packages/perseus-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/perseus-cli/Cargo.toml b/packages/perseus-cli/Cargo.toml index 23700bbf41..ffcaf657e4 100644 --- a/packages/perseus-cli/Cargo.toml +++ b/packages/perseus-cli/Cargo.toml @@ -23,7 +23,7 @@ include_dir = "0.6" thiserror = "1" fmterr = "0.1" cargo_toml = "0.9" -indicatif = "0.17.0-beta.1" # Not stable, but otherwise error handling is just about impossible +indicatif = "=0.17.0-beta.1" # Not stable, but otherwise error handling is just about impossible console = "0.14" serde = "1" serde_json = "1"