diff --git a/Cargo.lock b/Cargo.lock index 67d4a2a3c..e2379eed2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -254,9 +254,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "10f00e1f6e58a40e807377c75c6a7f97bf9044fab57816f2414e6f5f4499d7b8" [[package]] name = "arbitrary" diff --git a/Cargo.toml b/Cargo.toml index 47b88c26c..c2ee1c8bc 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.86" +anyhow = "1.0.87" walkdir = "2.5" clap = { version = "4.5.15", features = ["derive"] } simple_logger = "5.0.0" diff --git a/crates/gosub_config/Cargo.toml b/crates/gosub_config/Cargo.toml index cfabf5fa2..dcee3a881 100644 --- a/crates/gosub_config/Cargo.toml +++ b/crates/gosub_config/Cargo.toml @@ -14,7 +14,7 @@ wildmatch = "2.3.4" log = "0.4.22" testing_logger = "0.1.1" url = "2.5.2" -anyhow = "1.0.86" +anyhow = "1.0.87" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/crates/gosub_css3/Cargo.toml b/crates/gosub_css3/Cargo.toml index 3740e33db..9b95b00db 100644 --- a/crates/gosub_css3/Cargo.toml +++ b/crates/gosub_css3/Cargo.toml @@ -10,5 +10,5 @@ gosub_shared = { path = "../gosub_shared", features = [] } lazy_static = "1.5" log = "0.4.22" simple_logger = "5.0.0" -anyhow = { version = "1.0.86", features = [] } +anyhow = { version = "1.0.87", features = [] } colors-transform = "0.2.11" \ No newline at end of file diff --git a/crates/gosub_net/Cargo.toml b/crates/gosub_net/Cargo.toml index b8388f13e..4e49d105f 100644 --- a/crates/gosub_net/Cargo.toml +++ b/crates/gosub_net/Cargo.toml @@ -11,7 +11,7 @@ gosub_config = { path = "../gosub_config", features = [] } derive_more = { version = "1", features = ["from"] } thiserror = "1.0.61" ureq = "2.10.1" -anyhow = "1.0.86" +anyhow = "1.0.87" log = "0.4.22" domain-lookup-tree = "0.1" hickory-resolver = "0.24.1" diff --git a/crates/gosub_render_utils/Cargo.toml b/crates/gosub_render_utils/Cargo.toml index 2cf2ef8eb..38018ceb4 100644 --- a/crates/gosub_render_utils/Cargo.toml +++ b/crates/gosub_render_utils/Cargo.toml @@ -10,6 +10,6 @@ gosub_html5 = { path = "../gosub_html5" } gosub_styling = { path = "../gosub_styling" } gosub_css3 = { path = "../gosub_css3" } gosub_render_backend = { path = "../gosub_render_backend" } -anyhow = "1.0.86" +anyhow = "1.0.87" regex = "1.10.6" rstar = "0.12.0" diff --git a/crates/gosub_renderer/Cargo.toml b/crates/gosub_renderer/Cargo.toml index a918c04b6..880da4748 100644 --- a/crates/gosub_renderer/Cargo.toml +++ b/crates/gosub_renderer/Cargo.toml @@ -15,7 +15,7 @@ gosub_styling = { path = "../gosub_styling" } gosub_css3 = { path = "../gosub_css3" } gosub_net = { path = "../gosub_net" } gosub_render_backend = { path = "../gosub_render_backend" } -anyhow = "1.0.86" +anyhow = "1.0.87" image = "0.25.2" url = "2.5.2" log = "0.4.22" diff --git a/crates/gosub_shared/Cargo.toml b/crates/gosub_shared/Cargo.toml index 1da88317b..cb77ba698 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.61" url = "2.5.2" -anyhow = "1.0.86" +anyhow = "1.0.87" lazy_static = "1.5.0" uuid = { version = "1.10.0", features = ["v4"] } rand = "0.9.0-alpha.1" diff --git a/crates/gosub_styling/Cargo.toml b/crates/gosub_styling/Cargo.toml index 04902d6f6..46aba3f21 100644 --- a/crates/gosub_styling/Cargo.toml +++ b/crates/gosub_styling/Cargo.toml @@ -12,7 +12,7 @@ gosub_html5 = { path = "../gosub_html5" } gosub_render_backend = { path = "../gosub_render_backend" } gosub_typeface = { path = "../gosub_typeface" } lazy_static = "1.5" -anyhow = "1.0.86" +anyhow = "1.0.87" regex = "1.10.6" colors-transform = "0.2.11" backtrace = "0.3.71" diff --git a/crates/gosub_svg/Cargo.toml b/crates/gosub_svg/Cargo.toml index 858973d13..502331c69 100644 --- a/crates/gosub_svg/Cargo.toml +++ b/crates/gosub_svg/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared" } gosub_html5 = { path = "../gosub_html5" } gosub_render_backend = { path = "../gosub_render_backend" } resvg = { version = "0.42.0", optional = true } -anyhow = "1.0.86" +anyhow = "1.0.87" diff --git a/crates/gosub_taffy/Cargo.toml b/crates/gosub_taffy/Cargo.toml index 9bbf14983..08c7f4f05 100644 --- a/crates/gosub_taffy/Cargo.toml +++ b/crates/gosub_taffy/Cargo.toml @@ -9,7 +9,7 @@ gosub_render_backend = { path = "../gosub_render_backend" } gosub_styling = { path = "../gosub_styling" } gosub_typeface = { path = "../gosub_typeface" } taffy = "0.5.2" -anyhow = "1.0.86" +anyhow = "1.0.87" regex = "1.10.5" parley = { git = "https://github.com/linebender/parley", rev = "14070d5" } log = "0.4.22" diff --git a/crates/gosub_useragent/Cargo.toml b/crates/gosub_useragent/Cargo.toml index c42ca2cbb..38260b43f 100644 --- a/crates/gosub_useragent/Cargo.toml +++ b/crates/gosub_useragent/Cargo.toml @@ -10,6 +10,6 @@ gosub_renderer = { path = "../gosub_renderer" } winit = "0.30.5" slotmap = "1.0.7" log = "0.4.22" -anyhow = "1.0.82" +anyhow = "1.0.87" url = "2.5.2" image = "0.25.2" diff --git a/crates/gosub_v8/Cargo.toml b/crates/gosub_v8/Cargo.toml index 5451d400d..06e76f2c9 100644 --- a/crates/gosub_v8/Cargo.toml +++ b/crates/gosub_v8/Cargo.toml @@ -12,5 +12,5 @@ gosub_shared = { path = "../gosub_shared" } gosub_webexecutor = { path = "../gosub_webexecutor" } thiserror = "1.0.61" v8 = "0.105.0" -anyhow = "1.0.86" +anyhow = "1.0.87" 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 27ae4ddd6..808da07a8 100644 --- a/crates/gosub_vello/Cargo.toml +++ b/crates/gosub_vello/Cargo.toml @@ -11,7 +11,7 @@ gosub_svg = { path = "../gosub_svg" } vello = { git = "https://github.com/linebender/vello", rev = "f08c2a828848e75db144d6a082c5a0818b84f561" } image = "0.25.2" smallvec = "1.13.2" -anyhow = "1.0.82" +anyhow = "1.0.87" wgpu = "22.1.0" raw-window-handle = "0.6.2" futures = "0.3.30" diff --git a/crates/gosub_webexecutor/Cargo.toml b/crates/gosub_webexecutor/Cargo.toml index 66cdf4e90..18b8bf1ad 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.61" -anyhow = "1.0.86" +anyhow = "1.0.87" paste = "1.0.15" [dev-dependencies]