From a4a3c514ba5a47c91a0851a960b558e5335ed578 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Thu, 26 Jun 2025 23:31:07 +0200 Subject: [PATCH] Bump `strip-ansi-escapes` to deduplicate `vte` (#16054) Updating here deduplicates `vte` which is also depended on by `ansitok` from the `tabled`/zhiburt-cinematic-universe --- Cargo.lock | 28 ++++------------------------ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 40cd6134ee..86241fecb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,7 +112,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0a8acea8c2f1c60f0a92a8cd26bf96ca97db56f10bbcab238bbe0cceba659ee" dependencies = [ "nom 7.1.3", - "vte 0.14.1", + "vte", ] [[package]] @@ -6936,11 +6936,11 @@ dependencies = [ [[package]] name = "strip-ansi-escapes" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa" +checksum = "2a8f8038e7e7969abb3f1b7c2a811225e9296da208539e0f79c5251d6cac0025" dependencies = [ - "vte 0.11.1", + "vte", ] [[package]] @@ -7925,16 +7925,6 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" -[[package]] -name = "vte" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197" -dependencies = [ - "utf8parse", - "vte_generate_state_changes", -] - [[package]] name = "vte" version = "0.14.1" @@ -7945,16 +7935,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "vte_generate_state_changes" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e369bee1b05d510a7b4ed645f5faa90619e05437111783ea5848f28d97d3c2e" -dependencies = [ - "proc-macro2", - "quote", -] - [[package]] name = "wait-timeout" version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index 4c49039e60..798afd2f67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -156,7 +156,7 @@ serde_json = "1.0.97" serde_urlencoded = "0.7.1" serde_yaml = "0.9.33" sha2 = "0.10" -strip-ansi-escapes = "0.2.0" +strip-ansi-escapes = "0.2.1" strum = "0.26" strum_macros = "0.26" syn = "2.0"