chore: update tao to 0.34

This commit is contained in:
Lucas Nogueira
2025-06-24 12:31:51 -03:00
parent 99dab51fef
commit b40bdb1026
3 changed files with 12 additions and 15 deletions

4
Cargo.lock generated
View File

@@ -2846,9 +2846,9 @@ dependencies = [
[[package]]
name = "tao"
version = "0.33.0"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e59c1f38e657351a2e822eadf40d6a2ad4627b9c25557bc1180ec1b3295ef82"
checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a"
dependencies = [
"bitflags 2.8.0",
"core-foundation 0.10.0",

View File

@@ -42,10 +42,7 @@ os-webview = [
"dep:gtk",
"soup3",
]
x11 = [
"x11-dl",
"gdkx11",
]
x11 = ["x11-dl", "gdkx11", "tao/x11"]
tracing = ["dep:tracing"]
[dependencies]
@@ -169,7 +166,7 @@ objc2-ui-kit = { version = "0.3.0", default-features = false, features = [
"UIWindow",
"UIApplication",
"UIEvent",
"UIColor"
"UIColor",
] }
[target.'cfg(target_os = "macos")'.dependencies]
@@ -203,7 +200,7 @@ libc = "0.2"
[dev-dependencies]
pollster = "0.4.0"
tao = "0.33"
tao = "0.34"
wgpu = "23"
winit = "0.30"
getrandom = "0.3"

View File

@@ -8,8 +8,8 @@ edition = "2018"
[dependencies]
wry = { path = "../../" }
serde = { version = "1.0", features = [ "derive" ] }
tao = "0.32"
serde = { version = "1.0", features = ["derive"] }
tao = "0.34"
[[bin]]
name = "bench_hello_world"