From b40bdb1026d18017ec0864373bfada0e8fad05c3 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Tue, 24 Jun 2025 12:31:51 -0300 Subject: [PATCH] chore: update tao to 0.34 --- Cargo.lock | 4 ++-- Cargo.toml | 19 ++++++++----------- bench/tests/Cargo.toml | 4 ++-- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b423f64..671d36a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 57176a1..b5f42db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,10 +42,7 @@ os-webview = [ "dep:gtk", "soup3", ] -x11 = [ - "x11-dl", - "gdkx11", -] +x11 = ["x11-dl", "gdkx11", "tao/x11"] tracing = ["dep:tracing"] [dependencies] @@ -98,11 +95,11 @@ features = [ url = "2.5" block2 = "0.6" objc2 = { version = "0.6", features = [ - "exception", - # because `NSUUID::from_bytes` needs it, - # and `WebViewBuilderExtDarwin.with_data_store_identifier` crashes otherwise, - # see https://github.com/tauri-apps/tauri/issues/12843 - "disable-encoding-assertions", + "exception", + # because `NSUUID::from_bytes` needs it, + # and `WebViewBuilderExtDarwin.with_data_store_identifier` crashes otherwise, + # see https://github.com/tauri-apps/tauri/issues/12843 + "disable-encoding-assertions", ] } objc2-web-kit = { version = "0.3.0", default-features = false, features = [ "std", @@ -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" diff --git a/bench/tests/Cargo.toml b/bench/tests/Cargo.toml index cf839ca..6e51f5e 100644 --- a/bench/tests/Cargo.toml +++ b/bench/tests/Cargo.toml @@ -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"