diff --git a/Cargo.lock b/Cargo.lock index 8e9ad490e..78a34bac5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -902,6 +902,19 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "console" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4" +dependencies = [ + "encode_unicode", + "libc", + "once_cell", + "unicode-width 0.2.2", + "windows-sys 0.61.2", +] + [[package]] name = "const-oid" version = "0.9.6" @@ -2037,15 +2050,14 @@ dependencies = [ [[package]] name = "dialoguer" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" +checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96" dependencies = [ - "console", + "console 0.16.1", "fuzzy-matcher", "shell-words", "tempfile", - "thiserror 1.0.69", "zeroize", ] @@ -4588,7 +4600,7 @@ dependencies = [ "chrono", "cidr", "clap", - "console", + "console 0.15.11", "dashmap 6.1.0", "deno_ast", "deno_core", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8f0dfd30b..88fbd442c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -34,7 +34,7 @@ dashmap = "6.0.1" deno_ast = { version = "0.41.2", features = ["transpiling"], optional = true } deno_core = { version = "0.307.0", optional = true } deno_runtime = { version = "0.177.0", optional = true } -dialoguer = { version = "0.11.0", features = ["fuzzy-select"] } +dialoguer = { version = "0.12.0", features = ["fuzzy-select"] } env_logger = "0.11.6" futures = "^0.3" git2 = { version = "0.20.0", default-features = false }