From 72dac8db64acc02bd5dd702aafc97c892f41dd7a Mon Sep 17 00:00:00 2001 From: Evan Almloff Date: Tue, 7 Oct 2025 12:43:18 -0500 Subject: [PATCH 1/2] bump dioxus version --- Cargo.lock | 1857 +++++++++++++++++++++++++++----------- Cargo.toml | 8 +- preview/Cargo.toml | 2 +- primitives/src/slider.rs | 2 +- 4 files changed, 1319 insertions(+), 550 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f7784977..7cfef49e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "ab_glyph" -version = "0.2.31" +version = "0.2.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e074464580a518d16a7126262fffaaa47af89d4099d4cb403f8ed938ba12ee7d" +checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2" dependencies = [ "ab_glyph_rasterizer", "owned_ttf_parser", @@ -189,6 +189,12 @@ dependencies = [ "libc", ] +[[package]] +name = "anyhow" +version = "1.0.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" + [[package]] name = "anyrender" version = "0.5.0" @@ -210,7 +216,7 @@ dependencies = [ "image", "kurbo", "peniko", - "thiserror 2.0.16", + "thiserror 2.0.17", "usvg", ] @@ -266,7 +272,7 @@ version = "0.38.0+1.3.281" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f" dependencies = [ - "libloading 0.8.8", + "libloading 0.8.9", ] [[package]] @@ -336,9 +342,9 @@ dependencies = [ [[package]] name = "async-fs" -version = "2.1.3" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09f7e37c0ed80b2a977691c47dae8625cfb21e205827106c64f7c588766b2e50" +checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" dependencies = [ "async-lock", "blocking", @@ -347,11 +353,11 @@ dependencies = [ [[package]] name = "async-io" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca" +checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" dependencies = [ - "async-lock", + "autocfg", "cfg-if", "concurrent-queue", "futures-io", @@ -360,7 +366,7 @@ dependencies = [ "polling", "rustix 1.1.2", "slab", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -376,9 +382,9 @@ dependencies = [ [[package]] name = "async-process" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00" +checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" dependencies = [ "async-channel", "async-io", @@ -405,9 +411,9 @@ dependencies = [ [[package]] name = "async-signal" -version = "0.2.12" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1" +checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" dependencies = [ "async-io", "async-lock", @@ -418,7 +424,29 @@ dependencies = [ "rustix 1.1.2", "signal-hook-registry", "slab", - "windows-sys 0.60.2", + "windows-sys 0.61.2", +] + +[[package]] +name = "async-stream" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] @@ -438,6 +466,22 @@ dependencies = [ "syn 2.0.106", ] +[[package]] +name = "async-tungstenite" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee88b4c88ac8c9ea446ad43498955750a4bbe64c4392f21ccfe5d952865e318f" +dependencies = [ + "atomic-waker", + "futures-core", + "futures-io", + "futures-task", + "futures-util", + "log", + "pin-project-lite", + "tungstenite 0.27.0", +] + [[package]] name = "atk" version = "0.18.2" @@ -532,11 +576,12 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "axum" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5" +checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871" dependencies = [ "axum-core", + "axum-macros", "base64", "bytes", "form_urlencoded", @@ -553,15 +598,14 @@ dependencies = [ "multer", "percent-encoding", "pin-project-lite", - "rustversion", - "serde", + "serde_core", "serde_json", "serde_path_to_error", "serde_urlencoded", "sha1", "sync_wrapper", "tokio", - "tokio-tungstenite 0.26.2", + "tokio-tungstenite 0.28.0", "tower", "tower-layer", "tower-service", @@ -570,9 +614,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.2" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" +checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" dependencies = [ "bytes", "futures-core", @@ -581,13 +625,46 @@ dependencies = [ "http-body-util", "mime", "pin-project-lite", - "rustversion", "sync_wrapper", "tower-layer", "tower-service", "tracing", ] +[[package]] +name = "axum-extra" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9963ff19f40c6102c76756ef0a46004c0d58957d87259fc9208ff8441c12ab96" +dependencies = [ + "axum", + "axum-core", + "bytes", + "futures-util", + "headers", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "serde_core", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-macros" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.106", +] + [[package]] name = "backtrace" version = "0.3.74" @@ -675,7 +752,7 @@ dependencies = [ "image", "keyboard-types", "markup5ever 0.35.0", - "objc2 0.6.2", + "objc2 0.6.3", "parley", "peniko", "percent-encoding", @@ -801,11 +878,11 @@ dependencies = [ [[package]] name = "block2" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" dependencies = [ - "objc2 0.6.2", + "objc2 0.6.3", ] [[package]] @@ -829,18 +906,18 @@ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" [[package]] name = "bytemuck" -version = "1.23.2" +version = "1.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677" +checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" dependencies = [ "bytemuck_derive", ] [[package]] name = "bytemuck_derive" -version = "1.10.1" +version = "1.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29" +checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff" dependencies = [ "proc-macro2", "quote", @@ -864,6 +941,9 @@ name = "bytes" version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +dependencies = [ + "serde", +] [[package]] name = "cairo-rs" @@ -918,9 +998,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.37" +version = "1.2.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44" +checksum = "e1d05d92f4b1fd76aad469d46cdd858ca761576082cd37df81416691e50199fb" dependencies = [ "find-msvc-tools", "jobserver", @@ -967,6 +1047,16 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" +[[package]] +name = "charset" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1f927b07c74ba84c7e5fe4db2baeb3e996ab2688992e39ac68ce3220a677c7e" +dependencies = [ + "base64", + "encoding_rs", +] + [[package]] name = "chrono" version = "0.4.42" @@ -977,7 +1067,7 @@ dependencies = [ "js-sys", "num-traits", "wasm-bindgen", - "windows-link 0.2.0", + "windows-link 0.2.1", ] [[package]] @@ -1077,19 +1167,50 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "console_error_panic_hook" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" +dependencies = [ + "cfg-if", + "wasm-bindgen", +] + +[[package]] +name = "const-serialize" +version = "0.7.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c02a1f46ffe1c6f05edf568a7d8e2ab477c75a6ec5f33d2b83ce54fc3f096ca" +dependencies = [ + "const-serialize-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", +] + [[package]] name = "const-serialize" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "const-serialize-macro", + "const-serialize-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "serde", ] [[package]] name = "const-serialize-macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1da74b91de7c3426afaed28ed514bc4cd39821eeecf9f32dc424023310a63ae4" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.106", +] + +[[package]] +name = "const-serialize-macro" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "proc-macro2", "quote", @@ -1102,11 +1223,17 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "451d0640545a0553814b4c646eb549343561618838e9b42495f466131fe3ad49" +[[package]] +name = "const-str" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4d34b8f066904ed7cfa4a6f9ee96c3214aa998cb44b69ca20bd2054f47402ed" + [[package]] name = "const_format" -version = "0.2.34" +version = "0.2.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd" +checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad" dependencies = [ "const_format_proc_macros", ] @@ -1122,6 +1249,15 @@ dependencies = [ "unicode-xid", ] +[[package]] +name = "content_disposition" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc14a88e1463ddd193906285abe5c360c7e8564e05ccc5d501755f7fbc9ca9c" +dependencies = [ + "charset", +] + [[package]] name = "convert_case" version = "0.4.0" @@ -1143,10 +1279,29 @@ version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" dependencies = [ + "percent-encoding", "time", "version_check", ] +[[package]] +name = "cookie_store" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9" +dependencies = [ + "cookie", + "document-features", + "idna", + "log", + "publicsuffix", + "serde", + "serde_derive", + "serde_json", + "time", + "url", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -1441,9 +1596,9 @@ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376" [[package]] name = "debug_timer" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "666ffd4494c077ad572420cc52aded853e1cac859147455f82b0bc578b442076" +checksum = "601b64630ed8e9306553e4b97e33516f9b4a69f520d0b25c5c7e93e5e93043d3" [[package]] name = "deranged" @@ -1485,6 +1640,7 @@ dependencies = [ "proc-macro2", "quote", "syn 2.0.106", + "unicode-xid", ] [[package]] @@ -1500,53 +1656,94 @@ dependencies = [ [[package]] name = "dioxus" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c5e29983134d7b38f2d4578afc649ce5df744d9a7e13a1b1a983376f1056f41" dependencies = [ - "dioxus-asset-resolver", - "dioxus-cli-config", + "dioxus-asset-resolver 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-config-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-config-macros 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-devtools 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-document 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-fullstack 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-hooks 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-html 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-logger 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-stores 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-web 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "manganis 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subsecond 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "warnings", +] + +[[package]] +name = "dioxus" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-config-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-config-macros", - "dioxus-core", + "dioxus-config-macros 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-desktop", - "dioxus-devtools", - "dioxus-document", - "dioxus-fullstack", - "dioxus-history", + "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-fullstack 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-fullstack-macro", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-liveview", - "dioxus-logger", + "dioxus-logger 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-native", "dioxus-router", "dioxus-server", - "dioxus-signals", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-ssr", - "dioxus-stores", - "dioxus-web", - "dioxus_server_macro", - "manganis", + "dioxus-stores 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-web 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "manganis 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "serde", - "subsecond", + "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "warnings", ] [[package]] name = "dioxus-asset-resolver" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b6782436b323a84b4d9f90cf2365b35a1cdb918191221f71865dcc2e70016b6" +dependencies = [ + "jni", + "manganis-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ndk", + "ndk-context", + "ndk-sys 0.6.0+11769913", + "thiserror 2.0.17", +] + +[[package]] +name = "dioxus-asset-resolver" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "dioxus-cli-config", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "http", "infer", "jni", "js-sys", - "manganis-core", + "manganis-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "ndk", "ndk-context", "ndk-sys 0.6.0+11769913", "percent-encoding", - "thiserror 2.0.16", + "thiserror 2.0.17", "tokio", "wasm-bindgen-futures", "web-sys", @@ -1555,7 +1752,16 @@ dependencies = [ [[package]] name = "dioxus-cli-config" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8cec511d8a05ed60071bb0088f07ec40325faf27a608fa19d65befdd842b57f" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "dioxus-cli-config" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "wasm-bindgen", ] @@ -1573,7 +1779,7 @@ dependencies = [ [[package]] name = "dioxus-config-macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "proc-macro2", "quote", @@ -1582,25 +1788,54 @@ dependencies = [ [[package]] name = "dioxus-config-macros" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349cae693022df3af125c9f794aef0ffec97f2e1d01c252d883149e7ca7a0324" + +[[package]] +name = "dioxus-config-macros" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" + +[[package]] +name = "dioxus-core" +version = "0.7.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07b55eccaa5c4f35f1755ea18a5716fe8ecba60ff1f25c52be6ceda2e6a52eb6" +dependencies = [ + "const_format", + "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel", + "futures-util", + "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "longest-increasing-subsequence", + "rustc-hash 2.1.1", + "rustversion", + "serde", + "slab", + "slotmap", + "subsecond 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", + "warnings", +] [[package]] name = "dioxus-core" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ + "anyhow", "const_format", - "dioxus-core-types", + "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "longest-increasing-subsequence", "rustc-hash 2.1.1", "rustversion", "serde", "slab", "slotmap", - "subsecond", + "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "tracing", "warnings", ] @@ -1621,7 +1856,7 @@ dependencies = [ [[package]] name = "dioxus-core-macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "convert_case 0.8.0", "dioxus-rsx 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", @@ -1633,35 +1868,42 @@ dependencies = [ [[package]] name = "dioxus-core-types" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0ef2a94b4ceb8f7a39f56a539d07e82b0358a49a0b95028ad48635975df29d7" + +[[package]] +name = "dioxus-core-types" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" [[package]] name = "dioxus-desktop" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "async-trait", "base64", + "bytes", "cocoa", "core-foundation 0.10.1", - "dioxus-asset-resolver", - "dioxus-cli-config", - "dioxus-core", - "dioxus-devtools", - "dioxus-document", - "dioxus-history", + "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html", - "dioxus-interpreter-js", - "dioxus-signals", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dunce", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "global-hotkey", "infer", "jni", - "lazy-js-bundle 0.7.0-rc.0", + "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "libc", "muda", "ndk", @@ -1679,7 +1921,7 @@ dependencies = [ "slab", "subtle", "tao", - "thiserror 2.0.16", + "thiserror 2.0.17", "tokio", "tracing", "tray-icon", @@ -1691,44 +1933,95 @@ dependencies = [ [[package]] name = "dioxus-devtools" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60af4e129968ab1713471ed0b29c3eefa4e8e09252429487d7a581e93c7ecfe5" dependencies = [ - "dioxus-cli-config", - "dioxus-core", - "dioxus-devtools-types", - "dioxus-signals", + "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-devtools-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_json", - "subsecond", - "thiserror 2.0.16", + "subsecond 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 2.0.17", "tracing", "tungstenite 0.27.0", "warnings", ] +[[package]] +name = "dioxus-devtools" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-devtools-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "futures-channel", + "futures-util", + "serde", + "serde_json", + "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "thiserror 2.0.17", + "tracing", + "tungstenite 0.27.0", + "warnings", +] + +[[package]] +name = "dioxus-devtools-types" +version = "0.7.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64274704b6a8d018112473cdce0b3db1dcccfa79bde445223592fe4e396ff5ef" +dependencies = [ + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "subsecond-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "dioxus-devtools-types" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "dioxus-core", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "serde", - "subsecond-types", + "subsecond-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", ] [[package]] name = "dioxus-document" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11c7f4ff62a842c026c74b9782dd9117a2310ec52de69d858a9e54b96b3bac15" dependencies = [ - "dioxus-core", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-html 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel", + "futures-util", + "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "serde_json", + "tracing", +] + +[[package]] +name = "dioxus-document" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types", - "dioxus-html", + "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "futures-channel", "futures-util", - "generational-box", - "lazy-js-bundle 0.7.0-rc.0", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "serde", "serde_json", "tracing", @@ -1737,54 +2030,155 @@ dependencies = [ [[package]] name = "dioxus-fullstack" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819981e8aa811d9b81ac3135a8a74db2f1fa7510473c3251f98eceb2c710632e" dependencies = [ "base64", "bytes", "ciborium", - "dioxus-core", - "dioxus-devtools", - "dioxus-document", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-devtools 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-document 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "dioxus-fullstack-hooks", "dioxus-fullstack-protocol", - "dioxus-history", - "dioxus-interpreter-js", - "dioxus-server", - "dioxus-web", + "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-web 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "dioxus_server_macro", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "http", "serde", "server_fn", "tracing", +] + +[[package]] +name = "dioxus-fullstack" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "anyhow", + "async-stream", + "async-tungstenite", + "axum", + "axum-core", + "axum-extra", + "base64", + "bytes", + "ciborium", + "const-str 0.7.0", + "const_format", + "content_disposition", + "derive_more 2.0.1", + "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-fullstack-core", + "dioxus-fullstack-macro", + "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "form_urlencoded", + "futures", + "futures-channel", + "futures-util", + "gloo-net", + "headers", + "http", + "http-body", + "http-body-util", + "inventory", + "js-sys", + "mime", + "pin-project", + "reqwest", + "rustversion", + "send_wrapper", + "serde", + "serde_json", + "serde_qs", + "serde_urlencoded", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tokio-tungstenite 0.27.0", + "tokio-util", + "tower", + "tower-http", + "tower-layer", + "tracing", + "tungstenite 0.27.0", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", "web-sys", + "xxhash-rust", +] + +[[package]] +name = "dioxus-fullstack-core" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "anyhow", + "axum-core", + "base64", + "ciborium", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "futures-channel", + "futures-util", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "http", + "inventory", + "serde", + "serde_json", + "thiserror 2.0.17", + "tracing", ] [[package]] name = "dioxus-fullstack-hooks" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef5fad61b2821b8f26c8498834920d617449d0b866aaac01b95284237f76e9d5" dependencies = [ - "dioxus-core", - "dioxus-document", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "dioxus-fullstack-protocol", - "dioxus-history", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals", + "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-hooks 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-channel", "serde", ] +[[package]] +name = "dioxus-fullstack-macro" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "const_format", + "convert_case 0.8.0", + "proc-macro2", + "quote", + "syn 2.0.106", + "xxhash-rust", +] + [[package]] name = "dioxus-fullstack-protocol" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2f266ad9e20be14b8899f2133dd942131f03e6749650e65e2aaec2c7f8a4bc1" dependencies = [ "base64", "ciborium", - "dioxus-core", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "tracing", ] @@ -1792,9 +2186,19 @@ dependencies = [ [[package]] name = "dioxus-history" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e9e34323717a78ea3f8ba5072ff484744a656e8d422932c19937b67f45113e" +dependencies = [ + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", +] + +[[package]] +name = "dioxus-history" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "dioxus-core", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "tracing", ] @@ -1804,11 +2208,11 @@ version = "0.7.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab776b9a156765cc7dd7876891c98b9ab06b1f995d33ff169b06ef4f23cfd437" dependencies = [ - "dioxus-core", - "dioxus-signals", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustversion", "slab", "tracing", @@ -1818,13 +2222,13 @@ dependencies = [ [[package]] name = "dioxus-hooks" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "dioxus-core", - "dioxus-signals", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "rustversion", "slab", "tracing", @@ -1834,20 +2238,44 @@ dependencies = [ [[package]] name = "dioxus-html" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "073e5b69a7b66e9cbb49530df8c4cf86bf2aff3322ba86a3d722f9d58cd9c54b" +dependencies = [ + "async-trait", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-hooks 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-html-internal-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "enumset", + "euclid", + "futures-channel", + "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "keyboard-types", + "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustversion", + "tracing", +] + +[[package]] +name = "dioxus-html" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "async-trait", - "dioxus-core", + "bytes", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types", + "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html-internal-macro", + "dioxus-html-internal-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "enumset", "euclid", "futures-channel", - "generational-box", + "futures-util", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "keyboard-types", - "lazy-js-bundle 0.7.0-rc.0", + "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "rustversion", "serde", "serde_json", @@ -1858,7 +2286,19 @@ dependencies = [ [[package]] name = "dioxus-html-internal-macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "162beea862dc888897a0b527db08724ede0f09e59fe081ab39caa0b085f40e10" +dependencies = [ + "convert_case 0.8.0", + "proc-macro2", + "quote", + "syn 2.0.106", +] + +[[package]] +name = "dioxus-html-internal-macro" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "convert_case 0.8.0", "proc-macro2", @@ -1869,11 +2309,11 @@ dependencies = [ [[package]] name = "dioxus-i18n" version = "0.4.3" -source = "git+https://github.com/dioxus-community/dioxus-i18n.git?branch=main#317c362e666b0a28f2fd413c68d916cc1af66782" +source = "git+https://github.com/ealmloff/dioxus-i18n?branch=bump-dioxus#94b7d898432fa64881ff163f8cf8b9343efd3023" dependencies = [ - "dioxus-lib", + "dioxus 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "fluent", - "thiserror 2.0.16", + "thiserror 2.0.17", "unic-langid", "walkdir", ] @@ -1881,15 +2321,12 @@ dependencies = [ [[package]] name = "dioxus-interpreter-js" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd2ef3fe9bddfcac6d2ccf123d4834b5c3d97e6f2be8fcbfc4943226d9d7d4fe" dependencies = [ - "dioxus-core", - "dioxus-core-types", - "dioxus-html", "js-sys", - "lazy-js-bundle 0.7.0-rc.0", + "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-hash 2.1.1", - "serde", "sledgehammer_bindgen", "sledgehammer_utils", "wasm-bindgen", @@ -1898,54 +2335,45 @@ dependencies = [ ] [[package]] -name = "dioxus-isrg" +name = "dioxus-interpreter-js" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "chrono", - "http", - "lru", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "js-sys", + "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "rustc-hash 2.1.1", - "thiserror 2.0.16", - "tracing", - "walkdir", -] - -[[package]] -name = "dioxus-lib" -version = "0.7.0-alpha.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3340a7eeebc207010d27dcf2b347c748dfd6a8605dc3624019f0c7a06e0d5d8b" -dependencies = [ - "dioxus-config-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core", - "dioxus-core-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-hooks 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-rsx 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-signals", + "serde", + "sledgehammer_bindgen", + "sledgehammer_utils", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", ] [[package]] name = "dioxus-liveview" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "axum", - "dioxus-cli-config", - "dioxus-core", - "dioxus-devtools", - "dioxus-document", - "dioxus-history", - "dioxus-html", - "dioxus-interpreter-js", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "rustc-hash 2.1.1", "serde", "serde_json", "slab", - "thiserror 2.0.16", + "thiserror 2.0.17", "tokio", "tokio-stream", "tokio-util", @@ -1955,9 +2383,22 @@ dependencies = [ [[package]] name = "dioxus-logger" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d39a7c4d1f848fa62d0e605aabce921cc8a95ccea3d17101a840d216471adb7" +dependencies = [ + "console_error_panic_hook", + "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", + "tracing-subscriber", + "tracing-wasm", +] + +[[package]] +name = "dioxus-logger" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "dioxus-cli-config", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "tracing", "tracing-subscriber", "tracing-wasm", @@ -1966,7 +2407,7 @@ dependencies = [ [[package]] name = "dioxus-native" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "anyrender", "anyrender_vello", @@ -1976,31 +2417,32 @@ dependencies = [ "blitz-paint", "blitz-shell", "blitz-traits", - "dioxus-asset-resolver", - "dioxus-cli-config", - "dioxus-core", - "dioxus-devtools", - "dioxus-document", - "dioxus-history", - "dioxus-html", + "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-native-dom", "futures-util", "keyboard-types", "rustc-hash 2.1.1", "tokio", "tracing", + "webbrowser", "winit", ] [[package]] name = "dioxus-native-dom" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "blitz-dom", "blitz-traits", - "dioxus-core", - "dioxus-html", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "futures-util", "keyboard-types", "rustc-hash 2.1.1", @@ -2011,7 +2453,7 @@ dependencies = [ name = "dioxus-primitives" version = "0.0.1" dependencies = [ - "dioxus", + "dioxus 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-time", "lazy-js-bundle 0.6.2", "time", @@ -2021,17 +2463,17 @@ dependencies = [ [[package]] name = "dioxus-router" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "dioxus-cli-config", - "dioxus-core", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-fullstack-hooks", - "dioxus-history", + "dioxus-fullstack-core", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-router-macro", - "dioxus-signals", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "percent-encoding", "rustversion", "tracing", @@ -2041,7 +2483,7 @@ dependencies = [ [[package]] name = "dioxus-router-macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "base16", "digest", @@ -2067,7 +2509,7 @@ dependencies = [ [[package]] name = "dioxus-rsx" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "proc-macro2", "proc-macro2-diagnostics", @@ -2078,61 +2520,85 @@ dependencies = [ [[package]] name = "dioxus-server" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ + "anyhow", "async-trait", "axum", "base64", "bytes", + "chrono", "ciborium", "dashmap", - "dioxus-cli-config", - "dioxus-core", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-devtools", - "dioxus-document", - "dioxus-fullstack-hooks", - "dioxus-fullstack-protocol", - "dioxus-history", - "dioxus-html", - "dioxus-interpreter-js", - "dioxus-isrg", + "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-fullstack-core", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-logger 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-router", - "dioxus-signals", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-ssr", "enumset", + "futures", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "http", + "http-body-util", "hyper", "hyper-util", "inventory", + "lru", "parking_lot", "pin-project", + "rustc-hash 2.1.1", "serde", - "server_fn", - "subsecond", - "thiserror 2.0.16", + "serde_json", + "serde_qs", + "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "thiserror 2.0.17", "tokio", + "tokio-tungstenite 0.27.0", "tokio-util", "tower", "tower-http", - "tower-layer", "tracing", "tracing-futures", - "web-sys", + "url", + "walkdir", +] + +[[package]] +name = "dioxus-signals" +version = "0.7.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1d0e70a8da969c0404f5ef8cf6f47042bea55608b582079f3ea3d9fff46125c" +dependencies = [ + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel", + "futures-util", + "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot", + "rustc-hash 2.1.1", + "tracing", + "warnings", ] [[package]] name = "dioxus-signals" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "dioxus-core", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "parking_lot", "rustc-hash 2.1.1", "tracing", @@ -2142,28 +2608,51 @@ dependencies = [ [[package]] name = "dioxus-ssr" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "askama_escape", - "dioxus-core", - "dioxus-core-types", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "rustc-hash 2.1.1", ] [[package]] name = "dioxus-stores" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5494e5aa7333f3be918741eeb6bfb4d1cbf28d25035a2a3c2c5bcebdc27b0b68" dependencies = [ - "dioxus-core", - "dioxus-signals", - "dioxus-stores-macro", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-stores-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "dioxus-stores" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-stores-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", +] + +[[package]] +name = "dioxus-stores-macro" +version = "0.7.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ecb7365b1a587a9f2340cf8f925a00b997d8d31b4ee25ecb21ca8bdf99c2c33" +dependencies = [ + "convert_case 0.8.0", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] name = "dioxus-stores-macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "convert_case 0.8.0", "proc-macro2", @@ -2176,7 +2665,7 @@ name = "dioxus-time" version = "0.7.0-rc.0" source = "git+https://github.com/ealmloff/dioxus-std?branch=0.7#5abb45906c47b4c864e1c06a3e6aebb1b5cae03c" dependencies = [ - "dioxus", + "dioxus 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures", "gloo-timers", "tokio", @@ -2185,40 +2674,74 @@ dependencies = [ [[package]] name = "dioxus-web" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34eb4f341b0203f7b1fe1804d4561a19a399bf7fa4821a5b87cff5fd89d834bd" dependencies = [ "async-trait", - "dioxus-cli-config", - "dioxus-core", - "dioxus-core-types", - "dioxus-devtools", - "dioxus-document", - "dioxus-fullstack-hooks", + "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-devtools 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-document 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", "dioxus-fullstack-protocol", - "dioxus-history", - "dioxus-html", - "dioxus-interpreter-js", - "dioxus-signals", + "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-html 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-interpreter-js 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-channel", + "futures-util", + "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "gloo-timers", + "js-sys", + "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-hash 2.1.1", + "serde", + "serde-wasm-bindgen", + "serde_json", + "tracing", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "dioxus-web" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +dependencies = [ + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-fullstack-core", + "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "futures-channel", "futures-util", - "generational-box", + "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "gloo-timers", "js-sys", - "lazy-js-bundle 0.7.0-rc.0", + "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "rustc-hash 2.1.1", + "send_wrapper", "serde", "serde-wasm-bindgen", "serde_json", "tracing", "wasm-bindgen", "wasm-bindgen-futures", + "wasm-streams", "web-sys", ] [[package]] name = "dioxus_server_macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a032e9eaa291ded578b6c368ba35dd18d052e1cbcf2395244e555edd1767e61" dependencies = [ "proc-macro2", "quote", @@ -2244,7 +2767,7 @@ dependencies = [ "libc", "option-ext", "redox_users", - "windows-sys 0.61.0", + "windows-sys 0.61.2", ] [[package]] @@ -2260,9 +2783,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" dependencies = [ "bitflags 2.9.4", - "block2 0.6.1", + "block2 0.6.2", "libc", - "objc2 0.6.2", + "objc2 0.6.3", ] [[package]] @@ -2282,7 +2805,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" dependencies = [ - "libloading 0.8.8", + "libloading 0.8.9", ] [[package]] @@ -2426,7 +2949,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.61.0", + "windows-sys 0.61.2", ] [[package]] @@ -2487,15 +3010,15 @@ dependencies = [ [[package]] name = "find-msvc-tools" -version = "0.1.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d" +checksum = "0399f9d26e5191ce32c498bebd31e7a3ceabc2745f0ac54af3f335126c3f24b3" [[package]] name = "flate2" -version = "1.1.2" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" +checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9" dependencies = [ "crc32fast", "miniz_oxide", @@ -2549,7 +3072,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "54f0d287c53ffd184d04d8677f590f4ac5379785529e5e08b1c8083acdd5c198" dependencies = [ "memchr", - "thiserror 2.0.16", + "thiserror 2.0.17", ] [[package]] @@ -2617,10 +3140,10 @@ dependencies = [ "hashbrown 0.15.5", "icu_locid", "memmap2", - "objc2 0.6.2", + "objc2 0.6.3", "objc2-core-foundation", "objc2-core-text", - "objc2-foundation 0.3.1", + "objc2-foundation 0.3.2", "peniko", "read-fonts 0.29.3", "roxmltree", @@ -2900,7 +3423,17 @@ dependencies = [ [[package]] name = "generational-box" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb058e0358ff765e719ab3e61629c5090fedb6a6ccf66479de21440a33d7f084" +dependencies = [ + "parking_lot", + "tracing", +] + +[[package]] +name = "generational-box" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "parking_lot", "tracing", @@ -2932,7 +3465,7 @@ version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" dependencies = [ - "unicode-width 0.2.1", + "unicode-width 0.2.2", ] [[package]] @@ -2953,8 +3486,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", + "js-sys", "libc", "wasi 0.11.1+wasi-snapshot-preview1", + "wasm-bindgen", ] [[package]] @@ -2964,9 +3499,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" dependencies = [ "cfg-if", + "js-sys", "libc", "r-efi", "wasi 0.14.4+wasi-0.2.4", + "wasm-bindgen", ] [[package]] @@ -3058,7 +3595,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" dependencies = [ "heck 0.4.1", - "proc-macro-crate 2.0.0", + "proc-macro-crate 2.0.2", "proc-macro-error", "proc-macro2", "quote", @@ -3083,10 +3620,10 @@ checksum = "b9247516746aa8e53411a0db9b62b0e24efbcf6a76e0ba73e5a91b512ddabed7" dependencies = [ "crossbeam-channel", "keyboard-types", - "objc2 0.6.2", - "objc2-app-kit 0.3.1", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", "once_cell", - "thiserror 2.0.16", + "thiserror 2.0.17", "windows-sys 0.59.0", "x11rb", "xkeysym", @@ -3325,14 +3862,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" [[package]] -name = "hashbrown" -version = "0.15.5" +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" + +[[package]] +name = "headers" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb" +dependencies = [ + "base64", + "bytes", + "headers-core", + "http", + "httpdate", + "mime", + "sha1", +] + +[[package]] +name = "headers-core" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash", + "http", ] [[package]] @@ -3486,6 +4053,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower-service", + "webpki-roots", ] [[package]] @@ -3506,9 +4074,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" +checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" dependencies = [ "base64", "bytes", @@ -3532,9 +4100,9 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.63" +version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" +checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -3765,12 +4333,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.11.1" +version = "2.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921" +checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" dependencies = [ "equivalent", - "hashbrown 0.15.5", + "hashbrown 0.16.0", ] [[package]] @@ -3909,9 +4477,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.78" +version = "0.3.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738" +checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" dependencies = [ "once_cell", "wasm-bindgen", @@ -3935,7 +4503,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76" dependencies = [ "libc", - "libloading 0.8.8", + "libloading 0.8.9", "pkg-config", ] @@ -3977,7 +4545,13 @@ checksum = "e49596223b9d9d4947a14a25c142a6e7d8ab3f27eb3ade269d238bb8b5c267e2" [[package]] name = "lazy-js-bundle" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e22c4abc3d491546025db72681ed8b1ff0e6e77d67f196460179b027d591b6ff" + +[[package]] +name = "lazy-js-bundle" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" [[package]] name = "lazy_static" @@ -4011,9 +4585,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.175" +version = "0.2.176" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" +checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" [[package]] name = "libloading" @@ -4027,12 +4601,12 @@ dependencies = [ [[package]] name = "libloading" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" +checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" dependencies = [ "cfg-if", - "windows-targets 0.53.3", + "windows-link 0.2.1", ] [[package]] @@ -4043,13 +4617,13 @@ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" [[package]] name = "libredox" -version = "0.1.9" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" +checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" dependencies = [ "bitflags 2.9.4", "libc", - "redox_syscall 0.5.17", + "redox_syscall 0.5.18", ] [[package]] @@ -4071,6 +4645,12 @@ dependencies = [ "x11", ] +[[package]] +name = "linebender_resource_handle" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4a5ff6bcca6c4867b1c4fd4ef63e4db7436ef363e0ad7531d1558856bae64f4" + [[package]] name = "linked-hash-map" version = "0.5.6" @@ -4103,11 +4683,10 @@ checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed" [[package]] name = "lock_api" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "autocfg", "scopeguard", ] @@ -4132,6 +4711,12 @@ dependencies = [ "hashbrown 0.15.5", ] +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + [[package]] name = "mac" version = "0.1.1" @@ -4172,32 +4757,69 @@ dependencies = [ [[package]] name = "manganis" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "105544bc1d466decccab19427eddb801b6e575bb4907410eb4fed604ed78d358" +dependencies = [ + "const-serialize 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "manganis-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "manganis-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "manganis" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "const-serialize", - "manganis-core", - "manganis-macro", + "const-serialize 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "manganis-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "manganis-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", +] + +[[package]] +name = "manganis-core" +version = "0.7.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d71ef461824c58f3d260c1f548f7a8aee2e0b6b805a503d15f8535a3a6272d7" +dependencies = [ + "const-serialize 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", ] [[package]] name = "manganis-core" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ - "const-serialize", - "dioxus-cli-config", - "dioxus-core-types", + "const-serialize 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "serde", ] [[package]] name = "manganis-macro" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06115a15f5d7bf6fcfee1b6979155cc51ab21ce7f06d907f6435d24175778f9e" +dependencies = [ + "dunce", + "macro-string", + "manganis-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2", + "quote", + "syn 2.0.106", +] + +[[package]] +name = "manganis-macro" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "dunce", "macro-string", - "manganis-core", + "manganis-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "proc-macro2", "quote", "syn 2.0.106", @@ -4273,9 +4895,9 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" [[package]] name = "memchr" -version = "2.7.5" +version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "memfd" @@ -4367,13 +4989,13 @@ dependencies = [ "gtk", "keyboard-types", "libxdo", - "objc2 0.6.2", - "objc2-app-kit 0.3.1", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", "objc2-core-foundation", - "objc2-foundation 0.3.1", + "objc2-foundation 0.3.2", "once_cell", "png", - "thiserror 2.0.16", + "thiserror 2.0.17", "windows-sys 0.60.2", ] @@ -4412,7 +5034,7 @@ dependencies = [ "spirv", "strum 0.26.3", "termcolor", - "thiserror 2.0.16", + "thiserror 2.0.17", "unicode-xid", ] @@ -4571,7 +5193,7 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", "syn 2.0.106", @@ -4604,9 +5226,9 @@ dependencies = [ [[package]] name = "objc2" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "561f357ba7f3a2a61563a186a163d0a3a5247e1089524a3981d49adb775078bc" +checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" dependencies = [ "objc2-encode", "objc2-exception-helper", @@ -4630,15 +5252,15 @@ dependencies = [ [[package]] name = "objc2-app-kit" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" +checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" dependencies = [ "bitflags 2.9.4", - "block2 0.6.1", - "objc2 0.6.2", + "block2 0.6.2", + "objc2 0.6.3", "objc2-core-foundation", - "objc2-foundation 0.3.1", + "objc2-foundation 0.3.2", ] [[package]] @@ -4679,20 +5301,20 @@ dependencies = [ [[package]] name = "objc2-core-foundation" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" +checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" dependencies = [ "bitflags 2.9.4", "dispatch2", - "objc2 0.6.2", + "objc2 0.6.3", ] [[package]] name = "objc2-core-graphics" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" +checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" dependencies = [ "bitflags 2.9.4", "objc2-core-foundation", @@ -4724,9 +5346,9 @@ dependencies = [ [[package]] name = "objc2-core-text" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ba833d4a1cb1aac330f8c973fd92b6ff1858e4aef5cdd00a255eefb28022fb5" +checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" dependencies = [ "bitflags 2.9.4", "objc2-core-foundation", @@ -4762,13 +5384,13 @@ dependencies = [ [[package]] name = "objc2-foundation" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" +checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" dependencies = [ "bitflags 2.9.4", - "block2 0.6.1", - "objc2 0.6.2", + "block2 0.6.2", + "objc2 0.6.3", "objc2-core-foundation", ] @@ -4842,14 +5464,14 @@ dependencies = [ [[package]] name = "objc2-ui-kit" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed" +checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" dependencies = [ "bitflags 2.9.4", - "objc2 0.6.2", + "objc2 0.6.3", "objc2-core-foundation", - "objc2-foundation 0.3.1", + "objc2-foundation 0.3.2", ] [[package]] @@ -4878,16 +5500,16 @@ dependencies = [ [[package]] name = "objc2-web-kit" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad" +checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" dependencies = [ "bitflags 2.9.4", - "block2 0.6.1", - "objc2 0.6.2", - "objc2-app-kit 0.3.1", + "block2 0.6.2", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", "objc2-core-foundation", - "objc2-foundation 0.3.1", + "objc2-foundation 0.3.2", ] [[package]] @@ -5056,9 +5678,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" [[package]] name = "parking_lot" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ "lock_api", "parking_lot_core", @@ -5066,15 +5688,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.11" +version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.17", + "redox_syscall 0.5.18", "smallvec", - "windows-targets 0.52.6", + "windows-link 0.2.1", ] [[package]] @@ -5098,12 +5720,13 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] name = "peniko" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f9529efd019889b2a205193c14ffb6e2839b54ed9d2720674f10f4b04d87ac9" +checksum = "9b44f9ddd2f480176b34278eb653ec1c8062f3b143a4e16eeff5ffac3334e288" dependencies = [ "color", "kurbo", + "linebender_resource_handle", "smallvec", ] @@ -5330,16 +5953,16 @@ dependencies = [ [[package]] name = "polling" -version = "3.10.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5bd19146350fe804f7cb2669c851c03d69da628803dab0d98018142aaa5d829" +checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" dependencies = [ "cfg-if", "concurrent-queue", "hermit-abi", "pin-project-lite", "rustix 1.1.2", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -5379,7 +6002,7 @@ checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa" name = "preview" version = "0.1.0" dependencies = [ - "dioxus", + "dioxus 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", "dioxus-i18n", "dioxus-primitives", "pulldown-cmark", @@ -5402,20 +6025,21 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "2.0.0" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" +checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" dependencies = [ - "toml_edit 0.20.7", + "toml_datetime 0.6.3", + "toml_edit 0.20.2", ] [[package]] name = "proc-macro-crate" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" +checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" dependencies = [ - "toml_edit 0.22.27", + "toml_edit 0.23.6", ] [[package]] @@ -5475,6 +6099,22 @@ version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773" +[[package]] +name = "psl-types" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" + +[[package]] +name = "publicsuffix" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" +dependencies = [ + "idna", + "psl-types", +] + [[package]] name = "pulldown-cmark" version = "0.13.0" @@ -5528,11 +6168,66 @@ dependencies = [ "memchr", ] +[[package]] +name = "quinn" +version = "0.11.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" +dependencies = [ + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash 2.1.1", + "rustls", + "socket2", + "thiserror 2.0.17", + "tokio", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-proto" +version = "0.11.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" +dependencies = [ + "bytes", + "getrandom 0.3.3", + "lru-slab", + "rand 0.9.2", + "ring", + "rustc-hash 2.1.1", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.17", + "tinyvec", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-udp" +version = "0.5.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" +dependencies = [ + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.60.2", +] + [[package]] name = "quote" -version = "1.0.40" +version = "1.0.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" dependencies = [ "proc-macro2", ] @@ -5711,6 +6406,16 @@ dependencies = [ "font-types", ] +[[package]] +name = "read-fonts" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8941f8e9d5f8ad3aebea330d01ac68c0167600eb31a86ecd86e97be4d13b51f5" +dependencies = [ + "bytemuck", + "font-types", +] + [[package]] name = "redox_syscall" version = "0.4.1" @@ -5722,9 +6427,9 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.17" +version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ "bitflags 2.9.4", ] @@ -5737,14 +6442,14 @@ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ "getrandom 0.2.16", "libredox", - "thiserror 2.0.16", + "thiserror 2.0.17", ] [[package]] name = "regex-automata" -version = "0.4.10" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" +checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" dependencies = [ "aho-corasick", "memchr", @@ -5771,6 +6476,8 @@ checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" dependencies = [ "base64", "bytes", + "cookie", + "cookie_store", "encoding_rs", "futures-core", "futures-util", @@ -5785,10 +6492,11 @@ dependencies = [ "js-sys", "log", "mime", - "mime_guess", "native-tls", "percent-encoding", "pin-project-lite", + "quinn", + "rustls", "rustls-pki-types", "serde", "serde_json", @@ -5796,6 +6504,7 @@ dependencies = [ "sync_wrapper", "tokio", "tokio-native-tls", + "tokio-rustls", "tokio-util", "tower", "tower-http", @@ -5805,6 +6514,7 @@ dependencies = [ "wasm-bindgen-futures", "wasm-streams", "web-sys", + "webpki-roots", ] [[package]] @@ -5814,14 +6524,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed" dependencies = [ "ashpd", - "block2 0.6.1", + "block2 0.6.2", "dispatch2", "js-sys", "log", - "objc2 0.6.2", - "objc2-app-kit 0.3.1", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", "objc2-core-foundation", - "objc2-foundation 0.3.1", + "objc2-foundation 0.3.2", "pollster", "raw-window-handle 0.6.2", "urlencoding", @@ -5901,16 +6611,17 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.11.0", - "windows-sys 0.61.0", + "windows-sys 0.61.2", ] [[package]] name = "rustls" -version = "0.23.31" +version = "0.23.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" +checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40" dependencies = [ "once_cell", + "ring", "rustls-pki-types", "rustls-webpki", "subtle", @@ -5923,14 +6634,15 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" dependencies = [ + "web-time", "zeroize", ] [[package]] name = "rustls-webpki" -version = "0.103.5" +version = "0.103.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5a37813727b78798e53c2bec3f5e8fe12a6d6f8389bf9ca7802add4c9905ad8" +checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf" dependencies = [ "ring", "rustls-pki-types", @@ -5982,7 +6694,7 @@ version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" dependencies = [ - "windows-sys 0.61.0", + "windows-sys 0.61.2", ] [[package]] @@ -6080,9 +6792,9 @@ checksum = "0f7d95a54511e0c7be3f51e8867aa8cf35148d7b9445d44de2f943e2b206e749" [[package]] name = "semver" -version = "1.0.26" +version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" [[package]] name = "send_wrapper" @@ -6095,10 +6807,11 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" dependencies = [ + "serde_core", "serde_derive", ] @@ -6113,11 +6826,20 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + [[package]] name = "serde_derive" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", @@ -6126,24 +6848,26 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.143" +version = "1.0.145" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" +checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" dependencies = [ "itoa", "memchr", "ryu", "serde", + "serde_core", ] [[package]] name = "serde_path_to_error" -version = "0.1.17" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" +checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" dependencies = [ "itoa", "serde", + "serde_core", ] [[package]] @@ -6154,7 +6878,7 @@ checksum = "f3faaf9e727533a19351a43cc5a8de957372163c7d35cc48c90b75cdda13c352" dependencies = [ "percent-encoding", "serde", - "thiserror 2.0.16", + "thiserror 2.0.17", ] [[package]] @@ -6195,39 +6919,23 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c27fbd25ecc066481e383e2ed62ab2480e708aa3fe46cba36e95f58e61dfd04" dependencies = [ - "axum", "base64", "bytes", - "const-str", + "const-str 0.6.4", "const_format", "dashmap", "futures", - "gloo-net", "http", - "http-body-util", - "hyper", - "inventory", - "js-sys", "pin-project-lite", - "reqwest", "rustc_version", "rustversion", - "send_wrapper", "serde", "serde_json", "serde_qs", "server_fn_macro_default", - "thiserror 2.0.16", + "thiserror 2.0.17", "throw_error", - "tokio", - "tokio-tungstenite 0.27.0", - "tower", - "tower-layer", "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", "xxhash-rust", ] @@ -6379,6 +7087,16 @@ dependencies = [ "read-fonts 0.33.1", ] +[[package]] +name = "skrifa" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37004372610e83ee2a4c69c7d896b41f33da6a3dc1a4fe07dd9b2629a549b1dc" +dependencies = [ + "bytemuck", + "read-fonts 0.34.0", +] + [[package]] name = "slab" version = "0.4.11" @@ -6767,16 +7485,35 @@ dependencies = [ [[package]] name = "subsecond" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b14ed4d86ab065ffbfdb994fd3e44daf5244b02cb643bd52949d74b703f36605" +dependencies = [ + "js-sys", + "libc", + "libloading 0.8.9", + "memfd", + "memmap2", + "serde", + "subsecond-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 2.0.17", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "subsecond" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "js-sys", "libc", - "libloading 0.8.8", + "libloading 0.8.9", "memfd", "memmap2", "serde", - "subsecond-types", - "thiserror 2.0.16", + "subsecond-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "thiserror 2.0.17", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -6785,7 +7522,16 @@ dependencies = [ [[package]] name = "subsecond-types" version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#eef4db67b1164934eb29b7ac4d4bcd693bba25a5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "275920a8a5634e47e12253971db85946798795bbe4d9dfc1debf23533d823983" +dependencies = [ + "serde", +] + +[[package]] +name = "subsecond-types" +version = "0.7.0-rc.0" +source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" dependencies = [ "serde", ] @@ -6814,11 +7560,11 @@ dependencies = [ [[package]] name = "swash" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f745de914febc7c9ab4388dfaf94bbc87e69f57bb41133a9b0c84d4be49856f3" +checksum = "47846491253e976bdd07d0f9cc24b7daf24720d11309302ccbbc6e6b6e53550a" dependencies = [ - "skrifa 0.31.3", + "skrifa 0.36.0", "yazi", "zeno", ] @@ -6867,12 +7613,11 @@ dependencies = [ [[package]] name = "syntect" -version = "5.2.0" +version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1" +checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925" dependencies = [ "bincode", - "bitflags 1.3.2", "flate2", "fnv", "once_cell", @@ -6882,7 +7627,7 @@ dependencies = [ "serde", "serde_derive", "serde_json", - "thiserror 1.0.69", + "thiserror 2.0.17", "walkdir", "yaml-rust", ] @@ -6940,7 +7685,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "959469667dbcea91e5485fc48ba7dd6023face91bb0f1a14681a70f99847c3f7" dependencies = [ "bitflags 2.9.4", - "block2 0.6.1", + "block2 0.6.2", "core-foundation 0.10.1", "core-graphics 0.24.0", "crossbeam-channel", @@ -6957,9 +7702,9 @@ dependencies = [ "ndk", "ndk-context", "ndk-sys 0.6.0+11769913", - "objc2 0.6.2", - "objc2-app-kit 0.3.1", - "objc2-foundation 0.3.1", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", + "objc2-foundation 0.3.2", "once_cell", "parking_lot", "raw-window-handle 0.5.2", @@ -6993,15 +7738,15 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tempfile" -version = "3.22.0" +version = "3.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53" +checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" dependencies = [ "fastrand", "getrandom 0.3.3", "once_cell", "rustix 1.1.2", - "windows-sys 0.61.0", + "windows-sys 0.61.2", ] [[package]] @@ -7041,11 +7786,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.16" +version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0" +checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" dependencies = [ - "thiserror-impl 2.0.16", + "thiserror-impl 2.0.17", ] [[package]] @@ -7061,9 +7806,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.16" +version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960" +checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" dependencies = [ "proc-macro2", "quote", @@ -7249,9 +7994,9 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.2" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ "rustls", "tokio", @@ -7266,30 +8011,31 @@ dependencies = [ "futures-core", "pin-project-lite", "tokio", + "tokio-util", ] [[package]] name = "tokio-tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" +checksum = "489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1" dependencies = [ "futures-util", "log", "tokio", - "tungstenite 0.26.2", + "tungstenite 0.27.0", ] [[package]] name = "tokio-tungstenite" -version = "0.27.0" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1" +checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857" dependencies = [ "futures-util", "log", "tokio", - "tungstenite 0.27.0", + "tungstenite 0.28.0", ] [[package]] @@ -7300,6 +8046,7 @@ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" dependencies = [ "bytes", "futures-core", + "futures-io", "futures-sink", "futures-util", "pin-project-lite", @@ -7308,25 +8055,34 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.23" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" dependencies = [ "serde", "serde_spanned", - "toml_datetime", - "toml_edit 0.22.27", + "toml_datetime 0.6.3", + "toml_edit 0.20.2", ] [[package]] name = "toml_datetime" -version = "0.6.11" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" dependencies = [ "serde", ] +[[package]] +name = "toml_datetime" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" version = "0.19.15" @@ -7334,31 +8090,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ "indexmap", - "toml_datetime", + "toml_datetime 0.6.3", "winnow 0.5.40", ] [[package]] name = "toml_edit" -version = "0.20.7" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" dependencies = [ "indexmap", - "toml_datetime", + "serde", + "serde_spanned", + "toml_datetime 0.6.3", "winnow 0.5.40", ] [[package]] name = "toml_edit" -version = "0.22.27" +version = "0.23.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" +checksum = "f3effe7c0e86fdff4f69cdd2ccc1b96f933e24811c5441d44904e8683e27184b" dependencies = [ "indexmap", - "serde", - "serde_spanned", - "toml_datetime", + "toml_datetime 0.7.2", + "toml_parser", + "winnow 0.7.13", +] + +[[package]] +name = "toml_parser" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627" +dependencies = [ "winnow 0.7.13", ] @@ -7496,14 +8262,14 @@ dependencies = [ "dirs", "libappindicator", "muda", - "objc2 0.6.2", - "objc2-app-kit 0.3.1", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", "objc2-core-foundation", "objc2-core-graphics", - "objc2-foundation 0.3.1", + "objc2-foundation 0.3.2", "once_cell", "png", - "thiserror 2.0.16", + "thiserror 2.0.17", "windows-sys 0.59.0", ] @@ -7524,37 +8290,37 @@ dependencies = [ [[package]] name = "tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" +checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" dependencies = [ "bytes", "data-encoding", "http", "httparse", "log", + "native-tls", "rand 0.9.2", + "rustls", "sha1", - "thiserror 2.0.16", + "thiserror 2.0.17", "utf-8", ] [[package]] name = "tungstenite" -version = "0.27.0" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" +checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442" dependencies = [ "bytes", "data-encoding", "http", "httparse", "log", - "native-tls", "rand 0.9.2", - "rustls", "sha1", - "thiserror 2.0.16", + "thiserror 2.0.17", "utf-8", ] @@ -7569,9 +8335,9 @@ dependencies = [ [[package]] name = "typenum" -version = "1.18.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" [[package]] name = "uds_windows" @@ -7698,9 +8464,9 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "unicode-width" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" [[package]] name = "unicode-xid" @@ -7812,7 +8578,7 @@ dependencies = [ "png", "skrifa 0.35.0", "static_assertions", - "thiserror 2.0.16", + "thiserror 2.0.17", "vello_encoding", "vello_shaders", "wgpu", @@ -7839,7 +8605,7 @@ checksum = "b2ebea426bb2f95b7610bca09178b03d809ede1d3c500a9acf6eca43e8f200be" dependencies = [ "bytemuck", "naga", - "thiserror 2.0.16", + "thiserror 2.0.17", "vello_encoding", ] @@ -7925,9 +8691,9 @@ dependencies = [ [[package]] name = "wasm-bindgen" -version = "0.2.101" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b" +checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" dependencies = [ "cfg-if", "once_cell", @@ -7938,9 +8704,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.101" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb" +checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" dependencies = [ "bumpalo", "log", @@ -7952,9 +8718,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.51" +version = "0.4.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ca85039a9b469b38336411d6d6ced91f3fc87109a2a27b0c197663f5144dffe" +checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" dependencies = [ "cfg-if", "js-sys", @@ -7965,9 +8731,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.101" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d" +checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -7975,9 +8741,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.101" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa" +checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" dependencies = [ "proc-macro2", "quote", @@ -7988,9 +8754,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.101" +version = "0.2.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1" +checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" dependencies = [ "unicode-ident", ] @@ -8119,9 +8885,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.78" +version = "0.3.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77e4b637749ff0d92b8fad63aa1f7cff3cbe125fd49c175cd6345e7272638b12" +checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" dependencies = [ "js-sys", "wasm-bindgen", @@ -8159,8 +8925,8 @@ dependencies = [ "jni", "log", "ndk-context", - "objc2 0.6.2", - "objc2-foundation 0.3.1", + "objc2 0.6.3", + "objc2-foundation 0.3.2", "url", "web-sys", ] @@ -8209,6 +8975,15 @@ dependencies = [ "system-deps", ] +[[package]] +name = "webpki-roots" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" +dependencies = [ + "rustls-pki-types", +] + [[package]] name = "webview2-com" version = "0.38.0" @@ -8219,8 +8994,8 @@ dependencies = [ "webview2-com-sys", "windows 0.61.3", "windows-core 0.61.2", - "windows-implement 0.60.0", - "windows-interface 0.59.1", + "windows-implement 0.60.2", + "windows-interface 0.59.3", ] [[package]] @@ -8240,7 +9015,7 @@ version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c" dependencies = [ - "thiserror 2.0.16", + "thiserror 2.0.17", "windows 0.61.3", "windows-core 0.61.2", ] @@ -8297,7 +9072,7 @@ dependencies = [ "raw-window-handle 0.6.2", "rustc-hash 1.1.0", "smallvec", - "thiserror 2.0.16", + "thiserror 2.0.17", "wgpu-hal", "wgpu-types", ] @@ -8325,7 +9100,7 @@ dependencies = [ "js-sys", "khronos-egl", "libc", - "libloading 0.8.8", + "libloading 0.8.9", "log", "metal", "naga", @@ -8340,7 +9115,7 @@ dependencies = [ "renderdoc-sys", "rustc-hash 1.1.0", "smallvec", - "thiserror 2.0.16", + "thiserror 2.0.17", "wasm-bindgen", "web-sys", "wgpu-types", @@ -8382,7 +9157,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.0", + "windows-sys 0.61.2", ] [[package]] @@ -8442,8 +9217,8 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" dependencies = [ - "windows-implement 0.60.0", - "windows-interface 0.59.1", + "windows-implement 0.60.2", + "windows-interface 0.59.3", "windows-link 0.1.3", "windows-result 0.3.4", "windows-strings 0.4.2", @@ -8473,9 +9248,9 @@ dependencies = [ [[package]] name = "windows-implement" -version = "0.60.0" +version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", @@ -8495,9 +9270,9 @@ dependencies = [ [[package]] name = "windows-interface" -version = "0.59.1" +version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", @@ -8512,9 +9287,9 @@ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" [[package]] name = "windows-link" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] name = "windows-numerics" @@ -8607,16 +9382,16 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" dependencies = [ - "windows-targets 0.53.3", + "windows-targets 0.53.5", ] [[package]] name = "windows-sys" -version = "0.61.0" +version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-link 0.2.0", + "windows-link 0.2.1", ] [[package]] @@ -8652,19 +9427,19 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.53.3" +version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ - "windows-link 0.1.3", - "windows_aarch64_gnullvm 0.53.0", - "windows_aarch64_msvc 0.53.0", - "windows_i686_gnu 0.53.0", - "windows_i686_gnullvm 0.53.0", - "windows_i686_msvc 0.53.0", - "windows_x86_64_gnu 0.53.0", - "windows_x86_64_gnullvm 0.53.0", - "windows_x86_64_msvc 0.53.0", + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", ] [[package]] @@ -8678,11 +9453,11 @@ dependencies = [ [[package]] name = "windows-version" -version = "0.1.5" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69e061eb0a22b4a1d778ad70f7575ec7845490abb35b08fa320df7895882cacb" +checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" dependencies = [ - "windows-link 0.2.0", + "windows-link 0.2.1", ] [[package]] @@ -8699,9 +9474,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" [[package]] name = "windows_aarch64_msvc" @@ -8717,9 +9492,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_aarch64_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" [[package]] name = "windows_i686_gnu" @@ -8735,9 +9510,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" [[package]] name = "windows_i686_gnu" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" [[package]] name = "windows_i686_gnullvm" @@ -8747,9 +9522,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" [[package]] name = "windows_i686_msvc" @@ -8765,9 +9540,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_i686_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" [[package]] name = "windows_x86_64_gnu" @@ -8783,9 +9558,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnu" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" [[package]] name = "windows_x86_64_gnullvm" @@ -8801,9 +9576,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" [[package]] name = "windows_x86_64_msvc" @@ -8819,9 +9594,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "windows_x86_64_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winit" @@ -8918,7 +9693,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12a714d9ba7075aae04a6e50229d6109e3d584774b99a6a8c60de1698ca111b9" dependencies = [ "base64", - "block2 0.6.1", + "block2 0.6.2", "cookie", "crossbeam-channel", "dpi", @@ -8931,11 +9706,11 @@ dependencies = [ "kuchikiki", "libc", "ndk", - "objc2 0.6.2", - "objc2-app-kit 0.3.1", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", "objc2-core-foundation", - "objc2-foundation 0.3.1", - "objc2-ui-kit 0.3.1", + "objc2-foundation 0.3.2", + "objc2-ui-kit 0.3.2", "objc2-web-kit", "once_cell", "percent-encoding", @@ -8943,7 +9718,7 @@ dependencies = [ "sha2", "soup3", "tao-macros", - "thiserror 2.0.16", + "thiserror 2.0.17", "url", "webkit2gtk", "webkit2gtk-sys", @@ -8983,7 +9758,7 @@ dependencies = [ "as-raw-xcb-connection", "gethostname", "libc", - "libloading 0.8.8", + "libloading 0.8.9", "once_cell", "rustix 1.1.2", "x11rb-protocol", @@ -9193,7 +9968,7 @@ version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", "syn 2.0.106", @@ -9206,7 +9981,7 @@ version = "5.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57e797a9c847ed3ccc5b6254e8bcce056494b375b511b3d6edcec0aeb4defaca" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", "syn 2.0.106", @@ -9300,9 +10075,9 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.8.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" +checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" [[package]] name = "zerovec" @@ -9375,7 +10150,7 @@ version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", "syn 2.0.106", @@ -9388,7 +10163,7 @@ version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6643fd0b26a46d226bd90d3f07c1b5321fe9bb7f04673cb37ac6d6883885b68e" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", "syn 2.0.106", diff --git a/Cargo.toml b/Cargo.toml index a69e6ff5..5dfe0135 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,11 +5,5 @@ members = ["primitives", "preview"] [workspace.dependencies] dioxus-primitives = { path = "primitives" } -dioxus = "^0.7.0-rc.0" -tracing = { version = "0.1", features = ["std"] } - -[patch.crates-io] dioxus = { git = "https://github.com/DioxusLabs/dioxus" } -dioxus-core = { git = "https://github.com/DioxusLabs/dioxus" } -dioxus-signals = { git = "https://github.com/DioxusLabs/dioxus" } -generational-box = { git = "https://github.com/DioxusLabs/dioxus" } +tracing = { version = "0.1", features = ["std"] } diff --git a/preview/Cargo.toml b/preview/Cargo.toml index 86303814..331853f4 100644 --- a/preview/Cargo.toml +++ b/preview/Cargo.toml @@ -7,7 +7,7 @@ rust-version = "1.80.0" [dependencies] dioxus = { workspace = true, features = ["router"] } dioxus-primitives.workspace = true -dioxus-i18n = { git = "https://github.com/dioxus-community/dioxus-i18n.git", branch = "main" } +dioxus-i18n = { git = "https://github.com/ealmloff/dioxus-i18n", branch = "bump-dioxus" } unic-langid = { version = "0.9", features = ["macros"] } strum = { version = "0.27.2", features = ["derive"] } tracing.workspace = true diff --git a/primitives/src/slider.rs b/primitives/src/slider.rs index 4f8b311a..866b38fb 100644 --- a/primitives/src/slider.rs +++ b/primitives/src/slider.rs @@ -43,7 +43,7 @@ impl Pointer { } static POINTERS: GlobalSignal> = Global::new(|| { - let runtime = Runtime::current().unwrap(); + let runtime = Runtime::current(); queue_effect(move || { runtime.spawn(ScopeId::ROOT, async move { let mut pointer_updates = dioxus::document::eval( From 82bd90dc73b478f7605a4275295b7c2deaf2604d Mon Sep 17 00:00:00 2001 From: Evan Almloff Date: Thu, 9 Oct 2025 11:22:41 -0500 Subject: [PATCH 2/2] bump to rc.1 --- Cargo.lock | 1547 +++++++++++++++++++--------------------------------- Cargo.toml | 2 +- 2 files changed, 572 insertions(+), 977 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7cfef49e..63c727e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -169,7 +169,7 @@ dependencies = [ "log", "ndk", "ndk-context", - "ndk-sys 0.6.0+11769913", + "ndk-sys", "num_enum", "thiserror 1.0.69", ] @@ -197,24 +197,24 @@ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" [[package]] name = "anyrender" -version = "0.5.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6d136c78cf4c024f4433e2f775048c72c4912df168f9534652c5389217ee3bd" +checksum = "13df215023d4e8c644b39202b468be3ee6d098dcfef1bb3ab7c259dfaf48d7f1" dependencies = [ - "kurbo", + "kurbo 0.12.0", "peniko", "raw-window-handle 0.6.2", ] [[package]] name = "anyrender_svg" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6811ea5c49d3ebad565d14d82564d21e24462cb81a2480818b9b57ce599eca1a" +checksum = "bfac9c4fd03fce2567350bc6ac736f90e4251978028e3b89152b32734c3e7738" dependencies = [ "anyrender", "image", - "kurbo", + "kurbo 0.12.0", "peniko", "thiserror 2.0.17", "usvg", @@ -222,20 +222,21 @@ dependencies = [ [[package]] name = "anyrender_vello" -version = "0.5.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c7bfb13ee0f53fb0bd500edb21f601e48e86d95d739c1a0a92579c7982b73d3" +checksum = "ab3c79655b730ce2ad2461e1770bf2786adcb8b411429cb4730748592325416b" dependencies = [ "anyrender", "debug_timer", "futures-intrusive", - "kurbo", + "kurbo 0.12.0", "peniko", "pollster", "raw-window-handle 0.6.2", "rustc-hash 1.1.0", "vello", "wgpu", + "wgpu_context", ] [[package]] @@ -248,6 +249,23 @@ dependencies = [ "serde", ] +[[package]] +name = "arboard" +version = "3.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf" +dependencies = [ + "clipboard-win", + "log", + "objc2 0.6.3", + "objc2-app-kit 0.3.2", + "objc2-foundation 0.3.2", + "parking_lot", + "percent-encoding", + "windows-sys 0.60.2", + "x11rb", +] + [[package]] name = "arrayref" version = "0.3.9" @@ -733,9 +751,9 @@ dependencies = [ [[package]] name = "blitz-dom" -version = "0.1.4" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b40d275ae1ea7c6b70233ebd6ed4278038ab4d00dcc1812bca14c9c3ab065116" +checksum = "961605e9c4cc60eb93bc54172650d3f7b868d15a6e3345419f5e76d1df367b45" dependencies = [ "accesskit", "app_units", @@ -751,14 +769,14 @@ dependencies = [ "html-escape", "image", "keyboard-types", + "linebender_resource_handle", "markup5ever 0.35.0", "objc2 0.6.3", "parley", - "peniko", "percent-encoding", "rayon", - "selectors 0.31.0", - "skrifa 0.31.3", + "selectors 0.32.0", + "skrifa 0.37.0", "slab", "smallvec", "stylo", @@ -774,9 +792,9 @@ dependencies = [ [[package]] name = "blitz-html" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58dcb1b0ff3be0a452e39f84d3f9117a28df98a99c25351d8506910ea142d3cd" +checksum = "e77adcd3cb60e67d365bc897c6120ecb684627f2e2265c2bb75b12cc6c4bc4de" dependencies = [ "blitz-dom", "blitz-traits", @@ -786,9 +804,9 @@ dependencies = [ [[package]] name = "blitz-net" -version = "0.1.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2434788de88b5b6b10a4b71b08284be3126633caa53c15063a2bf322ef6c6202" +checksum = "0583c80a179a95a08adeb30c6c25dfeaa9d6e9314072f3c81a7976dee8d7a562" dependencies = [ "blitz-traits", "data-url", @@ -798,9 +816,9 @@ dependencies = [ [[package]] name = "blitz-paint" -version = "0.1.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5442484c1401ff358249d7390783c0bf3c71fd6968551fcc8c55809a0db47a87" +checksum = "027aa42b3795589c9d7ae0238ac3087f9f22b58f9643fc22c4dc1ef1ef3413b2" dependencies = [ "anyrender", "anyrender_svg", @@ -808,39 +826,40 @@ dependencies = [ "blitz-traits", "color", "euclid", - "kurbo", + "kurbo 0.12.0", "parley", "peniko", "stylo", "taffy", - "tracing", "usvg", ] [[package]] name = "blitz-shell" -version = "0.1.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14603c202d692b179db363ff1819578f80ee266f9ce6bd8b4efb3e7122cbdbc0" +checksum = "d0c3e586f0547855cd738c41cb4700bc0889c34ad5d0ad082f532c4ac0eb0c4e" dependencies = [ "accesskit", "accesskit_winit", "android-activity", "anyrender", + "arboard", "blitz-dom", "blitz-paint", "blitz-traits", "futures-util", "keyboard-types", + "rfd", "tracing", "winit", ] [[package]] name = "blitz-traits" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28632c6f78fa8a70c11f88df2c0fe459c1391acf2cf1032040a57e991f4b5512" +checksum = "6cd87a5b7bc1bc3d546aeb28d0867ff3191e9c4e85452e1808931200a4bc49d4" dependencies = [ "bitflags 2.9.4", "bytes", @@ -1097,6 +1116,15 @@ dependencies = [ "half", ] +[[package]] +name = "clipboard-win" +version = "5.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4" +dependencies = [ + "error-code", +] + [[package]] name = "cocoa" version = "0.26.1" @@ -1128,12 +1156,13 @@ dependencies = [ [[package]] name = "codespan-reporting" -version = "0.11.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81" dependencies = [ + "serde", "termcolor", - "unicode-width 0.1.14", + "unicode-width", ] [[package]] @@ -1167,62 +1196,27 @@ dependencies = [ "crossbeam-utils", ] -[[package]] -name = "console_error_panic_hook" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" -dependencies = [ - "cfg-if", - "wasm-bindgen", -] - [[package]] name = "const-serialize" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c02a1f46ffe1c6f05edf568a7d8e2ab477c75a6ec5f33d2b83ce54fc3f096ca" -dependencies = [ - "const-serialize-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde", -] - -[[package]] -name = "const-serialize" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "62fa1b64a9432bd3ec5dfc7ed000b03a6bf2edb9e67bbe15e47c319506198c4c" dependencies = [ - "const-serialize-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "const-serialize-macro", "serde", ] [[package]] name = "const-serialize-macro" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1da74b91de7c3426afaed28ed514bc4cd39821eeecf9f32dc424023310a63ae4" +checksum = "983992de580b235fff6a419247007b298cd2e7da0f11ee2491152cae49fa93f7" dependencies = [ "proc-macro2", "quote", "syn 2.0.106", ] -[[package]] -name = "const-serialize-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", -] - -[[package]] -name = "const-str" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "451d0640545a0553814b4c646eb549343561618838e9b42495f466131fe3ad49" - [[package]] name = "const-str" version = "0.7.0" @@ -1596,9 +1590,9 @@ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376" [[package]] name = "debug_timer" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "601b64630ed8e9306553e4b97e33516f9b4a69f520d0b25c5c7e93e5e93043d3" +checksum = "da220af51a1a335e9a930beaaef53d261e41ea9eecfb3d973a3ddae1a7284b9c" [[package]] name = "deranged" @@ -1655,93 +1649,54 @@ dependencies = [ [[package]] name = "dioxus" -version = "0.7.0-rc.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c5e29983134d7b38f2d4578afc649ce5df744d9a7e13a1b1a983376f1056f41" -dependencies = [ - "dioxus-asset-resolver 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-config-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-config-macros 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-devtools 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-document 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-fullstack 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-hooks 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-html 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-logger 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-stores 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-web 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "manganis 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "subsecond 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "warnings", -] - -[[package]] -name = "dioxus" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-config-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-config-macros 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfab61caa2b10a905998c9cb5cb1717b8ce858f3cec009efb19fc91b159f2120" +dependencies = [ + "dioxus-asset-resolver", + "dioxus-cli-config", + "dioxus-config-macro", + "dioxus-config-macros", + "dioxus-core", + "dioxus-core-macro", "dioxus-desktop", - "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-fullstack 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-devtools", + "dioxus-document", + "dioxus-fullstack", "dioxus-fullstack-macro", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history", + "dioxus-hooks", + "dioxus-html", "dioxus-liveview", - "dioxus-logger 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-logger", "dioxus-native", "dioxus-router", "dioxus-server", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals", "dioxus-ssr", - "dioxus-stores 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-web 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "manganis 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-stores", + "dioxus-web", + "manganis", "serde", - "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "subsecond", "warnings", ] [[package]] name = "dioxus-asset-resolver" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b6782436b323a84b4d9f90cf2365b35a1cdb918191221f71865dcc2e70016b6" -dependencies = [ - "jni", - "manganis-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ndk", - "ndk-context", - "ndk-sys 0.6.0+11769913", - "thiserror 2.0.17", -] - -[[package]] -name = "dioxus-asset-resolver" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "25dcd9492970659cf77c1afcb79270ad62a3bf5ab1d90f12f565b26fd9ba2507" dependencies = [ - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config", "http", "infer", "jni", "js-sys", - "manganis-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "manganis-core", "ndk", "ndk-context", - "ndk-sys 0.6.0+11769913", + "ndk-sys", "percent-encoding", "thiserror 2.0.17", "tokio", @@ -1751,35 +1706,18 @@ dependencies = [ [[package]] name = "dioxus-cli-config" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8cec511d8a05ed60071bb0088f07ec40325faf27a608fa19d65befdd842b57f" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "dioxus-cli-config" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "231a1a85b7977e938e55db0c9bd04893830e8ee72a5f0b610ce927939887718f" dependencies = [ "wasm-bindgen", ] [[package]] name = "dioxus-config-macro" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0711887c38dcebd391bfa5a0759c79ffcc5b0c21ee120cf3d99c42346eb626d" -dependencies = [ - "proc-macro2", - "quote", -] - -[[package]] -name = "dioxus-config-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "79022b079edb218464680678b6c9069f417f2185be021675be060e5c3be394d8" dependencies = [ "proc-macro2", "quote", @@ -1787,79 +1725,41 @@ dependencies = [ [[package]] name = "dioxus-config-macros" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349cae693022df3af125c9f794aef0ffec97f2e1d01c252d883149e7ca7a0324" - -[[package]] -name = "dioxus-config-macros" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "ee30f3e7b9faa3214de9e67e1ee39a4c1cccc600286cd31ad9f4b662d1bd62a4" [[package]] name = "dioxus-core" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07b55eccaa5c4f35f1755ea18a5716fe8ecba60ff1f25c52be6ceda2e6a52eb6" -dependencies = [ - "const_format", - "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-channel", - "futures-util", - "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "longest-increasing-subsequence", - "rustc-hash 2.1.1", - "rustversion", - "serde", - "slab", - "slotmap", - "subsecond 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tracing", - "warnings", -] - -[[package]] -name = "dioxus-core" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "0cdb8ce8b66e981a0ce943184efa6dcdce06852f701642e0570648bec313596a" dependencies = [ "anyhow", "const_format", - "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core-types", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "longest-increasing-subsequence", "rustc-hash 2.1.1", "rustversion", "serde", "slab", "slotmap", - "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "subsecond", "tracing", "warnings", ] [[package]] name = "dioxus-core-macro" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9280f81c8d58863b3077f1b7ca097e2f2b28d30a5aa02a656fbf72b0aee1bd9f" -dependencies = [ - "convert_case 0.8.0", - "dioxus-rsx 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2", - "quote", - "syn 2.0.106", -] - -[[package]] -name = "dioxus-core-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "bcf7bb96b7cd7bea18be827b720f35f15db8b493d1832e69277539eaf336897a" dependencies = [ "convert_case 0.8.0", - "dioxus-rsx 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-rsx", "proc-macro2", "quote", "syn 2.0.106", @@ -1867,48 +1767,44 @@ dependencies = [ [[package]] name = "dioxus-core-types" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0ef2a94b4ceb8f7a39f56a539d07e82b0358a49a0b95028ad48635975df29d7" - -[[package]] -name = "dioxus-core-types" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "2f6ed5dc0c2fac63830b52c613be5380fc1d9e48981b65cd7a1771c725ba4b69" [[package]] name = "dioxus-desktop" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9417be8a0d0bfdcdecb0a28bd9728bfd23bcc24d2b1d624e0298d8cbd576a911" dependencies = [ "async-trait", "base64", "bytes", "cocoa", "core-foundation 0.10.1", - "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-asset-resolver", + "dioxus-cli-config", + "dioxus-core", + "dioxus-devtools", + "dioxus-document", + "dioxus-history", + "dioxus-hooks", + "dioxus-html", + "dioxus-interpreter-js", + "dioxus-signals", "dunce", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "global-hotkey", "infer", "jni", - "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "lazy-js-bundle 0.7.0-rc.1", "libc", "muda", "ndk", "ndk-context", - "ndk-sys 0.6.0+11769913", + "ndk-sys", "objc", "objc_id", "percent-encoding", @@ -1932,37 +1828,19 @@ dependencies = [ [[package]] name = "dioxus-devtools" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60af4e129968ab1713471ed0b29c3eefa4e8e09252429487d7a581e93c7ecfe5" +checksum = "aee75595feb78aaf4101f95699b1323bbf7910ce5cfeec730725ec7781c88317" dependencies = [ - "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-devtools-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde", - "serde_json", - "subsecond 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "thiserror 2.0.17", - "tracing", - "tungstenite 0.27.0", - "warnings", -] - -[[package]] -name = "dioxus-devtools" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-devtools-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config", + "dioxus-core", + "dioxus-devtools-types", + "dioxus-signals", "futures-channel", "futures-util", "serde", "serde_json", - "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "subsecond", "thiserror 2.0.17", "tracing", "tungstenite 0.27.0", @@ -1971,57 +1849,29 @@ dependencies = [ [[package]] name = "dioxus-devtools-types" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64274704b6a8d018112473cdce0b3db1dcccfa79bde445223592fe4e396ff5ef" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde", - "subsecond-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "dioxus-devtools-types" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "cc965cdbe70c85e15e1d172546213dde0941afa2e1e0ff72510a5eea69db03e4" dependencies = [ - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", "serde", - "subsecond-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "subsecond-types", ] [[package]] name = "dioxus-document" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11c7f4ff62a842c026c74b9782dd9117a2310ec52de69d858a9e54b96b3bac15" +checksum = "923edda3e26de60eb1954bf8bbe562dab891ee207f97bded3469b7b97ec27325" dependencies = [ - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-html 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus-core", + "dioxus-core-macro", + "dioxus-core-types", + "dioxus-html", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde", - "serde_json", - "tracing", -] - -[[package]] -name = "dioxus-document" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "futures-channel", - "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", + "lazy-js-bundle 0.7.0-rc.1", "serde", "serde_json", "tracing", @@ -2029,34 +1879,9 @@ dependencies = [ [[package]] name = "dioxus-fullstack" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819981e8aa811d9b81ac3135a8a74db2f1fa7510473c3251f98eceb2c710632e" -dependencies = [ - "base64", - "bytes", - "ciborium", - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-devtools 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-document 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-fullstack-hooks", - "dioxus-fullstack-protocol", - "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-web 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus_server_macro", - "futures-channel", - "futures-util", - "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "http", - "serde", - "server_fn", - "tracing", -] - -[[package]] -name = "dioxus-fullstack" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "6f4bf3345e91a5c7fa27ada6c27722b2cdec39b6d58f55869d9bde7fce0204c8" dependencies = [ "anyhow", "async-stream", @@ -2067,18 +1892,18 @@ dependencies = [ "base64", "bytes", "ciborium", - "const-str 0.7.0", + "const-str", "const_format", "content_disposition", "derive_more 2.0.1", - "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-asset-resolver", + "dioxus-cli-config", + "dioxus-core", "dioxus-fullstack-core", "dioxus-fullstack-macro", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-hooks", + "dioxus-html", + "dioxus-signals", "form_urlencoded", "futures", "futures-channel", @@ -2119,21 +1944,22 @@ dependencies = [ [[package]] name = "dioxus-fullstack-core" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e04f171276ca69d5d2266c786b390f281ed4c2b375db370d20d3eda0ebb5e891" dependencies = [ "anyhow", "axum-core", "base64", "ciborium", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", + "dioxus-document", + "dioxus-history", + "dioxus-hooks", + "dioxus-signals", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "http", "inventory", "serde", @@ -2142,25 +1968,11 @@ dependencies = [ "tracing", ] -[[package]] -name = "dioxus-fullstack-hooks" -version = "0.7.0-rc.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef5fad61b2821b8f26c8498834920d617449d0b866aaac01b95284237f76e9d5" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-fullstack-protocol", - "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-hooks 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-channel", - "serde", -] - [[package]] name = "dioxus-fullstack-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d218f17463e0bf255599afe1ef477ca9049e549491032a57e618ee1bf65a6b17" dependencies = [ "const_format", "convert_case 0.8.0", @@ -2170,65 +1982,27 @@ dependencies = [ "xxhash-rust", ] -[[package]] -name = "dioxus-fullstack-protocol" -version = "0.7.0-rc.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2f266ad9e20be14b8899f2133dd942131f03e6749650e65e2aaec2c7f8a4bc1" -dependencies = [ - "base64", - "ciborium", - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde", - "tracing", -] - [[package]] name = "dioxus-history" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18e9e34323717a78ea3f8ba5072ff484744a656e8d422932c19937b67f45113e" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tracing", -] - -[[package]] -name = "dioxus-history" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "a07f1cb988bfae15dc66564616adc98a89fdfbb5e5e94ac28f8a2f2590886ded" dependencies = [ - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", "tracing", ] [[package]] name = "dioxus-hooks" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab776b9a156765cc7dd7876891c98b9ab06b1f995d33ff169b06ef4f23cfd437" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-channel", - "futures-util", - "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustversion", - "slab", - "tracing", - "warnings", -] - -[[package]] -name = "dioxus-hooks" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "3843e73fb8f199326d9b77c2dce6c89dfd47f77cbd87dd50fedfb4a2f9fc8015" dependencies = [ - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", + "dioxus-signals", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "rustversion", "slab", "tracing", @@ -2237,45 +2011,24 @@ dependencies = [ [[package]] name = "dioxus-html" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "073e5b69a7b66e9cbb49530df8c4cf86bf2aff3322ba86a3d722f9d58cd9c54b" -dependencies = [ - "async-trait", - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-hooks 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-html-internal-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "enumset", - "euclid", - "futures-channel", - "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "keyboard-types", - "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustversion", - "tracing", -] - -[[package]] -name = "dioxus-html" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "5341444c368b99d119646256292cb6b1034458f53280cff3b9dd9f5c992baab2" dependencies = [ "async-trait", "bytes", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html-internal-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", + "dioxus-core-macro", + "dioxus-core-types", + "dioxus-hooks", + "dioxus-html-internal-macro", "enumset", "euclid", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "keyboard-types", - "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "lazy-js-bundle 0.7.0-rc.1", "rustversion", "serde", "serde_json", @@ -2285,20 +2038,9 @@ dependencies = [ [[package]] name = "dioxus-html-internal-macro" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162beea862dc888897a0b527db08724ede0f09e59fe081ab39caa0b085f40e10" -dependencies = [ - "convert_case 0.8.0", - "proc-macro2", - "quote", - "syn 2.0.106", -] - -[[package]] -name = "dioxus-html-internal-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "8c19513628504ec7059812331d60e32d8d37b1f48c3252e5ad757db3e65b48c3" dependencies = [ "convert_case 0.8.0", "proc-macro2", @@ -2309,9 +2051,9 @@ dependencies = [ [[package]] name = "dioxus-i18n" version = "0.4.3" -source = "git+https://github.com/ealmloff/dioxus-i18n?branch=bump-dioxus#94b7d898432fa64881ff163f8cf8b9343efd3023" +source = "git+https://github.com/ealmloff/dioxus-i18n?branch=bump-dioxus#7afae07dd5130c9ebbdd3a279cfaf5b8f0c62fff" dependencies = [ - "dioxus 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus", "fluent", "thiserror 2.0.17", "unic-langid", @@ -2320,30 +2062,15 @@ dependencies = [ [[package]] name = "dioxus-interpreter-js" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd2ef3fe9bddfcac6d2ccf123d4834b5c3d97e6f2be8fcbfc4943226d9d7d4fe" +checksum = "352115c6688009b4319f5b510d7a438e67fa655394310a3706cffa7f6218b93e" dependencies = [ + "dioxus-core", + "dioxus-core-types", + "dioxus-html", "js-sys", - "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hash 2.1.1", - "sledgehammer_bindgen", - "sledgehammer_utils", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "dioxus-interpreter-js" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "js-sys", - "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "lazy-js-bundle 0.7.0-rc.1", "rustc-hash 2.1.1", "serde", "sledgehammer_bindgen", @@ -2355,20 +2082,21 @@ dependencies = [ [[package]] name = "dioxus-liveview" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3a125beceef0c208f32076a7d0e71afc11b4d4fb2a24ca02207b46103e69466" dependencies = [ "axum", - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config", + "dioxus-core", + "dioxus-devtools", + "dioxus-document", + "dioxus-history", + "dioxus-html", + "dioxus-interpreter-js", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "rustc-hash 2.1.1", "serde", "serde_json", @@ -2382,23 +2110,11 @@ dependencies = [ [[package]] name = "dioxus-logger" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d39a7c4d1f848fa62d0e605aabce921cc8a95ccea3d17101a840d216471adb7" -dependencies = [ - "console_error_panic_hook", - "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tracing", - "tracing-subscriber", - "tracing-wasm", -] - -[[package]] -name = "dioxus-logger" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "567f266396a2bb65b13bbadd78241a70dfc8bd233aecc2b37f19237532c9ab21" dependencies = [ - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config", "tracing", "tracing-subscriber", "tracing-wasm", @@ -2406,8 +2122,9 @@ dependencies = [ [[package]] name = "dioxus-native" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13830eaf7e5a0f46418855d459fde293250b7b0b2a34c59339d4e8f88e52548e" dependencies = [ "anyrender", "anyrender_vello", @@ -2417,13 +2134,13 @@ dependencies = [ "blitz-paint", "blitz-shell", "blitz-traits", - "dioxus-asset-resolver 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-asset-resolver", + "dioxus-cli-config", + "dioxus-core", + "dioxus-devtools", + "dioxus-document", + "dioxus-history", + "dioxus-html", "dioxus-native-dom", "futures-util", "keyboard-types", @@ -2436,13 +2153,14 @@ dependencies = [ [[package]] name = "dioxus-native-dom" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e405f067df0b3c0021ef4997cadc31a4c52e80f548be3c838205fe085108657" dependencies = [ "blitz-dom", "blitz-traits", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", + "dioxus-html", "futures-util", "keyboard-types", "rustc-hash 2.1.1", @@ -2453,7 +2171,7 @@ dependencies = [ name = "dioxus-primitives" version = "0.0.1" dependencies = [ - "dioxus 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus", "dioxus-time", "lazy-js-bundle 0.6.2", "time", @@ -2462,18 +2180,19 @@ dependencies = [ [[package]] name = "dioxus-router" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1ec9ea8a84b8b8eabae0f661e1926267b498d9a7265a31731d755b95abbe61" dependencies = [ - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config", + "dioxus-core", + "dioxus-core-macro", "dioxus-fullstack-core", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history", + "dioxus-hooks", + "dioxus-html", "dioxus-router-macro", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals", "percent-encoding", "rustversion", "tracing", @@ -2482,8 +2201,9 @@ dependencies = [ [[package]] name = "dioxus-router-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c6e8cb648e2146ba825c6a66c8b678f51a620d5f70852b7eb1c98b0e8286e8c" dependencies = [ "base16", "digest", @@ -2496,20 +2216,9 @@ dependencies = [ [[package]] name = "dioxus-rsx" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee08e1302f384a54d97b762eddb57cf3b7335b08b176e136c1d9631b5c71ff18" -dependencies = [ - "proc-macro2", - "proc-macro2-diagnostics", - "quote", - "syn 2.0.106", -] - -[[package]] -name = "dioxus-rsx" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "bf7dfd6a789e69a5f952fbc8eeb1a8866014e0abee3882ebaceb139a4e12709a" dependencies = [ "proc-macro2", "proc-macro2-diagnostics", @@ -2519,8 +2228,9 @@ dependencies = [ [[package]] name = "dioxus-server" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac0a65350e056ee9b8116dca4f19ed16d290e5610f7593b3cabd756642020b4a" dependencies = [ "anyhow", "async-trait", @@ -2530,25 +2240,25 @@ dependencies = [ "chrono", "ciborium", "dashmap", - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config", + "dioxus-core", + "dioxus-core-macro", + "dioxus-devtools", + "dioxus-document", "dioxus-fullstack-core", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-hooks 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-logger 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history", + "dioxus-hooks", + "dioxus-html", + "dioxus-interpreter-js", + "dioxus-logger", "dioxus-router", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-signals", "dioxus-ssr", "enumset", "futures", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "http", "http-body-util", "hyper", @@ -2561,7 +2271,7 @@ dependencies = [ "serde", "serde_json", "serde_qs", - "subsecond 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "subsecond", "thiserror 2.0.17", "tokio", "tokio-tungstenite 0.27.0", @@ -2576,29 +2286,14 @@ dependencies = [ [[package]] name = "dioxus-signals" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1d0e70a8da969c0404f5ef8cf6f47042bea55608b582079f3ea3d9fff46125c" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-channel", - "futures-util", - "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "parking_lot", - "rustc-hash 2.1.1", - "tracing", - "warnings", -] - -[[package]] -name = "dioxus-signals" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "7d1b204dc460bef2ff0c92e4044d58090fe5209fd93537dbb6f344fa379e835f" dependencies = [ - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "parking_lot", "rustc-hash 2.1.1", "tracing", @@ -2607,52 +2302,32 @@ dependencies = [ [[package]] name = "dioxus-ssr" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae8d580119df51b292f91f77085a0adc5eca99347c483ad3e3893c827a179913" dependencies = [ "askama_escape", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", + "dioxus-core-types", "rustc-hash 2.1.1", ] [[package]] name = "dioxus-stores" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5494e5aa7333f3be918741eeb6bfb4d1cbf28d25035a2a3c2c5bcebdc27b0b68" -dependencies = [ - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-stores-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "dioxus-stores" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "560f16579c9a4c3fb81b41e6e5b9018e2e91b5c57d43469a37cf22807ca47acc" dependencies = [ - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-stores-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-core", + "dioxus-signals", + "dioxus-stores-macro", ] [[package]] name = "dioxus-stores-macro" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ecb7365b1a587a9f2340cf8f925a00b997d8d31b4ee25ecb21ca8bdf99c2c33" -dependencies = [ - "convert_case 0.8.0", - "proc-macro2", - "quote", - "syn 2.0.106", -] - -[[package]] -name = "dioxus-stores-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "cf06d8e91f5af4b29e74a8ebaf7b6c778774e09a0f6551bf40409e263c781cdb" dependencies = [ "convert_case 0.8.0", "proc-macro2", @@ -2662,10 +2337,10 @@ dependencies = [ [[package]] name = "dioxus-time" -version = "0.7.0-rc.0" -source = "git+https://github.com/ealmloff/dioxus-std?branch=0.7#5abb45906c47b4c864e1c06a3e6aebb1b5cae03c" +version = "0.7.0-rc.1" +source = "git+https://github.com/ealmloff/dioxus-std?branch=0.7#5ec9cdf922ab8b038f40b4112464c69b3bd6d76a" dependencies = [ - "dioxus 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dioxus", "futures", "gloo-timers", "tokio", @@ -2673,58 +2348,26 @@ dependencies = [ [[package]] name = "dioxus-web" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34eb4f341b0203f7b1fe1804d4561a19a399bf7fa4821a5b87cff5fd89d834bd" +checksum = "8824596741fc373f7b8600031016446c19d5e2f36a3bc0420e3b80466a2fd05c" dependencies = [ - "async-trait", - "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-devtools 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-document 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-fullstack-protocol", - "dioxus-history 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-html 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-interpreter-js 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-signals 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-channel", - "futures-util", - "generational-box 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "gloo-timers", - "js-sys", - "lazy-js-bundle 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-hash 2.1.1", - "serde", - "serde-wasm-bindgen", - "serde_json", - "tracing", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "dioxus-web" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-devtools 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-document 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-cli-config", + "dioxus-core", + "dioxus-core-types", + "dioxus-devtools", + "dioxus-document", "dioxus-fullstack-core", - "dioxus-history 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-html 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-interpreter-js 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-signals 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus-history", + "dioxus-html", + "dioxus-interpreter-js", + "dioxus-signals", "futures-channel", "futures-util", - "generational-box 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "generational-box", "gloo-timers", "js-sys", - "lazy-js-bundle 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "lazy-js-bundle 0.7.0-rc.1", "rustc-hash 2.1.1", "send_wrapper", "serde", @@ -2737,18 +2380,6 @@ dependencies = [ "web-sys", ] -[[package]] -name = "dioxus_server_macro" -version = "0.7.0-rc.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a032e9eaa291ded578b6c368ba35dd18d052e1cbcf2395244e555edd1767e61" -dependencies = [ - "proc-macro2", - "quote", - "server_fn_macro", - "syn 2.0.106", -] - [[package]] name = "dirs" version = "6.0.0" @@ -2952,6 +2583,12 @@ dependencies = [ "windows-sys 0.61.2", ] +[[package]] +name = "error-code" +version = "3.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59" + [[package]] name = "euclid" version = "0.22.11" @@ -3097,13 +2734,12 @@ dependencies = [ ] [[package]] -name = "fontconfig-cache-parser" -version = "0.2.0" +name = "font-types" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7f8afb20c8069fd676d27b214559a337cc619a605d25a87baa90b49a06f3b18" +checksum = "511e2c18a516c666d27867d2f9821f76e7d591f762e9fc41dd6cc5c90fe54b0b" dependencies = [ "bytemuck", - "thiserror 1.0.69", ] [[package]] @@ -3131,25 +2767,25 @@ dependencies = [ [[package]] name = "fontique" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39f97079e1293b8c1e9fb03a2875d328bd2ee8f3b95ce62959c0acc04049c708" +checksum = "ff3336bc0b87fe42305047263fa60d2eabd650d29cbe62fdeb2a66c7a0a595f9" dependencies = [ "bytemuck", - "fontconfig-cache-parser", "hashbrown 0.15.5", - "icu_locid", + "icu_locale_core", + "linebender_resource_handle", "memmap2", "objc2 0.6.3", "objc2-core-foundation", "objc2-core-text", "objc2-foundation 0.3.2", - "peniko", - "read-fonts 0.29.3", + "read-fonts 0.35.0", "roxmltree", "smallvec", "windows 0.58.0", "windows-core 0.58.0", + "yeslogic-fontconfig-sys", ] [[package]] @@ -3422,18 +3058,9 @@ dependencies = [ [[package]] name = "generational-box" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb058e0358ff765e719ab3e61629c5090fedb6a6ccf66479de21440a33d7f084" -dependencies = [ - "parking_lot", - "tracing", -] - -[[package]] -name = "generational-box" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "d93e10f2f89a54e58670ad86e1896db4800b91af59ed55a2dc195d2ea5fecfa4" dependencies = [ "parking_lot", "tracing", @@ -3465,7 +3092,7 @@ version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" dependencies = [ - "unicode-width 0.2.2", + "unicode-width", ] [[package]] @@ -3847,12 +3474,27 @@ dependencies = [ [[package]] name = "half" -version = "2.4.1" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" +checksum = "e54c115d4f30f52c67202f079c5f9d8b49db4691f460fdb0b4c2e838261b2ba5" dependencies = [ "cfg-if", "crunchy", + "num-traits", + "zerocopy", +] + +[[package]] +name = "harfrust" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3fd23d35c2d8bcf34a1f0e9ea8c0ad263f0c8a9a47108eee23aac76e71645a" +dependencies = [ + "bitflags 2.9.4", + "bytemuck", + "core_maths", + "read-fonts 0.35.0", + "smallvec", ] [[package]] @@ -4134,6 +3776,18 @@ dependencies = [ "zerovec", ] +[[package]] +name = "icu_locale_core" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" +dependencies = [ + "displaydoc", + "litemap 0.8.0", + "tinystr 0.8.0", + "writeable 0.6.0", +] + [[package]] name = "icu_locid" version = "1.5.0" @@ -4141,9 +3795,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" dependencies = [ "displaydoc", - "litemap", + "litemap 0.7.4", "tinystr 0.7.6", - "writeable", + "writeable 0.5.5", "zerovec", ] @@ -4223,7 +3877,7 @@ dependencies = [ "icu_provider_macros", "stable_deref_trait", "tinystr 0.7.6", - "writeable", + "writeable 0.5.5", "yoke", "zerofrom", "zerovec", @@ -4537,21 +4191,27 @@ dependencies = [ ] [[package]] -name = "lazy-js-bundle" -version = "0.6.2" +name = "kurbo" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e49596223b9d9d4947a14a25c142a6e7d8ab3f27eb3ade269d238bb8b5c267e2" +checksum = "ce9729cc38c18d86123ab736fd2e7151763ba226ac2490ec092d1dd148825e32" +dependencies = [ + "arrayvec", + "euclid", + "smallvec", +] [[package]] name = "lazy-js-bundle" -version = "0.7.0-rc.0" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e22c4abc3d491546025db72681ed8b1ff0e6e77d67f196460179b027d591b6ff" +checksum = "e49596223b9d9d4947a14a25c142a6e7d8ab3f27eb3ade269d238bb8b5c267e2" [[package]] name = "lazy-js-bundle" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8697a8442f28425b7263aed3b2e25c94b273fb18f503b8bfb188865dfdcbb62b" [[package]] name = "lazy_static" @@ -4585,9 +4245,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.176" +version = "0.2.177" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" +checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" [[package]] name = "libloading" @@ -4675,6 +4335,12 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" +[[package]] +name = "litemap" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" + [[package]] name = "litrs" version = "0.4.2" @@ -4756,70 +4422,36 @@ dependencies = [ [[package]] name = "manganis" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "105544bc1d466decccab19427eddb801b6e575bb4907410eb4fed604ed78d358" +checksum = "89d99d7bdf99077e989ef8b15195ac7b070f2274755560239b2ce9b15d5d3542" dependencies = [ - "const-serialize 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "manganis-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "manganis-macro 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", + "const-serialize", + "manganis-core", + "manganis-macro", ] -[[package]] -name = "manganis" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "const-serialize 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "manganis-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "manganis-macro 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", -] - -[[package]] -name = "manganis-core" -version = "0.7.0-rc.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d71ef461824c58f3d260c1f548f7a8aee2e0b6b805a503d15f8535a3a6272d7" -dependencies = [ - "const-serialize 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-cli-config 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "dioxus-core-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde", -] - -[[package]] -name = "manganis-core" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" -dependencies = [ - "const-serialize 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-cli-config 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "dioxus-core-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", - "serde", -] - -[[package]] -name = "manganis-macro" -version = "0.7.0-rc.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06115a15f5d7bf6fcfee1b6979155cc51ab21ce7f06d907f6435d24175778f9e" -dependencies = [ - "dunce", - "macro-string", - "manganis-core 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "proc-macro2", - "quote", - "syn 2.0.106", +[[package]] +name = "manganis-core" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b05ca73545ec919930d103e66c1057f3a3dac273ac27db721a358546e7ce7aed" +dependencies = [ + "const-serialize", + "dioxus-cli-config", + "dioxus-core-types", + "serde", ] [[package]] name = "manganis-macro" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +version = "0.7.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cc3b11e27e62b12f371afb4d703ea3ca119a6e48736fae0e5f0f5c9642e2879" dependencies = [ "dunce", "macro-string", - "manganis-core 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "manganis-core", "proc-macro2", "quote", "syn 2.0.106", @@ -4928,13 +4560,13 @@ dependencies = [ [[package]] name = "metal" -version = "0.31.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f569fb946490b5743ad69813cb19629130ce9374034abe31614a36402d18f99e" +checksum = "00c15a6f673ff72ddcc22394663290f870fb224c1bfce55734a75c414150e605" dependencies = [ "bitflags 2.9.4", "block", - "core-graphics-types 0.1.3", + "core-graphics-types 0.2.0", "foreign-types 0.5.0", "log", "objc", @@ -5018,24 +4650,28 @@ dependencies = [ [[package]] name = "naga" -version = "24.0.0" +version = "26.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e380993072e52eef724eddfcde0ed013b0c023c3f0417336ed041aa9f076994e" +checksum = "916cbc7cb27db60be930a4e2da243cf4bc39569195f22fd8ee419cd31d5b662c" dependencies = [ "arrayvec", "bit-set", "bitflags 2.9.4", + "cfg-if", "cfg_aliases", "codespan-reporting", + "half", + "hashbrown 0.15.5", "hexf-parse", "indexmap", + "libm", "log", + "num-traits", + "once_cell", "rustc-hash 1.1.0", "spirv", - "strum 0.26.3", - "termcolor", "thiserror 2.0.17", - "unicode-xid", + "unicode-ident", ] [[package]] @@ -5064,7 +4700,7 @@ dependencies = [ "bitflags 2.9.4", "jni-sys", "log", - "ndk-sys 0.6.0+11769913", + "ndk-sys", "num_enum", "raw-window-handle 0.6.2", "thiserror 1.0.69", @@ -5076,15 +4712,6 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" -[[package]] -name = "ndk-sys" -version = "0.5.0+25.2.9519653" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691" -dependencies = [ - "jni-sys", -] - [[package]] name = "ndk-sys" version = "0.6.0+11769913" @@ -5165,6 +4792,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", + "libm", ] [[package]] @@ -5260,6 +4888,7 @@ dependencies = [ "block2 0.6.2", "objc2 0.6.3", "objc2-core-foundation", + "objc2-core-graphics", "objc2-foundation 0.3.2", ] @@ -5317,7 +4946,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" dependencies = [ "bitflags 2.9.4", + "dispatch2", + "objc2 0.6.3", "objc2-core-foundation", + "objc2-io-surface", ] [[package]] @@ -5394,6 +5026,17 @@ dependencies = [ "objc2-core-foundation", ] +[[package]] +name = "objc2-io-surface" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" +dependencies = [ + "bitflags 2.9.4", + "objc2 0.6.3", + "objc2-core-foundation", +] + [[package]] name = "objc2-link-presentation" version = "0.2.2" @@ -5619,9 +5262,9 @@ dependencies = [ [[package]] name = "ordered-float" -version = "4.6.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951" +checksum = "e2c1f9f56e534ac6a9b8a4600bdf0f530fb393b5f393e7b4d03489c3cf0c3f01" dependencies = [ "num-traits", ] @@ -5701,14 +5344,15 @@ dependencies = [ [[package]] name = "parley" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13e57638545cf2ba4c3e72cc5715e53b1880b829cc3dbefda3d1700c58efe723" +checksum = "26746861bb76dbc9bcd5ed1b0b55d2fedf291100961251702a031ab2abd2ce52" dependencies = [ "fontique", + "harfrust", "hashbrown 0.15.5", - "peniko", - "skrifa 0.31.3", + "linebender_resource_handle", + "skrifa 0.37.0", "swash", ] @@ -5720,12 +5364,12 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] name = "peniko" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b44f9ddd2f480176b34278eb653ec1c8062f3b143a4e16eeff5ffac3334e288" +checksum = "b3c76095c9a636173600478e0373218c7b955335048c2bcd12dc6a79657649d8" dependencies = [ "color", - "kurbo", + "kurbo 0.12.0", "linebender_resource_handle", "smallvec", ] @@ -5971,6 +5615,21 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3" +[[package]] +name = "portable-atomic" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" + +[[package]] +name = "portable-atomic-util" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" +dependencies = [ + "portable-atomic", +] + [[package]] name = "powerfmt" version = "0.2.0" @@ -6002,11 +5661,11 @@ checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa" name = "preview" version = "0.1.0" dependencies = [ - "dioxus 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "dioxus", "dioxus-i18n", "dioxus-primitives", "pulldown-cmark", - "strum 0.27.2", + "strum", "syntect", "time", "tracing", @@ -6388,32 +6047,23 @@ dependencies = [ [[package]] name = "read-fonts" -version = "0.29.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04ca636dac446b5664bd16c069c00a9621806895b8bb02c2dc68542b23b8f25d" -dependencies = [ - "bytemuck", - "font-types", -] - -[[package]] -name = "read-fonts" -version = "0.33.1" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50ea612a55c08586a1d15134be8a776186c440c312ebda3b9e8efbfe4255b7f4" +checksum = "8941f8e9d5f8ad3aebea330d01ac68c0167600eb31a86ecd86e97be4d13b51f5" dependencies = [ "bytemuck", - "font-types", + "font-types 0.9.0", ] [[package]] name = "read-fonts" -version = "0.34.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8941f8e9d5f8ad3aebea330d01ac68c0167600eb31a86ecd86e97be4d13b51f5" +checksum = "6717cf23b488adf64b9d711329542ba34de147df262370221940dfabc2c91358" dependencies = [ "bytemuck", - "font-types", + "core_maths", + "font-types 0.10.0", ] [[package]] @@ -6492,6 +6142,7 @@ dependencies = [ "js-sys", "log", "mime", + "mime_guess", "native-tls", "percent-encoding", "pin-project-lite", @@ -6765,19 +6416,19 @@ dependencies = [ [[package]] name = "selectors" -version = "0.31.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5685b6ae43bfcf7d2e7dfcfb5d8e8f61b46442c902531e41a32a9a8bf0ee0fb6" +checksum = "09975d3195f34dce9c7b381cb0f00c3c13381d4d3735c0f1a9c894b283b302ab" dependencies = [ "bitflags 2.9.4", "cssparser 0.35.0", "derive_more 2.0.1", - "fxhash", "log", "new_debug_unreachable", "phf 0.11.3", "phf_codegen 0.11.3", "precomputed-hash", + "rustc-hash 2.1.1", "servo_arc 0.4.1", "smallvec", "to_shmem", @@ -6913,57 +6564,6 @@ dependencies = [ "serde", ] -[[package]] -name = "server_fn" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c27fbd25ecc066481e383e2ed62ab2480e708aa3fe46cba36e95f58e61dfd04" -dependencies = [ - "base64", - "bytes", - "const-str 0.6.4", - "const_format", - "dashmap", - "futures", - "http", - "pin-project-lite", - "rustc_version", - "rustversion", - "serde", - "serde_json", - "serde_qs", - "server_fn_macro_default", - "thiserror 2.0.17", - "throw_error", - "url", - "xxhash-rust", -] - -[[package]] -name = "server_fn_macro" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d530c872590473016016679c94e3bddf47372941fc924f687ffd11a1778a71" -dependencies = [ - "const_format", - "convert_case 0.8.0", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.106", - "xxhash-rust", -] - -[[package]] -name = "server_fn_macro_default" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca7abc92ed696648275ed9ff171131a83d571af11748593dc2e6eb6a4e22a5b9" -dependencies = [ - "server_fn_macro", - "syn 2.0.106", -] - [[package]] name = "servo_arc" version = "0.2.0" @@ -7069,32 +6669,22 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" [[package]] name = "skrifa" -version = "0.31.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbeb4ca4399663735553a09dd17ce7e49a0a0203f03b706b39628c4d913a8607" -dependencies = [ - "bytemuck", - "read-fonts 0.29.3", -] - -[[package]] -name = "skrifa" -version = "0.35.0" +version = "0.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "576e60c7de4bb6a803a0312f9bef17e78cf1e8d25a80e1ade76770d7a0237955" +checksum = "37004372610e83ee2a4c69c7d896b41f33da6a3dc1a4fe07dd9b2629a549b1dc" dependencies = [ "bytemuck", - "read-fonts 0.33.1", + "read-fonts 0.34.0", ] [[package]] name = "skrifa" -version = "0.36.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37004372610e83ee2a4c69c7d896b41f33da6a3dc1a4fe07dd9b2629a549b1dc" +checksum = "8c31071dedf532758ecf3fed987cdb4bd9509f900e026ab684b4ecb81ea49841" dependencies = [ "bytemuck", - "read-fonts 0.34.0", + "read-fonts 0.35.0", ] [[package]] @@ -7241,9 +6831,9 @@ dependencies = [ [[package]] name = "stable_deref_trait" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "static_assertions" @@ -7285,35 +6875,13 @@ dependencies = [ "quote", ] -[[package]] -name = "strum" -version = "0.26.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" -dependencies = [ - "strum_macros 0.26.4", -] - [[package]] name = "strum" version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" dependencies = [ - "strum_macros 0.27.2", -] - -[[package]] -name = "strum_macros" -version = "0.26.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" -dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.106", + "strum_macros", ] [[package]] @@ -7330,9 +6898,9 @@ dependencies = [ [[package]] name = "stylo" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c0e43d53a35821d4a1d0a222f830d4be1b3b9e1711037e176e112aa32006827" +checksum = "ff45c788bcb0230aff156dce747d4d0d7f793f525764fd6690d51bbfe1f5bbd5" dependencies = [ "app_units", "arrayvec", @@ -7343,7 +6911,6 @@ dependencies = [ "derive_more 2.0.1", "encoding_rs", "euclid", - "fxhash", "icu_segmenter", "indexmap", "itertools", @@ -7362,7 +6929,8 @@ dependencies = [ "precomputed-hash", "rayon", "rayon-core", - "selectors 0.31.0", + "rustc-hash 2.1.1", + "selectors 0.32.0", "serde", "servo_arc 0.4.1", "smallbitvec", @@ -7388,9 +6956,9 @@ dependencies = [ [[package]] name = "stylo_atoms" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94847461aae1c005d9d5c1fa46243fe7132b709cfdee5d34fa5e636afa146163" +checksum = "f7d6ff15e6ed626c331663555af48b8f21bc46f729f45711597143dc1bf50fb5" dependencies = [ "string_cache", "string_cache_codegen", @@ -7398,15 +6966,15 @@ dependencies = [ [[package]] name = "stylo_config" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4299e2bde00c3adede2698e647dcfcad9f4402252ef66be6ea2d781b4ec32816" +checksum = "ebdb6722cde5d2660928c63e07b3afbef1be8376e2b247e96e381ba5e99db33a" [[package]] name = "stylo_derive" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f252798e25b50eef5caff400fc39028e156ffbed74b4e3fd22e28aff10ed28f" +checksum = "a1724b911e0775fb9379dc629b1c3647fed991f90ddb865f74a2a26f7b030777" dependencies = [ "darling 0.20.11", "proc-macro2", @@ -7417,9 +6985,9 @@ dependencies = [ [[package]] name = "stylo_dom" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0e0c1bf4e21bc6c921b7b07e2ab1cd6e92bf9f9453f333a14000942f304b20b" +checksum = "f8c0101ada15990fee6269257538cbcbc6f01462dc4b22d6f820edb6a4427e82" dependencies = [ "bitflags 2.9.4", "stylo_malloc_size_of", @@ -7427,14 +6995,14 @@ dependencies = [ [[package]] name = "stylo_malloc_size_of" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91df5c23c5d3b0fb3e1b11c4b98c6a4b769678055a376954945c2fb20e7438cf" +checksum = "a8185a7a3cf0716c475ad113b494c276acf534b518dd41ee47ad5aba4af6690e" dependencies = [ "app_units", "cssparser 0.35.0", "euclid", - "selectors 0.31.0", + "selectors 0.32.0", "servo_arc 0.4.1", "smallbitvec", "smallvec", @@ -7445,15 +7013,15 @@ dependencies = [ [[package]] name = "stylo_static_prefs" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62601d73eb8743eaed1f227bde2374f672ae8de7db1fedcbe5aca055e3de566b" +checksum = "ca4c89da4ab6ac0beda8b03db38216967c99f1f7287a0f3b0f366b45d34ac7c4" [[package]] name = "stylo_taffy" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4919f25cd55489a3d0a5b27b70c7a27d7671ab4ccb448a305102ce5f38618f6d" +checksum = "b841aad2b770ef75dd134ba885aef0716f2ac3a83ccaf0fc31b09c8b02562e23" dependencies = [ "stylo", "stylo_atoms", @@ -7462,16 +7030,16 @@ dependencies = [ [[package]] name = "stylo_traits" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d000ad3fad6a3c0327beeb9b93ddcff7a38f2d8c2910f9a3107b219926fea300" +checksum = "f58034d08877fb80a5496301fde9111bc57e761f4a78045222af30ce95ec150f" dependencies = [ "app_units", "bitflags 2.9.4", "cssparser 0.35.0", "euclid", "malloc_size_of_derive", - "selectors 0.31.0", + "selectors 0.32.0", "serde", "servo_arc 0.4.1", "stylo_atoms", @@ -7484,27 +7052,9 @@ dependencies = [ [[package]] name = "subsecond" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b14ed4d86ab065ffbfdb994fd3e44daf5244b02cb643bd52949d74b703f36605" -dependencies = [ - "js-sys", - "libc", - "libloading 0.8.9", - "memfd", - "memmap2", - "serde", - "subsecond-types 0.7.0-rc.0 (registry+https://github.com/rust-lang/crates.io-index)", - "thiserror 2.0.17", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "subsecond" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "3055f82c5a9f842a2a390a595a386343654a408790b3b20473c4b87a5c4ec3bf" dependencies = [ "js-sys", "libc", @@ -7512,7 +7062,7 @@ dependencies = [ "memfd", "memmap2", "serde", - "subsecond-types 0.7.0-rc.0 (git+https://github.com/DioxusLabs/dioxus)", + "subsecond-types", "thiserror 2.0.17", "wasm-bindgen", "wasm-bindgen-futures", @@ -7521,17 +7071,9 @@ dependencies = [ [[package]] name = "subsecond-types" -version = "0.7.0-rc.0" +version = "0.7.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "275920a8a5634e47e12253971db85946798795bbe4d9dfc1debf23533d823983" -dependencies = [ - "serde", -] - -[[package]] -name = "subsecond-types" -version = "0.7.0-rc.0" -source = "git+https://github.com/DioxusLabs/dioxus#0b1f2fc8c24a74cca3f3b7501df2b5a3048d529f" +checksum = "c61506acae0d5fc20d75943891ac9586e70cf7213c19fe0d0774e9d9648d4ee8" dependencies = [ "serde", ] @@ -7554,7 +7096,7 @@ version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc" dependencies = [ - "kurbo", + "kurbo 0.11.3", "siphasher 1.0.1", ] @@ -7701,7 +7243,7 @@ dependencies = [ "log", "ndk", "ndk-context", - "ndk-sys 0.6.0+11769913", + "ndk-sys", "objc2 0.6.3", "objc2-app-kit 0.3.2", "objc2-foundation 0.3.2", @@ -7824,15 +7366,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "throw_error" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41e42a6afdde94f3e656fae18f837cb9bbe500a5ac5de325b09f3ec05b9c28e3" -dependencies = [ - "pin-project-lite", -] - [[package]] name = "time" version = "0.3.41" @@ -8456,12 +7989,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" -[[package]] -name = "unicode-width" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" - [[package]] name = "unicode-width" version = "0.2.2" @@ -8509,7 +8036,7 @@ dependencies = [ "flate2", "fontdb", "imagesize", - "kurbo", + "kurbo 0.11.3", "log", "pico-args", "roxmltree", @@ -8567,16 +8094,16 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "vello" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa3f8a53870a2ee699ce05b738a3f9974c92c35ed4874de86052ac68d214811c" +checksum = "71acbd6b5f7f19841425845c113a89a54bbf60556ae39e7d0182a6f80ce37f5b" dependencies = [ "bytemuck", "futures-intrusive", "log", "peniko", "png", - "skrifa 0.35.0", + "skrifa 0.37.0", "static_assertions", "thiserror 2.0.17", "vello_encoding", @@ -8586,24 +8113,25 @@ dependencies = [ [[package]] name = "vello_encoding" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c69b0fe94b0ac7e47619c504ee2c377355174f5c46353c46d03fa5f7e435922b" +checksum = "cfd5e0b9fec91df34a09fbcbbed474cec68d05691b590a911c7af83c4860ae42" dependencies = [ "bytemuck", "guillotiere", "peniko", - "skrifa 0.35.0", + "skrifa 0.37.0", "smallvec", ] [[package]] name = "vello_shaders" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2ebea426bb2f95b7610bca09178b03d809ede1d3c500a9acf6eca43e8f200be" +checksum = "8c381dde4e7d0d7957df0c0e3f8a7cc0976762d3972d97da5c71464e57ffefd3" dependencies = [ "bytemuck", + "log", "naga", "thiserror 2.0.17", "vello_encoding", @@ -8977,9 +8505,9 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" +checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8" dependencies = [ "rustls-pki-types", ] @@ -9028,18 +8556,21 @@ checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3" [[package]] name = "wgpu" -version = "24.0.5" +version = "26.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b0b3436f0729f6cdf2e6e9201f3d39dc95813fad61d826c1ed07918b4539353" +checksum = "70b6ff82bbf6e9206828e1a3178e851f8c20f1c9028e74dd3a8090741ccd5798" dependencies = [ "arrayvec", "bitflags 2.9.4", + "cfg-if", "cfg_aliases", "document-features", + "hashbrown 0.15.5", "js-sys", "log", "naga", "parking_lot", + "portable-atomic", "profiling", "raw-window-handle 0.6.2", "smallvec", @@ -9054,34 +8585,67 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "24.0.5" +version = "26.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f0aa306497a238d169b9dc70659105b4a096859a34894544ca81719242e1499" +checksum = "d5f62f1053bd28c2268f42916f31588f81f64796e2ff91b81293515017ca8bd9" dependencies = [ "arrayvec", + "bit-set", "bit-vec", "bitflags 2.9.4", "cfg_aliases", "document-features", + "hashbrown 0.15.5", "indexmap", "log", "naga", "once_cell", "parking_lot", + "portable-atomic", "profiling", "raw-window-handle 0.6.2", "rustc-hash 1.1.0", "smallvec", "thiserror 2.0.17", + "wgpu-core-deps-apple", + "wgpu-core-deps-emscripten", + "wgpu-core-deps-windows-linux-android", "wgpu-hal", "wgpu-types", ] +[[package]] +name = "wgpu-core-deps-apple" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18ae5fbde6a4cbebae38358aa73fcd6e0f15c6144b67ef5dc91ded0db125dbdf" +dependencies = [ + "wgpu-hal", +] + +[[package]] +name = "wgpu-core-deps-emscripten" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7670e390f416006f746b4600fdd9136455e3627f5bd763abf9a65daa216dd2d" +dependencies = [ + "wgpu-hal", +] + +[[package]] +name = "wgpu-core-deps-windows-linux-android" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "720a5cb9d12b3d337c15ff0e24d3e97ed11490ff3f7506e7f3d98c68fa5d6f14" +dependencies = [ + "wgpu-hal", +] + [[package]] name = "wgpu-hal" -version = "24.0.4" +version = "26.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f112f464674ca69f3533248508ee30cb84c67cf06c25ff6800685f5e0294e259" +checksum = "7df2c64ac282a91ad7662c90bc4a77d4a2135bc0b2a2da5a4d4e267afc034b9e" dependencies = [ "android_system_properties", "arrayvec", @@ -9090,13 +8654,15 @@ dependencies = [ "bitflags 2.9.4", "block", "bytemuck", + "cfg-if", "cfg_aliases", - "core-graphics-types 0.1.3", + "core-graphics-types 0.2.0", "glow", "glutin_wgl_sys", "gpu-alloc", "gpu-allocator", "gpu-descriptor", + "hashbrown 0.15.5", "js-sys", "khronos-egl", "libc", @@ -9104,16 +8670,16 @@ dependencies = [ "log", "metal", "naga", - "ndk-sys 0.5.0+25.2.9519653", + "ndk-sys", "objc", - "once_cell", "ordered-float", "parking_lot", + "portable-atomic", + "portable-atomic-util", "profiling", "range-alloc", "raw-window-handle 0.6.2", "renderdoc-sys", - "rustc-hash 1.1.0", "smallvec", "thiserror 2.0.17", "wasm-bindgen", @@ -9125,16 +8691,28 @@ dependencies = [ [[package]] name = "wgpu-types" -version = "24.0.0" +version = "26.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50ac044c0e76c03a0378e7786ac505d010a873665e2d51383dcff8dd227dc69c" +checksum = "eca7a8d8af57c18f57d393601a1fb159ace8b2328f1b6b5f80893f7d672c9ae2" dependencies = [ "bitflags 2.9.4", + "bytemuck", "js-sys", "log", + "thiserror 2.0.17", "web-sys", ] +[[package]] +name = "wgpu_context" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3837d08820916c002e9aa38ad162a00cf9f6340bdc88cd31c47b1f3ace8b5b40" +dependencies = [ + "futures-intrusive", + "wgpu", +] + [[package]] name = "winapi" version = "0.3.9" @@ -9686,6 +9264,12 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" +[[package]] +name = "writeable" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74b3b5b7c6114bf7253093603034e102d479ecc8501deca33b6c1c816418b6d2" + [[package]] name = "wry" version = "0.52.1" @@ -9848,6 +9432,17 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01738255b5a16e78bbb83e7fbba0a1e7dd506905cfc53f4622d89015a03fbb5" +[[package]] +name = "yeslogic-fontconfig-sys" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "503a066b4c037c440169d995b869046827dbc71263f6e8f3be6d77d4f3229dbd" +dependencies = [ + "dlib", + "once_cell", + "pkg-config", +] + [[package]] name = "yoke" version = "0.7.5" diff --git a/Cargo.toml b/Cargo.toml index 5dfe0135..0e104e4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,5 +5,5 @@ members = ["primitives", "preview"] [workspace.dependencies] dioxus-primitives = { path = "primitives" } -dioxus = { git = "https://github.com/DioxusLabs/dioxus" } +dioxus = "0.7.0-rc.1" tracing = { version = "0.1", features = ["std"] }