From 5648c09d3285309a48eb3d289778fe8e76cab202 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Feb 2026 20:03:14 +0000 Subject: [PATCH] build(deps): bump anyhow from 1.0.101 to 1.0.102 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.101 to 1.0.102. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.101...1.0.102) --- updated-dependencies: - dependency-name: anyhow dependency-version: 1.0.102 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- bins/bjs/Cargo.toml | 2 +- bins/dfagen/Cargo.toml | 2 +- bins/esgrammar/Cargo.toml | 2 +- bins/estree/Cargo.toml | 2 +- bins/jsoncmp/Cargo.toml | 2 +- bins/lalrgen/Cargo.toml | 2 +- bins/lmp/Cargo.toml | 2 +- bins/logview/Cargo.toml | 2 +- bins/test262/Cargo.toml | 2 +- libs/htmlparser/Cargo.toml | 2 +- libs/htmltokenizer/Cargo.toml | 2 +- libs/jsparser/Cargo.toml | 2 +- libs/layout/Cargo.toml | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80ef7fb1..c4fb4e78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -93,9 +93,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.101" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "arbitrary" diff --git a/bins/bjs/Cargo.toml b/bins/bjs/Cargo.toml index a6512233..d92f4e68 100644 --- a/bins/bjs/Cargo.toml +++ b/bins/bjs/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" clap = { version = "4.5.60", features = ["env", "derive", "wrap_help"] } cranelift-codegen = "0.128.3" cranelift-reader = "0.128.3" diff --git a/bins/dfagen/Cargo.toml b/bins/dfagen/Cargo.toml index 168e482b..d1d0bbcf 100644 --- a/bins/dfagen/Cargo.toml +++ b/bins/dfagen/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" base = { path = "../../libs/base" } clap = { version = "4.5.60", features = ["derive", "env"] } indexmap = { version = "2.13.0", features = ["serde"] } diff --git a/bins/esgrammar/Cargo.toml b/bins/esgrammar/Cargo.toml index 7c273a25..f2232ee5 100644 --- a/bins/esgrammar/Cargo.toml +++ b/bins/esgrammar/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" clap = { version = "4.5.60", features = ["derive"] } htmlparser = { path = "../../libs/htmlparser" } toydom = { path = "../../libs/toydom" } diff --git a/bins/estree/Cargo.toml b/bins/estree/Cargo.toml index c919a3b1..84178bcf 100644 --- a/bins/estree/Cargo.toml +++ b/bins/estree/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" assert-json-diff = "2.0.2" clap = { version = "4.5.60", features = ["env", "derive", "wrap_help"] } jsparser = { path = "../../libs/jsparser", features = ["location"] } diff --git a/bins/jsoncmp/Cargo.toml b/bins/jsoncmp/Cargo.toml index 407efc6b..c3aa73d2 100644 --- a/bins/jsoncmp/Cargo.toml +++ b/bins/jsoncmp/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" assert-json-diff = "2.0.2" clap = { version = "4.5.60", features = ["env", "derive", "wrap_help"] } serde = { version = "1.0.228", features = ["derive"] } diff --git a/bins/lalrgen/Cargo.toml b/bins/lalrgen/Cargo.toml index 2acc7141..550da31f 100644 --- a/bins/lalrgen/Cargo.toml +++ b/bins/lalrgen/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" base = { path = "../../libs/base" } clap = { version = "4.5.60", features = ["derive", "env"] } dashmap = "6.1.0" diff --git a/bins/lmp/Cargo.toml b/bins/lmp/Cargo.toml index 2ce27fd5..1b9332b3 100644 --- a/bins/lmp/Cargo.toml +++ b/bins/lmp/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" clap = { version = "4.5.60", features = ["env", "derive", "wrap_help"] } layout = { path = "../../libs/layout", features = ["service"] } serde_json = "1.0.149" diff --git a/bins/logview/Cargo.toml b/bins/logview/Cargo.toml index 6059171b..a8df5819 100644 --- a/bins/logview/Cargo.toml +++ b/bins/logview/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" async-stream = "0.3.6" axum = "0.8.8" bytes = "1.11.1" diff --git a/bins/test262/Cargo.toml b/bins/test262/Cargo.toml index b78c19bd..87ef00e5 100644 --- a/bins/test262/Cargo.toml +++ b/bins/test262/Cargo.toml @@ -10,7 +10,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" clap = { version = "4.5.60", features = ["env", "derive", "wrap_help"] } humantime = "2.3.0" indicatif = "0.18.4" diff --git a/libs/htmlparser/Cargo.toml b/libs/htmlparser/Cargo.toml index 717fc00b..399d75c9 100644 --- a/libs/htmlparser/Cargo.toml +++ b/libs/htmlparser/Cargo.toml @@ -18,7 +18,7 @@ thiserror = "2.0.18" unicase = "2.9.0" [dev-dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" criterion = "0.8.2" ctor = "0.6.3" itertools = "0.14.0" diff --git a/libs/htmltokenizer/Cargo.toml b/libs/htmltokenizer/Cargo.toml index 5444bcb3..1b96321c 100644 --- a/libs/htmltokenizer/Cargo.toml +++ b/libs/htmltokenizer/Cargo.toml @@ -15,7 +15,7 @@ logging = { path = "../logging" } thiserror = "2.0.18" [dev-dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" assert_matches = "1.5.0" serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.149" diff --git a/libs/jsparser/Cargo.toml b/libs/jsparser/Cargo.toml index af1b614c..2f837af3 100644 --- a/libs/jsparser/Cargo.toml +++ b/libs/jsparser/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "2.0.18" unicode-id-start = "1.4.0" [dev-dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" assert_matches = "1.5.0" clap = { version = "4.5.60", features = ["env", "derive", "wrap_help"] } ctor = "0.6.3" diff --git a/libs/layout/Cargo.toml b/libs/layout/Cargo.toml index 98b7660d..8a793a81 100644 --- a/libs/layout/Cargo.toml +++ b/libs/layout/Cargo.toml @@ -13,7 +13,7 @@ version.workspace = true service = ["geometry/serde", "serde", "serde_json"] [dependencies] -anyhow = "1.0.101" +anyhow = "1.0.102" geometry = { path = "../geometry" } logging = { path = "../logging" } num-traits = "0.2.19"