From 49f9cee0289aa3839a2400e67539a8f47e37e482 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 00:19:18 +0000 Subject: [PATCH] Bump thiserror from 1.0.64 to 1.0.65 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.64 to 1.0.65. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.64...1.0.65) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/gosub_config/Cargo.toml | 2 +- crates/gosub_css3/Cargo.toml | 2 +- crates/gosub_html5/Cargo.toml | 2 +- crates/gosub_net/Cargo.toml | 2 +- crates/gosub_shared/Cargo.toml | 2 +- crates/gosub_v8/Cargo.toml | 2 +- crates/gosub_webexecutor/Cargo.toml | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d61717e94..2506bc43a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4128,18 +4128,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.64" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" +checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.64" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602" dependencies = [ "proc-macro2", "quote", diff --git a/crates/gosub_config/Cargo.toml b/crates/gosub_config/Cargo.toml index 22387580f..9c995bafa 100644 --- a/crates/gosub_config/Cargo.toml +++ b/crates/gosub_config/Cargo.toml @@ -12,7 +12,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = {version = "1.0", features = ["preserve_order"]} serde_derive = "1.0" lazy_static = "1.5" -thiserror = "1.0.64" +thiserror = "1.0.65" wildmatch = "2.4.0" log = "0.4.22" testing_logger = "0.1.1" diff --git a/crates/gosub_css3/Cargo.toml b/crates/gosub_css3/Cargo.toml index 304cf7ccf..f8a0661ee 100644 --- a/crates/gosub_css3/Cargo.toml +++ b/crates/gosub_css3/Cargo.toml @@ -16,5 +16,5 @@ rand = "0.8.5" itertools = "0.13.0" serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" -thiserror = "1.0.63" +thiserror = "1.0.65" nom = "7.1.3" diff --git a/crates/gosub_html5/Cargo.toml b/crates/gosub_html5/Cargo.toml index d9383665a..de2f578af 100644 --- a/crates/gosub_html5/Cargo.toml +++ b/crates/gosub_html5/Cargo.toml @@ -11,7 +11,7 @@ gosub_css3 = { path = "../gosub_css3", features = [] } derive_more = { version = "1", features = ["from", "display"] } phf = { version = "0.11.2", features = ["macros"] } lazy_static = "1.5" -thiserror = "1.0.64" +thiserror = "1.0.65" url = { version = "2.5.2", features = [] } log = { version = "0.4.22", features = [] } diff --git a/crates/gosub_net/Cargo.toml b/crates/gosub_net/Cargo.toml index 39cde1fd3..3a02430d2 100644 --- a/crates/gosub_net/Cargo.toml +++ b/crates/gosub_net/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" gosub_shared = { path = "../gosub_shared", features = [] } gosub_config = { path = "../gosub_config", features = [] } derive_more = { version = "1", features = ["from", "display"] } -thiserror = "1.0.61" +thiserror = "1.0.65" anyhow = "1.0.90" log = "0.4.22" domain-lookup-tree = "0.1" diff --git a/crates/gosub_shared/Cargo.toml b/crates/gosub_shared/Cargo.toml index 353685d56..4f1d1c6b3 100644 --- a/crates/gosub_shared/Cargo.toml +++ b/crates/gosub_shared/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" [dependencies] chardet = "0.2.4" -thiserror = "1.0.64" +thiserror = "1.0.65" url = "2.5.2" anyhow = "1.0.90" lazy_static = "1.5.0" diff --git a/crates/gosub_v8/Cargo.toml b/crates/gosub_v8/Cargo.toml index 080e32cf7..2d9cd4fdb 100644 --- a/crates/gosub_v8/Cargo.toml +++ b/crates/gosub_v8/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" [dependencies] gosub_shared = { path = "../gosub_shared" } gosub_webexecutor = { path = "../gosub_webexecutor" } -thiserror = "1.0.64" +thiserror = "1.0.65" v8 = "129.0.0" anyhow = "1.0.90" serde_json = "1.0.128" \ No newline at end of file diff --git a/crates/gosub_webexecutor/Cargo.toml b/crates/gosub_webexecutor/Cargo.toml index 83cccc650..12861a157 100644 --- a/crates/gosub_webexecutor/Cargo.toml +++ b/crates/gosub_webexecutor/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared" } colored = "2.1.0" derive_more = { version = "1", features = ["from", "display"] } lazy_static = "1.5" -thiserror = "1.0.64" +thiserror = "1.0.65" anyhow = "1.0.90" paste = "1.0.15"