diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 15cca1c1..1a435de7 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -544,9 +544,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-engine" -version = "0.9.0" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abdd934fca13a77d706d45bae8289d7d35f90ff077c99dd7404bda279a3bd3af" +checksum = "2293555112db3ed0d4205f3068396ab86039cf39c73f3a76331cf2dd1ddd52ef" dependencies = [ "async-trait", "base64", @@ -566,6 +566,7 @@ dependencies = [ "serde", "serde_json", "sha2", + "strsim", "termimad", "thiserror", "tokio", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index fb1be1e9..af8cbf8b 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -20,7 +20,7 @@ async-trait = "0.1" bytes = "1" chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] } clap = { version = "4.5", features = ["std", "string"] } -cli-engine = { features = ["pkce-auth"], version = "0.9.0" } +cli-engine = { features = ["pkce-auth"], version = "0.9.3" } dirs = "6" domains-client = { path = "domains-client" } fancy-regex = "0.14"