From 94b7bab2bb80138109c76398d12aac53b64fe9f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 10:24:15 +0000 Subject: [PATCH] build(deps): bump anstream from 0.6.21 to 1.0.0 Bumps [anstream](https://github.com/rust-cli/anstyle) from 0.6.21 to 1.0.0. - [Commits](https://github.com/rust-cli/anstyle/compare/anstream-v0.6.21...anstream-v1.0.0) --- updated-dependencies: - dependency-name: anstream dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 +++++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9603ace..370eabb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ name = "am" version = "0.6.3" dependencies = [ - "anstream", + "anstream 1.0.0", "async-trait", "chrono", "clap", @@ -80,7 +80,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" dependencies = [ "anstyle", - "anstyle-parse", + "anstyle-parse 0.2.7", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse 1.0.0", "anstyle-query", "anstyle-wincon", "colorchoice", @@ -103,6 +118,15 @@ dependencies = [ "utf8parse", ] +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + [[package]] name = "anstyle-query" version = "1.1.5" @@ -278,7 +302,7 @@ version = "4.5.59" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24" dependencies = [ - "anstream", + "anstream 0.6.21", "anstyle", "clap_lex", "strsim", diff --git a/Cargo.toml b/Cargo.toml index 8cf59f1..ab3dd7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ homepage = "https://github.com/ryanccn/am" repository = "https://github.com/ryanccn/am.git" [dependencies] -anstream = "0.6.21" +anstream = "1.0.0" async-trait = "0.1.89" chrono = "0.4.43" clap = { version = "4.5.59", features = ["derive"] }