diff --git a/packages/webview/Cargo.lock b/packages/webview/Cargo.lock index c46f846..cf82cf2 100644 --- a/packages/webview/Cargo.lock +++ b/packages/webview/Cargo.lock @@ -207,9 +207,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "core-graphics" -version = "0.24.0" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" +checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97" dependencies = [ "bitflags 2.11.0", "core-foundation", @@ -368,12 +368,6 @@ dependencies = [ "windows-sys 0.61.2", ] -[[package]] -name = "dispatch" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" - [[package]] name = "dispatch2" version = "0.3.0" @@ -381,6 +375,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" dependencies = [ "bitflags 2.11.0", + "block2", + "libc", "objc2", ] @@ -1145,12 +1141,6 @@ dependencies = [ "selectors", ] -[[package]] -name = "lazy_static" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - [[package]] name = "libc" version = "0.2.182" @@ -2313,23 +2303,22 @@ dependencies = [ [[package]] name = "tao" -version = "0.34.5" +version = "0.34.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7" +checksum = "6e06d52c379e63da659a483a958110bbde891695a0ecb53e48cc7786d5eda7bb" dependencies = [ "bitflags 2.11.0", "block2", "core-foundation", "core-graphics", "crossbeam-channel", - "dispatch", + "dispatch2", "dlopen2", "dpi", "gdkwayland-sys", "gdkx11-sys", "gtk", "jni", - "lazy_static", "libc", "log", "ndk", @@ -2341,7 +2330,6 @@ dependencies = [ "once_cell", "parking_lot", "raw-window-handle", - "scopeguard", "tao-macros", "unicode-segmentation", "url", diff --git a/packages/webview/Cargo.toml b/packages/webview/Cargo.toml index e15302a..30a07c9 100644 --- a/packages/webview/Cargo.toml +++ b/packages/webview/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib"] napi = { version = "3", features = ["napi8"] } napi-derive = "3" url = "2" -tao = { version = "0.34.5", features = ["rwh_06"] } +tao = { version = "0.34.6", features = ["rwh_06"] } # NOTE: The "devtools" feature is always compiled in. DevTools are disabled at # runtime by default (options.devtools defaults to false). Production deployments # should never enable devtools, as it grants full DOM/JS inspection access.