From 16534ed25dde5c43a44187cef576aba909cac144 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 07:50:32 +0000 Subject: [PATCH] Bump anyhow from 1.0.91 to 1.0.92 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.91 to 1.0.92. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.91...1.0.92) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/gosub_config/Cargo.toml | 2 +- crates/gosub_css3/Cargo.toml | 2 +- crates/gosub_net/Cargo.toml | 2 +- crates/gosub_render_backend/Cargo.toml | 2 +- crates/gosub_render_utils/Cargo.toml | 2 +- crates/gosub_renderer/Cargo.toml | 2 +- crates/gosub_shared/Cargo.toml | 2 +- crates/gosub_svg/Cargo.toml | 2 +- crates/gosub_taffy/Cargo.toml | 2 +- crates/gosub_useragent/Cargo.toml | 2 +- crates/gosub_v8/Cargo.toml | 2 +- crates/gosub_vello/Cargo.toml | 2 +- crates/gosub_webexecutor/Cargo.toml | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b84705cc6..e2603e43f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -201,9 +201,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.91" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8" +checksum = "74f37166d7d48a0284b99dd824694c26119c700b53bf0d1540cdb147dbdaaf13" [[package]] name = "arbitrary" diff --git a/Cargo.toml b/Cargo.toml index 339c41a90..b86dafe91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ serde_derive = "1.0" derive_more = { version = "1", features = ["from"] } lazy_static = "1.5" regex = "1" -anyhow = "1.0.91" +anyhow = "1.0.92" walkdir = "2.5" clap = { version = "4.5.19", features = ["derive"] } simple_logger = "5.0.0" diff --git a/crates/gosub_config/Cargo.toml b/crates/gosub_config/Cargo.toml index a7c402905..fb8c54918 100644 --- a/crates/gosub_config/Cargo.toml +++ b/crates/gosub_config/Cargo.toml @@ -17,7 +17,7 @@ wildmatch = "2.4.0" log = "0.4.22" testing_logger = "0.1.1" url = "2.5.2" -anyhow = "1.0.91" +anyhow = "1.0.92" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/crates/gosub_css3/Cargo.toml b/crates/gosub_css3/Cargo.toml index 149717274..43dc29159 100644 --- a/crates/gosub_css3/Cargo.toml +++ b/crates/gosub_css3/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared", features = [] } lazy_static = "1.5.0" log = "0.4.22" simple_logger = "5.0.0" -anyhow = { version = "1.0.91", features = [] } +anyhow = { version = "1.0.92", features = [] } colors-transform = "0.2.11" rand = "0.8.5" itertools = "0.13.0" diff --git a/crates/gosub_net/Cargo.toml b/crates/gosub_net/Cargo.toml index b87f2d9f0..2ce4c285e 100644 --- a/crates/gosub_net/Cargo.toml +++ b/crates/gosub_net/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared", features = [] } gosub_config = { path = "../gosub_config", features = [] } derive_more = { version = "1", features = ["from", "display"] } thiserror = "1.0.67" -anyhow = "1.0.91" +anyhow = "1.0.92" log = "0.4.22" domain-lookup-tree = "0.1" cookie = { version = "0.18.1", features = ["secure", "private"] } diff --git a/crates/gosub_render_backend/Cargo.toml b/crates/gosub_render_backend/Cargo.toml index e3be8b8f0..f88891ecf 100644 --- a/crates/gosub_render_backend/Cargo.toml +++ b/crates/gosub_render_backend/Cargo.toml @@ -14,6 +14,6 @@ smallvec = "1.13.2" image = "0.25.4" raw-window-handle = "0.6.2" log = "0.4.14" -anyhow = "1.0.91" +anyhow = "1.0.92" url = "2.5.2" diff --git a/crates/gosub_render_utils/Cargo.toml b/crates/gosub_render_utils/Cargo.toml index 0bbdb7a97..e3648e4ca 100644 --- a/crates/gosub_render_utils/Cargo.toml +++ b/crates/gosub_render_utils/Cargo.toml @@ -10,7 +10,7 @@ gosub_html5 = { path = "../gosub_html5" } gosub_css3 = { path = "../gosub_css3" } gosub_shared = { path = "../gosub_shared" } gosub_render_backend = { path = "../gosub_render_backend" } -anyhow = "1.0.91" +anyhow = "1.0.92" regex = "1.11.1" rstar = "0.12.0" log = "0.4.14" diff --git a/crates/gosub_renderer/Cargo.toml b/crates/gosub_renderer/Cargo.toml index 6a325fe9e..5f99d6b5b 100644 --- a/crates/gosub_renderer/Cargo.toml +++ b/crates/gosub_renderer/Cargo.toml @@ -12,7 +12,7 @@ gosub_shared = { path = "../gosub_shared" } gosub_css3 = { path = "../gosub_css3" } gosub_net = { path = "../gosub_net" } gosub_render_backend = { path = "../gosub_render_backend" } -anyhow = "1.0.91" +anyhow = "1.0.92" image = "0.25.4" url = "2.5.2" log = "0.4.22" diff --git a/crates/gosub_shared/Cargo.toml b/crates/gosub_shared/Cargo.toml index dfe865abe..dab543d22 100644 --- a/crates/gosub_shared/Cargo.toml +++ b/crates/gosub_shared/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" chardet = "0.2.4" thiserror = "1.0.67" url = "2.5.2" -anyhow = "1.0.91" +anyhow = "1.0.92" lazy_static = "1.5.0" uuid = { version = "1.11.0", features = ["v4"] } rand = "0.9.0-alpha.1" diff --git a/crates/gosub_svg/Cargo.toml b/crates/gosub_svg/Cargo.toml index 4001e7646..a660b67c1 100644 --- a/crates/gosub_svg/Cargo.toml +++ b/crates/gosub_svg/Cargo.toml @@ -11,7 +11,7 @@ gosub_html5 = { path = "../gosub_html5" } gosub_render_backend = { path = "../gosub_render_backend" } tiny-skia = "0.11.4" resvg = { version = "0.44.0", optional = true } -anyhow = "1.0.91" +anyhow = "1.0.92" [features] resvg = ["dep:resvg"] diff --git a/crates/gosub_taffy/Cargo.toml b/crates/gosub_taffy/Cargo.toml index 2fac52fb7..1c477f6d8 100644 --- a/crates/gosub_taffy/Cargo.toml +++ b/crates/gosub_taffy/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared" } gosub_render_backend = { path = "../gosub_render_backend" } gosub_typeface = { path = "../gosub_typeface" } taffy = "0.6.1" -anyhow = "1.0.91" +anyhow = "1.0.92" regex = "1.11.1" log = "0.4.22" parley = { version = "0.2.0", default-features = false, features = ["std"] } diff --git a/crates/gosub_useragent/Cargo.toml b/crates/gosub_useragent/Cargo.toml index 1f13bf377..b1361275c 100644 --- a/crates/gosub_useragent/Cargo.toml +++ b/crates/gosub_useragent/Cargo.toml @@ -12,7 +12,7 @@ gosub_renderer = { path = "../gosub_renderer" } winit = "0.30.5" slotmap = "1.0.7" log = "0.4.22" -anyhow = "1.0.91" +anyhow = "1.0.92" url = "2.5.2" image = "0.25.4" diff --git a/crates/gosub_v8/Cargo.toml b/crates/gosub_v8/Cargo.toml index 217f70de0..19c1dd4ed 100644 --- a/crates/gosub_v8/Cargo.toml +++ b/crates/gosub_v8/Cargo.toml @@ -10,5 +10,5 @@ gosub_shared = { path = "../gosub_shared" } gosub_webexecutor = { path = "../gosub_webexecutor" } thiserror = "1.0.67" v8 = "129.0.0" -anyhow = "1.0.91" +anyhow = "1.0.92" serde_json = "1.0.128" \ No newline at end of file diff --git a/crates/gosub_vello/Cargo.toml b/crates/gosub_vello/Cargo.toml index 3a6c7faab..21dc98df7 100644 --- a/crates/gosub_vello/Cargo.toml +++ b/crates/gosub_vello/Cargo.toml @@ -14,7 +14,7 @@ vello = "0.3.0" vello_encoding = "0.3.0" image = "0.25.4" smallvec = "1.13.2" -anyhow = "1.0.91" +anyhow = "1.0.92" wgpu = "22.1.0" raw-window-handle = "0.6.2" futures = "0.3.31" diff --git a/crates/gosub_webexecutor/Cargo.toml b/crates/gosub_webexecutor/Cargo.toml index 57d09c8c4..dc01aa53a 100644 --- a/crates/gosub_webexecutor/Cargo.toml +++ b/crates/gosub_webexecutor/Cargo.toml @@ -11,7 +11,7 @@ colored = "2.1.0" derive_more = { version = "1", features = ["from", "display"] } lazy_static = "1.5" thiserror = "1.0.67" -anyhow = "1.0.91" +anyhow = "1.0.92" paste = "1.0.15" [dev-dependencies]