From 9e28e51bbc0c923818198ba85216937c211991e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 21:31:09 +0000 Subject: [PATCH] chore: bump the patch group with 3 updates Bumps the patch group with 3 updates: [anyhow](https://github.com/dtolnay/anyhow), [regex](https://github.com/rust-lang/regex) and [criterion](https://github.com/criterion-rs/criterion.rs). Updates `anyhow` from 1.0.100 to 1.0.101 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.100...1.0.101) Updates `regex` from 1.12.2 to 1.12.3 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.12.2...1.12.3) Updates `criterion` from 0.8.1 to 0.8.2 - [Release notes](https://github.com/criterion-rs/criterion.rs/releases) - [Changelog](https://github.com/criterion-rs/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/criterion-rs/criterion.rs/compare/criterion-v0.8.1...criterion-v0.8.2) --- updated-dependencies: - dependency-name: anyhow dependency-version: 1.0.101 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: regex dependency-version: 1.12.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: criterion dependency-version: 0.8.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 2 +- prqlc/prqlc/Cargo.toml | 6 +++--- web/book/Cargo.toml | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 681690107994..511925aadc1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,9 +143,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.100" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" +checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea" dependencies = [ "backtrace", ] @@ -911,9 +911,9 @@ dependencies = [ [[package]] name = "criterion" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf" +checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3" dependencies = [ "alloca", "anes", @@ -934,9 +934,9 @@ dependencies = [ [[package]] name = "criterion-plot" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4" +checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea" dependencies = [ "cast", "itertools 0.13.0", @@ -3234,9 +3234,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.12.2" +version = "1.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 0ed1652e8431..452daa1c94a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ allow-branch = ["*"] consolidate-commits = true [workspace.dependencies] -anyhow = "1.0.100" +anyhow = "1.0.101" arrow = { version = "53", features = [ "pyarrow", "prettyprint", diff --git a/prqlc/prqlc/Cargo.toml b/prqlc/prqlc/Cargo.toml index 84c92fe4734d..aff22d1b8826 100644 --- a/prqlc/prqlc/Cargo.toml +++ b/prqlc/prqlc/Cargo.toml @@ -63,7 +63,7 @@ csv = "1.4.0" enum-as-inner = { workspace = true } itertools = { workspace = true } log = { workspace = true } -regex = "1.12.2" +regex = "1.12.3" schemars = { workspace = true } semver = { workspace = true } # serde is required for the `from_text` feature of PRQL, so we can't really put @@ -88,7 +88,7 @@ vergen-gitcl = { version = "1.0.0", features = ["build"] } # unique dependencies from the CLI, marked as optional and included in the 'cli' # feature -anyhow = { version = "1.0.100", features = ["backtrace"], optional = true } +anyhow = { version = "1.0.101", features = ["backtrace"], optional = true } clap = { version = "4.5.53", features = [ "derive", "env", @@ -145,7 +145,7 @@ test_each_file = "0.3.6" # criterion 0.8 depends on `alloca` which doesn't support WASM targets [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] -criterion = { version = "0.8.1", default-features = false } +criterion = { version = "0.8.2", default-features = false } # We use `benches/bench.rs` for the benchmark harness so disable searching for # benchmarks in bin & lib here to simplify using criterion diff --git a/web/book/Cargo.toml b/web/book/Cargo.toml index 0c7a57feafb8..f0751d072e6b 100644 --- a/web/book/Cargo.toml +++ b/web/book/Cargo.toml @@ -35,7 +35,7 @@ anstream = { version = "0.6.21" } globset = "0.4.18" insta = { workspace = true } log = { workspace = true } -regex = "1.12.2" +regex = "1.12.3" serde_json = { workspace = true } serde_yaml = { workspace = true } similar-asserts = { workspace = true }