From c1124c77a11c2799d9d75a2c9da358a3c47e6fa7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:22:48 +0000 Subject: [PATCH] chore: bump anstream from 0.3.2 to 0.6.15 in /src/rust Bumps [anstream](https://github.com/rust-cli/anstyle) from 0.3.2 to 0.6.15. - [Commits](https://github.com/rust-cli/anstyle/compare/anstream-v0.3.2...anstream-v0.6.15) --- updated-dependencies: - dependency-name: anstream dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/rust/Cargo.lock | 37 ++++++++++++++++++++++++++++++++++--- src/rust/Cargo.toml | 2 +- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index ebd8591..c18ce6e 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -68,12 +68,27 @@ dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", - "anstyle-wincon", + "anstyle-wincon 1.0.2", "colorchoice", "is-terminal", "utf8parse", ] +[[package]] +name = "anstream" +version = "0.6.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon 3.0.4", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + [[package]] name = "anstyle" version = "1.0.7" @@ -108,6 +123,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "anstyle-wincon" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" +dependencies = [ + "anstyle", + "windows-sys 0.52.0", +] + [[package]] name = "anyhow" version = "1.0.83" @@ -319,6 +344,12 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "is_terminal_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" + [[package]] name = "itertools" version = "0.12.1" @@ -424,7 +455,7 @@ name = "prqlc" version = "0.11.2" source = "git+https://github.com/PRQL/prql?rev=942102b4c3cebd20e62463d22394d39d89b6fb7b#942102b4c3cebd20e62463d22394d39d89b6fb7b" dependencies = [ - "anstream", + "anstream 0.3.2", "anyhow", "ariadne", "chrono", @@ -474,7 +505,7 @@ dependencies = [ name = "prqlr" version = "0.11.3" dependencies = [ - "anstream", + "anstream 0.6.15", "prqlc", "savvy", ] diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index 2f5913b..0322356 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -15,4 +15,4 @@ savvy = "0.6.8" # prqlc 0.11.2 is not compatible with Rust 1.65, so a slightly modified version is installed # See https://github.com/PRQL/prql/pull/4001 prqlc = { git = "https://github.com/PRQL/prql", rev = "942102b4c3cebd20e62463d22394d39d89b6fb7b", default-features = false } -anstream = { version = "0.3.2", features = ["auto"] } +anstream = { version = "0.6.15", features = ["auto"] }