Skip to content

Commit 7bd75ec

Browse files
committed
Update dependencies.
1 parent 37afee6 commit 7bd75ec

File tree

16 files changed

+145
-129
lines changed

16 files changed

+145
-129
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,22 +91,22 @@ xilem_core = { version = "0.1.0", path = "xilem_core" }
9191
tree_arena = { version = "0.1.0", path = "tree_arena" }
9292
vello = "0.5.0"
9393
wgpu = "24.0.3"
94-
kurbo = "0.11.1"
94+
kurbo = "0.11.2"
9595
parley = { version = "0.4.0", features = ["accesskit"] }
9696
peniko = "0.4.0"
9797
winit = "0.30.10"
98-
tracing = { version = "0.1.40", default-features = false }
98+
tracing = { version = "0.1.41", default-features = false }
9999
ui-events = "0.1.0"
100100
ui-events-winit = "0.1.0"
101-
smallvec = "1.13.2"
101+
smallvec = "1.15.0"
102102
hashbrown = "0.15.3"
103103
dpi = "0.1.2"
104-
image = { version = "0.25.2", default-features = false }
104+
image = { version = "0.25.6", default-features = false }
105105
web-time = "1.1.0"
106-
bitflags = "2.6.0"
106+
bitflags = "2.9.0"
107107
accesskit = "0.19.0"
108108
accesskit_winit = "0.27.0"
109-
time = "0.3.36"
109+
time = "0.3.41"
110110

111111
[profile.ci]
112112
inherits = "dev"

masonry/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,26 @@ tracing = { workspace = true, features = ["default"] }
4040
image.workspace = true
4141
futures-intrusive = "0.5.0"
4242
pollster = "0.4.0"
43-
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }
44-
tracing-tracy = { version = "0.11.3", optional = true }
43+
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "time"] }
44+
tracing-tracy = { version = "0.11.4", optional = true }
4545
accesskit.workspace = true
4646
time = { workspace = true, features = ["macros", "formatting"] }
4747
cursor-icon = "1.1.0"
4848
dpi.workspace = true
4949
anymap3 = "1.0.1"
50-
oxipng = { version = "9.1.4", default-features = false }
50+
oxipng = { version = "9.1.5", default-features = false }
5151

5252
[target.'cfg(target_arch = "wasm32")'.dependencies]
5353
web-time.workspace = true
5454

5555
[dev-dependencies]
5656
float-cmp = { version = "0.10.0", features = ["std"], default-features = false }
5757
image = { workspace = true, features = ["png"] }
58-
insta = { version = "1.39.0" }
58+
insta = { version = "1.43.1" }
5959
assert_matches = "1.5.0"
6060

6161
# Make wgpu use tracing for its spans.
62-
profiling = { version = "1.0.15", features = ["profile-with-tracing"] }
62+
profiling = { version = "1.0.16", features = ["profile-with-tracing"] }
6363

6464
[target.'cfg(target_os = "android")'.dependencies]
65-
tracing_android_trace = "0.1.0"
65+
tracing_android_trace = "0.1.1"

masonry_winit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ vello.workspace = true
3434
wgpu.workspace = true
3535
winit.workspace = true
3636
tracing = { workspace = true, features = ["default"] }
37-
tracing-tracy = { version = "0.11.3", optional = true }
37+
tracing-tracy = { version = "0.11.4", optional = true }
3838
ui-events-winit.workspace = true
3939
pollster = "0.4.0"
4040
accesskit_winit.workspace = true
@@ -49,8 +49,8 @@ smallvec.workspace = true
4949
tracing = { workspace = true, features = ["default"] }
5050
ui-events.workspace = true
5151
image = { workspace = true, features = ["png"] }
52-
insta = { version = "1.39.0" }
52+
insta = { version = "1.43.1" }
5353
accesskit.workspace = true
5454

5555
# Make wgpu use tracing for its spans.
56-
profiling = { version = "1.0.15", features = ["profile-with-tracing"] }
56+
profiling = { version = "1.0.16", features = ["profile-with-tracing"] }

xilem/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,23 +102,23 @@ tracing.workspace = true
102102
vello.workspace = true
103103
smallvec.workspace = true
104104
accesskit.workspace = true
105-
tokio = { version = "1.39.1", features = ["rt", "rt-multi-thread", "time", "sync"] }
105+
tokio = { version = "1.45.0", features = ["rt", "rt-multi-thread", "time", "sync"] }
106106

107107
[dev-dependencies]
108108
# Used for `variable_clock`
109109
time = { workspace = true, features = ["local-offset"] }
110110

111111
# Used for http_cats
112-
reqwest = { version = "0.12.7", default-features = false, features = [
112+
reqwest = { version = "0.12.15", default-features = false, features = [
113113
# We use rustls as Android doesn't ship with openssl
114114
# and this is likely to be easiest to get working.
115115
"rustls-tls",
116116
] }
117117
image = { workspace = true, features = ["jpeg"] }
118118

119119
# Make wgpu use tracing for its spans.
120-
profiling = { version = "1.0.15", features = ["profile-with-tracing"] }
121-
anyhow = "1.0.86"
120+
profiling = { version = "1.0.16", features = ["profile-with-tracing"] }
121+
anyhow = "1.0.98"
122122

123123
[target.'cfg(target_os = "android")'.dev-dependencies]
124124
winit = { features = ["android-native-activity"], workspace = true }

xilem_web/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ workspace = true
2323
[dependencies]
2424
futures = "0.3.31"
2525
peniko.workspace = true
26-
wasm-bindgen = "0.2.97"
27-
wasm-bindgen-futures = "0.4.47"
26+
wasm-bindgen = "0.2.100"
27+
wasm-bindgen-futures = "0.4.50"
2828
xilem_core = { workspace = true, features = ["kurbo"] }
2929

3030
[dependencies.web-sys]
31-
version = "0.3.69"
31+
version = "0.3.77"
3232
features = [
3333
"console",
3434
"CssStyleDeclaration",

xilem_web/web_examples/counter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ workspace = true
1111

1212
[dependencies]
1313
console_error_panic_hook = "0.1"
14-
wasm-bindgen = "0.2.97"
15-
web-sys = "0.3.74"
14+
wasm-bindgen = "0.2.100"
15+
web-sys = "0.3.77"
1616
xilem_web = { path = "../.." }

xilem_web/web_examples/counter_custom_element/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ workspace = true
1111

1212
[dependencies]
1313
console_error_panic_hook = "0.1"
14-
wasm-bindgen = "0.2.97"
15-
web-sys = "0.3.74"
14+
wasm-bindgen = "0.2.100"
15+
web-sys = "0.3.77"
1616
xilem_web = { path = "../.." }

xilem_web/web_examples/elm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ workspace = true
1212
[dependencies]
1313
console_error_panic_hook = "0.1.7"
1414
console_log = { version = "1.0.0", features = ["color"] }
15-
log = "0.4.22"
15+
log = "0.4.27"
1616
xilem_web = { path = "../.." }

xilem_web/web_examples/fetch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ console_log = "1"
1515
gloo-net = { version = "0.6.0", default-features = false, features = ["http", "json", "serde"] }
1616
log = "0.4"
1717
serde = { version = "1", features = ["derive"] }
18-
web-sys = { version = "0.3.74", features = ["Event", "HtmlInputElement"] }
19-
wasm-bindgen = "0.2.97"
18+
web-sys = { version = "0.3.77", features = ["Event", "HtmlInputElement"] }
19+
wasm-bindgen = "0.2.100"
2020
xilem_web = { path = "../.." }

0 commit comments

Comments
 (0)