Skip to content

Commit 16534ed

Browse files
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](dtolnay/anyhow@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] <support@github.com>
1 parent 89c9c2e commit 16534ed

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ serde_derive = "1.0"
4545
derive_more = { version = "1", features = ["from"] }
4646
lazy_static = "1.5"
4747
regex = "1"
48-
anyhow = "1.0.91"
48+
anyhow = "1.0.92"
4949
walkdir = "2.5"
5050
clap = { version = "4.5.19", features = ["derive"] }
5151
simple_logger = "5.0.0"

crates/gosub_config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ wildmatch = "2.4.0"
1717
log = "0.4.22"
1818
testing_logger = "0.1.1"
1919
url = "2.5.2"
20-
anyhow = "1.0.91"
20+
anyhow = "1.0.92"
2121

2222

2323
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

crates/gosub_css3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared", features = [] }
1010
lazy_static = "1.5.0"
1111
log = "0.4.22"
1212
simple_logger = "5.0.0"
13-
anyhow = { version = "1.0.91", features = [] }
13+
anyhow = { version = "1.0.92", features = [] }
1414
colors-transform = "0.2.11"
1515
rand = "0.8.5"
1616
itertools = "0.13.0"

crates/gosub_net/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared", features = [] }
1010
gosub_config = { path = "../gosub_config", features = [] }
1111
derive_more = { version = "1", features = ["from", "display"] }
1212
thiserror = "1.0.67"
13-
anyhow = "1.0.91"
13+
anyhow = "1.0.92"
1414
log = "0.4.22"
1515
domain-lookup-tree = "0.1"
1616
cookie = { version = "0.18.1", features = ["secure", "private"] }

crates/gosub_render_backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ smallvec = "1.13.2"
1414
image = "0.25.4"
1515
raw-window-handle = "0.6.2"
1616
log = "0.4.14"
17-
anyhow = "1.0.91"
17+
anyhow = "1.0.92"
1818
url = "2.5.2"
1919

crates/gosub_render_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gosub_html5 = { path = "../gosub_html5" }
1010
gosub_css3 = { path = "../gosub_css3" }
1111
gosub_shared = { path = "../gosub_shared" }
1212
gosub_render_backend = { path = "../gosub_render_backend" }
13-
anyhow = "1.0.91"
13+
anyhow = "1.0.92"
1414
regex = "1.11.1"
1515
rstar = "0.12.0"
1616
log = "0.4.14"

crates/gosub_renderer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ gosub_shared = { path = "../gosub_shared" }
1212
gosub_css3 = { path = "../gosub_css3" }
1313
gosub_net = { path = "../gosub_net" }
1414
gosub_render_backend = { path = "../gosub_render_backend" }
15-
anyhow = "1.0.91"
15+
anyhow = "1.0.92"
1616
image = "0.25.4"
1717
url = "2.5.2"
1818
log = "0.4.22"

crates/gosub_shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
chardet = "0.2.4"
1010
thiserror = "1.0.67"
1111
url = "2.5.2"
12-
anyhow = "1.0.91"
12+
anyhow = "1.0.92"
1313
lazy_static = "1.5.0"
1414
uuid = { version = "1.11.0", features = ["v4"] }
1515
rand = "0.9.0-alpha.1"

crates/gosub_svg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ gosub_html5 = { path = "../gosub_html5" }
1111
gosub_render_backend = { path = "../gosub_render_backend" }
1212
tiny-skia = "0.11.4"
1313
resvg = { version = "0.44.0", optional = true }
14-
anyhow = "1.0.91"
14+
anyhow = "1.0.92"
1515

1616
[features]
1717
resvg = ["dep:resvg"]

crates/gosub_taffy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared" }
1010
gosub_render_backend = { path = "../gosub_render_backend" }
1111
gosub_typeface = { path = "../gosub_typeface" }
1212
taffy = "0.6.1"
13-
anyhow = "1.0.91"
13+
anyhow = "1.0.92"
1414
regex = "1.11.1"
1515
log = "0.4.22"
1616
parley = { version = "0.2.0", default-features = false, features = ["std"] }

crates/gosub_useragent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ gosub_renderer = { path = "../gosub_renderer" }
1212
winit = "0.30.5"
1313
slotmap = "1.0.7"
1414
log = "0.4.22"
15-
anyhow = "1.0.91"
15+
anyhow = "1.0.92"
1616
url = "2.5.2"
1717
image = "0.25.4"
1818

crates/gosub_v8/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ gosub_shared = { path = "../gosub_shared" }
1010
gosub_webexecutor = { path = "../gosub_webexecutor" }
1111
thiserror = "1.0.67"
1212
v8 = "129.0.0"
13-
anyhow = "1.0.91"
13+
anyhow = "1.0.92"
1414
serde_json = "1.0.128"

crates/gosub_vello/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ vello = "0.3.0"
1414
vello_encoding = "0.3.0"
1515
image = "0.25.4"
1616
smallvec = "1.13.2"
17-
anyhow = "1.0.91"
17+
anyhow = "1.0.92"
1818
wgpu = "22.1.0"
1919
raw-window-handle = "0.6.2"
2020
futures = "0.3.31"

crates/gosub_webexecutor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ colored = "2.1.0"
1111
derive_more = { version = "1", features = ["from", "display"] }
1212
lazy_static = "1.5"
1313
thiserror = "1.0.67"
14-
anyhow = "1.0.91"
14+
anyhow = "1.0.92"
1515
paste = "1.0.15"
1616

1717
[dev-dependencies]

0 commit comments

Comments
 (0)