From 6e382a1a1a5890778e405abf20ab465396abdaeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 20:49:01 +0000 Subject: [PATCH] build(deps): bump thiserror from 2.0.6 to 2.0.7 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 2.0.6 to 2.0.7. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.6...2.0.7) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- libs/htmlparser/Cargo.toml | 2 +- libs/htmltokenizer/Cargo.toml | 2 +- libs/jsparser/Cargo.toml | 2 +- libs/jsruntime/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c32fe63..ffa256e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1784,18 +1784,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.6" +version = "2.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47" +checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "2.0.6" +version = "2.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312" +checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36" dependencies = [ "proc-macro2", "quote", diff --git a/libs/htmlparser/Cargo.toml b/libs/htmlparser/Cargo.toml index fe55ec6f..ecdf3d78 100644 --- a/libs/htmlparser/Cargo.toml +++ b/libs/htmlparser/Cargo.toml @@ -13,7 +13,7 @@ flagset = "0.4.6" htmltokenizer = { path = "../htmltokenizer" } logging = { path = "../logging" } phf = { version = "0.11.2", features = ["macros"] } -thiserror = "2.0.6" +thiserror = "2.0.7" unicase = "2.8.0" [dev-dependencies] diff --git a/libs/htmltokenizer/Cargo.toml b/libs/htmltokenizer/Cargo.toml index 1ad81d38..a4e1156c 100644 --- a/libs/htmltokenizer/Cargo.toml +++ b/libs/htmltokenizer/Cargo.toml @@ -11,7 +11,7 @@ version.workspace = true [dependencies] bytes = "1.9.0" logging = { path = "../logging" } -thiserror = "2.0.6" +thiserror = "2.0.7" [dev-dependencies] anyhow = "1.0.94" diff --git a/libs/jsparser/Cargo.toml b/libs/jsparser/Cargo.toml index 25f59982..93a4ab37 100644 --- a/libs/jsparser/Cargo.toml +++ b/libs/jsparser/Cargo.toml @@ -17,7 +17,7 @@ indexmap = "2.7.0" logging = { path = "../../libs/logging" } phf = { version = "0.11.2", features = ["macros"] } smallvec = "1.13.2" -thiserror = "2.0.6" +thiserror = "2.0.7" unicode-id-start = "1.3.1" [dev-dependencies] diff --git a/libs/jsruntime/Cargo.toml b/libs/jsruntime/Cargo.toml index 0d13c12a..103d6dc4 100644 --- a/libs/jsruntime/Cargo.toml +++ b/libs/jsruntime/Cargo.toml @@ -19,7 +19,7 @@ logging = { path = "../logging" } paste = "1.0.15" rustc-hash = "2.1.0" static_assertions = "1.1.0" -thiserror = "2.0.6" +thiserror = "2.0.7" [build-dependencies] cbindgen = { git = "https://github.com/masnagam/cbindgen.git", branch = "fix-issue-43" }