web based infinite canvas
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: desktop app scaffold

+5837 -3
+86 -2
README.md
··· 19 19 │ ├── core/ # Core logic and state management 20 20 │ └── renderer/ # Canvas rendering engine 21 21 └── apps/ 22 - └── web/ # SvelteKit web application 22 + ├── web/ # SvelteKit web application 23 + └── desktop/ # Tauri desktop wrapper 23 24 ``` 25 + 26 + **Desktop App:** The desktop app shares the same codebase as the web app. The web app detects if it's running inside Tauri and uses file-based persistence instead of IndexedDB. 24 27 25 28 ## Packages 26 29 ··· 84 87 ### Tech Stack 85 88 86 89 - **Testing:** Vitest with Playwright (browser tests) and Node (unit tests) 90 + - **Persistence:** IndexedDB (Dexie) for web, filesystem for desktop 87 91 88 92 ### Development 89 93 ··· 95 99 96 100 </details> 97 101 102 + <details> 103 + <summary><code>apps/desktop</code></summary> 104 + 105 + Tauri desktop wrapper that loads the web app with native file system access. 106 + 107 + ### Features 108 + 109 + - Native file dialogs (Open/Save) 110 + - File-based document persistence (`.inkfinite.json`) 111 + - Recent files tracking 112 + - Same UI as web app with platform-specific persistence 113 + 114 + ### Tech Stack 115 + 116 + - **Framework:** Tauri v2 117 + - **Frontend:** Shared with web app (SvelteKit) 118 + - **Backend:** Rust with Tauri plugins (dialog, fs, store) 119 + 120 + ### Development 121 + 122 + ```bash 123 + cd apps/desktop 124 + 125 + # Development mode (with hot reload) 126 + pnpm tauri dev 127 + 128 + # Build production app 129 + pnpm tauri build 130 + ``` 131 + 132 + **Note:** The web app automatically detects when running in Tauri and switches from IndexedDB to file-based persistence. 133 + 134 + </details> 135 + 98 136 ## Development 99 137 100 138 ### Prerequisites 101 139 140 + **Standard Setup:** 141 + 102 142 - Node.js 18+ 103 143 - pnpm 8+ 104 144 145 + **Nix/NixOS Setup:** 146 + 147 + - Nix with flakes enabled 148 + - For desktop app: Rust via [rustup](https://rustup.rs) (not Nix) 149 + 105 150 ### Setup 151 + 152 + <details> 153 + <summary> 154 + Standard 155 + </summary> 106 156 107 157 ```bash 108 158 # Install dependencies ··· 119 169 pnpm dev 120 170 ``` 121 171 172 + </details> 173 + 122 174 <details> 123 175 <summary> 124 - Project Structure 176 + Nix Shell 177 + </summary> 178 + 179 + ```bash 180 + # Enter Nix development shell (provides Node.js & pnpm) 181 + nix-shell 182 + 183 + # Install dependencies 184 + pnpm install 185 + 186 + # For desktop app development, ensure Rust is installed via rustup: 187 + # curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh --no-modify-path -y 188 + 189 + # Run web app 190 + cd apps/web 191 + pnpm dev 192 + 193 + # Run desktop app (Tauri) 194 + cd apps/desktop 195 + pnpm tauri dev 196 + ``` 197 + 198 + - Node.js and pnpm are provided by Nix for consistency 199 + - Rust must be installed via rustup to avoid macOS framework linking issues 200 + - The shell automatically configures paths and SDK for Tauri development 201 + 202 + </details> 203 + 204 + ### Project 205 + 206 + <details> 207 + <summary> 208 + Structure 125 209 </summary> 126 210 127 211 ```sh
+10
apps/desktop/.gitignore
··· 1 + .DS_Store 2 + node_modules 3 + /build 4 + /.svelte-kit 5 + /package 6 + .env 7 + .env.* 8 + !.env.example 9 + vite.config.js.timestamp-* 10 + vite.config.ts.timestamp-*
apps/desktop/.gitkeep

This is a binary file and will not be displayed.

+7
apps/desktop/.vscode/extensions.json
··· 1 + { 2 + "recommendations": [ 3 + "svelte.svelte-vscode", 4 + "tauri-apps.tauri-vscode", 5 + "rust-lang.rust-analyzer" 6 + ] 7 + }
+3
apps/desktop/.vscode/settings.json
··· 1 + { 2 + "svelte.enable-ts-plugin": true 3 + }
+7
apps/desktop/README.md
··· 1 + # Tauri + SvelteKit + TypeScript 2 + 3 + This template should help get you started developing with Tauri, SvelteKit and TypeScript in Vite. 4 + 5 + ## Recommended IDE Setup 6 + 7 + [VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer).
+9
apps/desktop/package.json
··· 1 + { 2 + "name": "desktop", 3 + "version": "0.1.0", 4 + "description": "Inkfinite desktop app (Tauri wrapper for web app)", 5 + "type": "module", 6 + "scripts": { "tauri": "tauri" }, 7 + "license": "MIT", 8 + "devDependencies": { "@tauri-apps/cli": "^2" } 9 + }
+7
apps/desktop/src-tauri/.gitignore
··· 1 + # Generated by Cargo 2 + # will have compiled files and executables 3 + /target/ 4 + 5 + # Generated by Tauri 6 + # will have schema files for capabilities auto-completion 7 + /gen/schemas
+5414
apps/desktop/src-tauri/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "adler2" 7 + version = "2.0.1" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 10 + 11 + [[package]] 12 + name = "aho-corasick" 13 + version = "1.1.4" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 16 + dependencies = [ 17 + "memchr", 18 + ] 19 + 20 + [[package]] 21 + name = "alloc-no-stdlib" 22 + version = "2.0.4" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 25 + 26 + [[package]] 27 + name = "alloc-stdlib" 28 + version = "0.2.2" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 31 + dependencies = [ 32 + "alloc-no-stdlib", 33 + ] 34 + 35 + [[package]] 36 + name = "android_system_properties" 37 + version = "0.1.5" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 40 + dependencies = [ 41 + "libc", 42 + ] 43 + 44 + [[package]] 45 + name = "anyhow" 46 + version = "1.0.100" 47 + source = "registry+https://github.com/rust-lang/crates.io-index" 48 + checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 49 + 50 + [[package]] 51 + name = "ashpd" 52 + version = "0.11.0" 53 + source = "registry+https://github.com/rust-lang/crates.io-index" 54 + checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df" 55 + dependencies = [ 56 + "enumflags2", 57 + "futures-channel", 58 + "futures-util", 59 + "rand 0.9.2", 60 + "raw-window-handle", 61 + "serde", 62 + "serde_repr", 63 + "tokio", 64 + "url", 65 + "wayland-backend", 66 + "wayland-client", 67 + "wayland-protocols", 68 + "zbus", 69 + ] 70 + 71 + [[package]] 72 + name = "async-broadcast" 73 + version = "0.7.2" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 76 + dependencies = [ 77 + "event-listener", 78 + "event-listener-strategy", 79 + "futures-core", 80 + "pin-project-lite", 81 + ] 82 + 83 + [[package]] 84 + name = "async-channel" 85 + version = "2.5.0" 86 + source = "registry+https://github.com/rust-lang/crates.io-index" 87 + checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 88 + dependencies = [ 89 + "concurrent-queue", 90 + "event-listener-strategy", 91 + "futures-core", 92 + "pin-project-lite", 93 + ] 94 + 95 + [[package]] 96 + name = "async-executor" 97 + version = "1.13.3" 98 + source = "registry+https://github.com/rust-lang/crates.io-index" 99 + checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" 100 + dependencies = [ 101 + "async-task", 102 + "concurrent-queue", 103 + "fastrand", 104 + "futures-lite", 105 + "pin-project-lite", 106 + "slab", 107 + ] 108 + 109 + [[package]] 110 + name = "async-io" 111 + version = "2.6.0" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 114 + dependencies = [ 115 + "autocfg", 116 + "cfg-if", 117 + "concurrent-queue", 118 + "futures-io", 119 + "futures-lite", 120 + "parking", 121 + "polling", 122 + "rustix", 123 + "slab", 124 + "windows-sys 0.61.2", 125 + ] 126 + 127 + [[package]] 128 + name = "async-lock" 129 + version = "3.4.2" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 132 + dependencies = [ 133 + "event-listener", 134 + "event-listener-strategy", 135 + "pin-project-lite", 136 + ] 137 + 138 + [[package]] 139 + name = "async-process" 140 + version = "2.5.0" 141 + source = "registry+https://github.com/rust-lang/crates.io-index" 142 + checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" 143 + dependencies = [ 144 + "async-channel", 145 + "async-io", 146 + "async-lock", 147 + "async-signal", 148 + "async-task", 149 + "blocking", 150 + "cfg-if", 151 + "event-listener", 152 + "futures-lite", 153 + "rustix", 154 + ] 155 + 156 + [[package]] 157 + name = "async-recursion" 158 + version = "1.1.1" 159 + source = "registry+https://github.com/rust-lang/crates.io-index" 160 + checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 161 + dependencies = [ 162 + "proc-macro2", 163 + "quote", 164 + "syn 2.0.111", 165 + ] 166 + 167 + [[package]] 168 + name = "async-signal" 169 + version = "0.2.13" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" 172 + dependencies = [ 173 + "async-io", 174 + "async-lock", 175 + "atomic-waker", 176 + "cfg-if", 177 + "futures-core", 178 + "futures-io", 179 + "rustix", 180 + "signal-hook-registry", 181 + "slab", 182 + "windows-sys 0.61.2", 183 + ] 184 + 185 + [[package]] 186 + name = "async-task" 187 + version = "4.7.1" 188 + source = "registry+https://github.com/rust-lang/crates.io-index" 189 + checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 190 + 191 + [[package]] 192 + name = "async-trait" 193 + version = "0.1.89" 194 + source = "registry+https://github.com/rust-lang/crates.io-index" 195 + checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 196 + dependencies = [ 197 + "proc-macro2", 198 + "quote", 199 + "syn 2.0.111", 200 + ] 201 + 202 + [[package]] 203 + name = "atk" 204 + version = "0.18.2" 205 + source = "registry+https://github.com/rust-lang/crates.io-index" 206 + checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" 207 + dependencies = [ 208 + "atk-sys", 209 + "glib", 210 + "libc", 211 + ] 212 + 213 + [[package]] 214 + name = "atk-sys" 215 + version = "0.18.2" 216 + source = "registry+https://github.com/rust-lang/crates.io-index" 217 + checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" 218 + dependencies = [ 219 + "glib-sys", 220 + "gobject-sys", 221 + "libc", 222 + "system-deps", 223 + ] 224 + 225 + [[package]] 226 + name = "atomic-waker" 227 + version = "1.1.2" 228 + source = "registry+https://github.com/rust-lang/crates.io-index" 229 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 230 + 231 + [[package]] 232 + name = "autocfg" 233 + version = "1.5.0" 234 + source = "registry+https://github.com/rust-lang/crates.io-index" 235 + checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 236 + 237 + [[package]] 238 + name = "base64" 239 + version = "0.21.7" 240 + source = "registry+https://github.com/rust-lang/crates.io-index" 241 + checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 242 + 243 + [[package]] 244 + name = "base64" 245 + version = "0.22.1" 246 + source = "registry+https://github.com/rust-lang/crates.io-index" 247 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 248 + 249 + [[package]] 250 + name = "bitflags" 251 + version = "1.3.2" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 254 + 255 + [[package]] 256 + name = "bitflags" 257 + version = "2.10.0" 258 + source = "registry+https://github.com/rust-lang/crates.io-index" 259 + checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 260 + dependencies = [ 261 + "serde_core", 262 + ] 263 + 264 + [[package]] 265 + name = "block-buffer" 266 + version = "0.10.4" 267 + source = "registry+https://github.com/rust-lang/crates.io-index" 268 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 269 + dependencies = [ 270 + "generic-array", 271 + ] 272 + 273 + [[package]] 274 + name = "block2" 275 + version = "0.6.2" 276 + source = "registry+https://github.com/rust-lang/crates.io-index" 277 + checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" 278 + dependencies = [ 279 + "objc2", 280 + ] 281 + 282 + [[package]] 283 + name = "blocking" 284 + version = "1.6.2" 285 + source = "registry+https://github.com/rust-lang/crates.io-index" 286 + checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 287 + dependencies = [ 288 + "async-channel", 289 + "async-task", 290 + "futures-io", 291 + "futures-lite", 292 + "piper", 293 + ] 294 + 295 + [[package]] 296 + name = "brotli" 297 + version = "8.0.2" 298 + source = "registry+https://github.com/rust-lang/crates.io-index" 299 + checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" 300 + dependencies = [ 301 + "alloc-no-stdlib", 302 + "alloc-stdlib", 303 + "brotli-decompressor", 304 + ] 305 + 306 + [[package]] 307 + name = "brotli-decompressor" 308 + version = "5.0.0" 309 + source = "registry+https://github.com/rust-lang/crates.io-index" 310 + checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" 311 + dependencies = [ 312 + "alloc-no-stdlib", 313 + "alloc-stdlib", 314 + ] 315 + 316 + [[package]] 317 + name = "bumpalo" 318 + version = "3.19.1" 319 + source = "registry+https://github.com/rust-lang/crates.io-index" 320 + checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 321 + 322 + [[package]] 323 + name = "bytemuck" 324 + version = "1.24.0" 325 + source = "registry+https://github.com/rust-lang/crates.io-index" 326 + checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" 327 + 328 + [[package]] 329 + name = "byteorder" 330 + version = "1.5.0" 331 + source = "registry+https://github.com/rust-lang/crates.io-index" 332 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 333 + 334 + [[package]] 335 + name = "bytes" 336 + version = "1.11.0" 337 + source = "registry+https://github.com/rust-lang/crates.io-index" 338 + checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 339 + dependencies = [ 340 + "serde", 341 + ] 342 + 343 + [[package]] 344 + name = "cairo-rs" 345 + version = "0.18.5" 346 + source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 348 + dependencies = [ 349 + "bitflags 2.10.0", 350 + "cairo-sys-rs", 351 + "glib", 352 + "libc", 353 + "once_cell", 354 + "thiserror 1.0.69", 355 + ] 356 + 357 + [[package]] 358 + name = "cairo-sys-rs" 359 + version = "0.18.2" 360 + source = "registry+https://github.com/rust-lang/crates.io-index" 361 + checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 362 + dependencies = [ 363 + "glib-sys", 364 + "libc", 365 + "system-deps", 366 + ] 367 + 368 + [[package]] 369 + name = "camino" 370 + version = "1.2.2" 371 + source = "registry+https://github.com/rust-lang/crates.io-index" 372 + checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" 373 + dependencies = [ 374 + "serde_core", 375 + ] 376 + 377 + [[package]] 378 + name = "cargo-platform" 379 + version = "0.1.9" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 382 + dependencies = [ 383 + "serde", 384 + ] 385 + 386 + [[package]] 387 + name = "cargo_metadata" 388 + version = "0.19.2" 389 + source = "registry+https://github.com/rust-lang/crates.io-index" 390 + checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" 391 + dependencies = [ 392 + "camino", 393 + "cargo-platform", 394 + "semver", 395 + "serde", 396 + "serde_json", 397 + "thiserror 2.0.17", 398 + ] 399 + 400 + [[package]] 401 + name = "cargo_toml" 402 + version = "0.22.3" 403 + source = "registry+https://github.com/rust-lang/crates.io-index" 404 + checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" 405 + dependencies = [ 406 + "serde", 407 + "toml 0.9.10+spec-1.1.0", 408 + ] 409 + 410 + [[package]] 411 + name = "cc" 412 + version = "1.2.50" 413 + source = "registry+https://github.com/rust-lang/crates.io-index" 414 + checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c" 415 + dependencies = [ 416 + "find-msvc-tools", 417 + "shlex", 418 + ] 419 + 420 + [[package]] 421 + name = "cesu8" 422 + version = "1.1.0" 423 + source = "registry+https://github.com/rust-lang/crates.io-index" 424 + checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 425 + 426 + [[package]] 427 + name = "cfb" 428 + version = "0.7.3" 429 + source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 431 + dependencies = [ 432 + "byteorder", 433 + "fnv", 434 + "uuid", 435 + ] 436 + 437 + [[package]] 438 + name = "cfg-expr" 439 + version = "0.15.8" 440 + source = "registry+https://github.com/rust-lang/crates.io-index" 441 + checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 442 + dependencies = [ 443 + "smallvec", 444 + "target-lexicon", 445 + ] 446 + 447 + [[package]] 448 + name = "cfg-if" 449 + version = "1.0.4" 450 + source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 452 + 453 + [[package]] 454 + name = "cfg_aliases" 455 + version = "0.2.1" 456 + source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 458 + 459 + [[package]] 460 + name = "chrono" 461 + version = "0.4.42" 462 + source = "registry+https://github.com/rust-lang/crates.io-index" 463 + checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 464 + dependencies = [ 465 + "iana-time-zone", 466 + "num-traits", 467 + "serde", 468 + "windows-link 0.2.1", 469 + ] 470 + 471 + [[package]] 472 + name = "combine" 473 + version = "4.6.7" 474 + source = "registry+https://github.com/rust-lang/crates.io-index" 475 + checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 476 + dependencies = [ 477 + "bytes", 478 + "memchr", 479 + ] 480 + 481 + [[package]] 482 + name = "concurrent-queue" 483 + version = "2.5.0" 484 + source = "registry+https://github.com/rust-lang/crates.io-index" 485 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 486 + dependencies = [ 487 + "crossbeam-utils", 488 + ] 489 + 490 + [[package]] 491 + name = "convert_case" 492 + version = "0.4.0" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 495 + 496 + [[package]] 497 + name = "cookie" 498 + version = "0.18.1" 499 + source = "registry+https://github.com/rust-lang/crates.io-index" 500 + checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 501 + dependencies = [ 502 + "time", 503 + "version_check", 504 + ] 505 + 506 + [[package]] 507 + name = "core-foundation" 508 + version = "0.10.1" 509 + source = "registry+https://github.com/rust-lang/crates.io-index" 510 + checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 511 + dependencies = [ 512 + "core-foundation-sys", 513 + "libc", 514 + ] 515 + 516 + [[package]] 517 + name = "core-foundation-sys" 518 + version = "0.8.7" 519 + source = "registry+https://github.com/rust-lang/crates.io-index" 520 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 521 + 522 + [[package]] 523 + name = "core-graphics" 524 + version = "0.24.0" 525 + source = "registry+https://github.com/rust-lang/crates.io-index" 526 + checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" 527 + dependencies = [ 528 + "bitflags 2.10.0", 529 + "core-foundation", 530 + "core-graphics-types", 531 + "foreign-types", 532 + "libc", 533 + ] 534 + 535 + [[package]] 536 + name = "core-graphics-types" 537 + version = "0.2.0" 538 + source = "registry+https://github.com/rust-lang/crates.io-index" 539 + checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" 540 + dependencies = [ 541 + "bitflags 2.10.0", 542 + "core-foundation", 543 + "libc", 544 + ] 545 + 546 + [[package]] 547 + name = "cpufeatures" 548 + version = "0.2.17" 549 + source = "registry+https://github.com/rust-lang/crates.io-index" 550 + checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 551 + dependencies = [ 552 + "libc", 553 + ] 554 + 555 + [[package]] 556 + name = "crc32fast" 557 + version = "1.5.0" 558 + source = "registry+https://github.com/rust-lang/crates.io-index" 559 + checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 560 + dependencies = [ 561 + "cfg-if", 562 + ] 563 + 564 + [[package]] 565 + name = "crossbeam-channel" 566 + version = "0.5.15" 567 + source = "registry+https://github.com/rust-lang/crates.io-index" 568 + checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 569 + dependencies = [ 570 + "crossbeam-utils", 571 + ] 572 + 573 + [[package]] 574 + name = "crossbeam-utils" 575 + version = "0.8.21" 576 + source = "registry+https://github.com/rust-lang/crates.io-index" 577 + checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 578 + 579 + [[package]] 580 + name = "crypto-common" 581 + version = "0.1.7" 582 + source = "registry+https://github.com/rust-lang/crates.io-index" 583 + checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 584 + dependencies = [ 585 + "generic-array", 586 + "typenum", 587 + ] 588 + 589 + [[package]] 590 + name = "cssparser" 591 + version = "0.29.6" 592 + source = "registry+https://github.com/rust-lang/crates.io-index" 593 + checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" 594 + dependencies = [ 595 + "cssparser-macros", 596 + "dtoa-short", 597 + "itoa", 598 + "matches", 599 + "phf 0.10.1", 600 + "proc-macro2", 601 + "quote", 602 + "smallvec", 603 + "syn 1.0.109", 604 + ] 605 + 606 + [[package]] 607 + name = "cssparser-macros" 608 + version = "0.6.1" 609 + source = "registry+https://github.com/rust-lang/crates.io-index" 610 + checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 611 + dependencies = [ 612 + "quote", 613 + "syn 2.0.111", 614 + ] 615 + 616 + [[package]] 617 + name = "ctor" 618 + version = "0.2.9" 619 + source = "registry+https://github.com/rust-lang/crates.io-index" 620 + checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" 621 + dependencies = [ 622 + "quote", 623 + "syn 2.0.111", 624 + ] 625 + 626 + [[package]] 627 + name = "darling" 628 + version = "0.21.3" 629 + source = "registry+https://github.com/rust-lang/crates.io-index" 630 + checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 631 + dependencies = [ 632 + "darling_core", 633 + "darling_macro", 634 + ] 635 + 636 + [[package]] 637 + name = "darling_core" 638 + version = "0.21.3" 639 + source = "registry+https://github.com/rust-lang/crates.io-index" 640 + checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 641 + dependencies = [ 642 + "fnv", 643 + "ident_case", 644 + "proc-macro2", 645 + "quote", 646 + "strsim", 647 + "syn 2.0.111", 648 + ] 649 + 650 + [[package]] 651 + name = "darling_macro" 652 + version = "0.21.3" 653 + source = "registry+https://github.com/rust-lang/crates.io-index" 654 + checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 655 + dependencies = [ 656 + "darling_core", 657 + "quote", 658 + "syn 2.0.111", 659 + ] 660 + 661 + [[package]] 662 + name = "deranged" 663 + version = "0.5.5" 664 + source = "registry+https://github.com/rust-lang/crates.io-index" 665 + checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 666 + dependencies = [ 667 + "powerfmt", 668 + "serde_core", 669 + ] 670 + 671 + [[package]] 672 + name = "derive_more" 673 + version = "0.99.20" 674 + source = "registry+https://github.com/rust-lang/crates.io-index" 675 + checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" 676 + dependencies = [ 677 + "convert_case", 678 + "proc-macro2", 679 + "quote", 680 + "rustc_version", 681 + "syn 2.0.111", 682 + ] 683 + 684 + [[package]] 685 + name = "desktop" 686 + version = "0.1.0" 687 + dependencies = [ 688 + "serde", 689 + "serde_json", 690 + "tauri", 691 + "tauri-build", 692 + "tauri-plugin-dialog", 693 + "tauri-plugin-fs", 694 + "tauri-plugin-opener", 695 + "tauri-plugin-store", 696 + ] 697 + 698 + [[package]] 699 + name = "digest" 700 + version = "0.10.7" 701 + source = "registry+https://github.com/rust-lang/crates.io-index" 702 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 703 + dependencies = [ 704 + "block-buffer", 705 + "crypto-common", 706 + ] 707 + 708 + [[package]] 709 + name = "dirs" 710 + version = "6.0.0" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" 713 + dependencies = [ 714 + "dirs-sys", 715 + ] 716 + 717 + [[package]] 718 + name = "dirs-sys" 719 + version = "0.5.0" 720 + source = "registry+https://github.com/rust-lang/crates.io-index" 721 + checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" 722 + dependencies = [ 723 + "libc", 724 + "option-ext", 725 + "redox_users", 726 + "windows-sys 0.61.2", 727 + ] 728 + 729 + [[package]] 730 + name = "dispatch" 731 + version = "0.2.0" 732 + source = "registry+https://github.com/rust-lang/crates.io-index" 733 + checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 734 + 735 + [[package]] 736 + name = "dispatch2" 737 + version = "0.3.0" 738 + source = "registry+https://github.com/rust-lang/crates.io-index" 739 + checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 740 + dependencies = [ 741 + "bitflags 2.10.0", 742 + "block2", 743 + "libc", 744 + "objc2", 745 + ] 746 + 747 + [[package]] 748 + name = "displaydoc" 749 + version = "0.2.5" 750 + source = "registry+https://github.com/rust-lang/crates.io-index" 751 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 752 + dependencies = [ 753 + "proc-macro2", 754 + "quote", 755 + "syn 2.0.111", 756 + ] 757 + 758 + [[package]] 759 + name = "dlib" 760 + version = "0.5.2" 761 + source = "registry+https://github.com/rust-lang/crates.io-index" 762 + checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" 763 + dependencies = [ 764 + "libloading 0.8.9", 765 + ] 766 + 767 + [[package]] 768 + name = "dlopen2" 769 + version = "0.8.2" 770 + source = "registry+https://github.com/rust-lang/crates.io-index" 771 + checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" 772 + dependencies = [ 773 + "dlopen2_derive", 774 + "libc", 775 + "once_cell", 776 + "winapi", 777 + ] 778 + 779 + [[package]] 780 + name = "dlopen2_derive" 781 + version = "0.4.3" 782 + source = "registry+https://github.com/rust-lang/crates.io-index" 783 + checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" 784 + dependencies = [ 785 + "proc-macro2", 786 + "quote", 787 + "syn 2.0.111", 788 + ] 789 + 790 + [[package]] 791 + name = "downcast-rs" 792 + version = "1.2.1" 793 + source = "registry+https://github.com/rust-lang/crates.io-index" 794 + checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 795 + 796 + [[package]] 797 + name = "dpi" 798 + version = "0.1.2" 799 + source = "registry+https://github.com/rust-lang/crates.io-index" 800 + checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" 801 + dependencies = [ 802 + "serde", 803 + ] 804 + 805 + [[package]] 806 + name = "dtoa" 807 + version = "1.0.10" 808 + source = "registry+https://github.com/rust-lang/crates.io-index" 809 + checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" 810 + 811 + [[package]] 812 + name = "dtoa-short" 813 + version = "0.3.5" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 816 + dependencies = [ 817 + "dtoa", 818 + ] 819 + 820 + [[package]] 821 + name = "dunce" 822 + version = "1.0.5" 823 + source = "registry+https://github.com/rust-lang/crates.io-index" 824 + checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 825 + 826 + [[package]] 827 + name = "dyn-clone" 828 + version = "1.0.20" 829 + source = "registry+https://github.com/rust-lang/crates.io-index" 830 + checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 831 + 832 + [[package]] 833 + name = "embed-resource" 834 + version = "3.0.6" 835 + source = "registry+https://github.com/rust-lang/crates.io-index" 836 + checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e" 837 + dependencies = [ 838 + "cc", 839 + "memchr", 840 + "rustc_version", 841 + "toml 0.9.10+spec-1.1.0", 842 + "vswhom", 843 + "winreg", 844 + ] 845 + 846 + [[package]] 847 + name = "embed_plist" 848 + version = "1.2.2" 849 + source = "registry+https://github.com/rust-lang/crates.io-index" 850 + checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 851 + 852 + [[package]] 853 + name = "endi" 854 + version = "1.1.1" 855 + source = "registry+https://github.com/rust-lang/crates.io-index" 856 + checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" 857 + 858 + [[package]] 859 + name = "enumflags2" 860 + version = "0.7.12" 861 + source = "registry+https://github.com/rust-lang/crates.io-index" 862 + checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 863 + dependencies = [ 864 + "enumflags2_derive", 865 + "serde", 866 + ] 867 + 868 + [[package]] 869 + name = "enumflags2_derive" 870 + version = "0.7.12" 871 + source = "registry+https://github.com/rust-lang/crates.io-index" 872 + checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 873 + dependencies = [ 874 + "proc-macro2", 875 + "quote", 876 + "syn 2.0.111", 877 + ] 878 + 879 + [[package]] 880 + name = "equivalent" 881 + version = "1.0.2" 882 + source = "registry+https://github.com/rust-lang/crates.io-index" 883 + checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 884 + 885 + [[package]] 886 + name = "erased-serde" 887 + version = "0.4.9" 888 + source = "registry+https://github.com/rust-lang/crates.io-index" 889 + checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" 890 + dependencies = [ 891 + "serde", 892 + "serde_core", 893 + "typeid", 894 + ] 895 + 896 + [[package]] 897 + name = "errno" 898 + version = "0.3.14" 899 + source = "registry+https://github.com/rust-lang/crates.io-index" 900 + checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 901 + dependencies = [ 902 + "libc", 903 + "windows-sys 0.61.2", 904 + ] 905 + 906 + [[package]] 907 + name = "event-listener" 908 + version = "5.4.1" 909 + source = "registry+https://github.com/rust-lang/crates.io-index" 910 + checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 911 + dependencies = [ 912 + "concurrent-queue", 913 + "parking", 914 + "pin-project-lite", 915 + ] 916 + 917 + [[package]] 918 + name = "event-listener-strategy" 919 + version = "0.5.4" 920 + source = "registry+https://github.com/rust-lang/crates.io-index" 921 + checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 922 + dependencies = [ 923 + "event-listener", 924 + "pin-project-lite", 925 + ] 926 + 927 + [[package]] 928 + name = "fastrand" 929 + version = "2.3.0" 930 + source = "registry+https://github.com/rust-lang/crates.io-index" 931 + checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 932 + 933 + [[package]] 934 + name = "fdeflate" 935 + version = "0.3.7" 936 + source = "registry+https://github.com/rust-lang/crates.io-index" 937 + checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 938 + dependencies = [ 939 + "simd-adler32", 940 + ] 941 + 942 + [[package]] 943 + name = "field-offset" 944 + version = "0.3.6" 945 + source = "registry+https://github.com/rust-lang/crates.io-index" 946 + checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 947 + dependencies = [ 948 + "memoffset", 949 + "rustc_version", 950 + ] 951 + 952 + [[package]] 953 + name = "find-msvc-tools" 954 + version = "0.1.5" 955 + source = "registry+https://github.com/rust-lang/crates.io-index" 956 + checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" 957 + 958 + [[package]] 959 + name = "flate2" 960 + version = "1.1.5" 961 + source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" 963 + dependencies = [ 964 + "crc32fast", 965 + "miniz_oxide", 966 + ] 967 + 968 + [[package]] 969 + name = "fnv" 970 + version = "1.0.7" 971 + source = "registry+https://github.com/rust-lang/crates.io-index" 972 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 973 + 974 + [[package]] 975 + name = "foreign-types" 976 + version = "0.5.0" 977 + source = "registry+https://github.com/rust-lang/crates.io-index" 978 + checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 979 + dependencies = [ 980 + "foreign-types-macros", 981 + "foreign-types-shared", 982 + ] 983 + 984 + [[package]] 985 + name = "foreign-types-macros" 986 + version = "0.2.3" 987 + source = "registry+https://github.com/rust-lang/crates.io-index" 988 + checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 989 + dependencies = [ 990 + "proc-macro2", 991 + "quote", 992 + "syn 2.0.111", 993 + ] 994 + 995 + [[package]] 996 + name = "foreign-types-shared" 997 + version = "0.3.1" 998 + source = "registry+https://github.com/rust-lang/crates.io-index" 999 + checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1000 + 1001 + [[package]] 1002 + name = "form_urlencoded" 1003 + version = "1.2.2" 1004 + source = "registry+https://github.com/rust-lang/crates.io-index" 1005 + checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 1006 + dependencies = [ 1007 + "percent-encoding", 1008 + ] 1009 + 1010 + [[package]] 1011 + name = "futf" 1012 + version = "0.1.5" 1013 + source = "registry+https://github.com/rust-lang/crates.io-index" 1014 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1015 + dependencies = [ 1016 + "mac", 1017 + "new_debug_unreachable", 1018 + ] 1019 + 1020 + [[package]] 1021 + name = "futures-channel" 1022 + version = "0.3.31" 1023 + source = "registry+https://github.com/rust-lang/crates.io-index" 1024 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1025 + dependencies = [ 1026 + "futures-core", 1027 + ] 1028 + 1029 + [[package]] 1030 + name = "futures-core" 1031 + version = "0.3.31" 1032 + source = "registry+https://github.com/rust-lang/crates.io-index" 1033 + checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1034 + 1035 + [[package]] 1036 + name = "futures-executor" 1037 + version = "0.3.31" 1038 + source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1040 + dependencies = [ 1041 + "futures-core", 1042 + "futures-task", 1043 + "futures-util", 1044 + ] 1045 + 1046 + [[package]] 1047 + name = "futures-io" 1048 + version = "0.3.31" 1049 + source = "registry+https://github.com/rust-lang/crates.io-index" 1050 + checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1051 + 1052 + [[package]] 1053 + name = "futures-lite" 1054 + version = "2.6.1" 1055 + source = "registry+https://github.com/rust-lang/crates.io-index" 1056 + checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1057 + dependencies = [ 1058 + "fastrand", 1059 + "futures-core", 1060 + "futures-io", 1061 + "parking", 1062 + "pin-project-lite", 1063 + ] 1064 + 1065 + [[package]] 1066 + name = "futures-macro" 1067 + version = "0.3.31" 1068 + source = "registry+https://github.com/rust-lang/crates.io-index" 1069 + checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1070 + dependencies = [ 1071 + "proc-macro2", 1072 + "quote", 1073 + "syn 2.0.111", 1074 + ] 1075 + 1076 + [[package]] 1077 + name = "futures-sink" 1078 + version = "0.3.31" 1079 + source = "registry+https://github.com/rust-lang/crates.io-index" 1080 + checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1081 + 1082 + [[package]] 1083 + name = "futures-task" 1084 + version = "0.3.31" 1085 + source = "registry+https://github.com/rust-lang/crates.io-index" 1086 + checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1087 + 1088 + [[package]] 1089 + name = "futures-util" 1090 + version = "0.3.31" 1091 + source = "registry+https://github.com/rust-lang/crates.io-index" 1092 + checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1093 + dependencies = [ 1094 + "futures-core", 1095 + "futures-io", 1096 + "futures-macro", 1097 + "futures-sink", 1098 + "futures-task", 1099 + "memchr", 1100 + "pin-project-lite", 1101 + "pin-utils", 1102 + "slab", 1103 + ] 1104 + 1105 + [[package]] 1106 + name = "fxhash" 1107 + version = "0.2.1" 1108 + source = "registry+https://github.com/rust-lang/crates.io-index" 1109 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1110 + dependencies = [ 1111 + "byteorder", 1112 + ] 1113 + 1114 + [[package]] 1115 + name = "gdk" 1116 + version = "0.18.2" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" 1119 + dependencies = [ 1120 + "cairo-rs", 1121 + "gdk-pixbuf", 1122 + "gdk-sys", 1123 + "gio", 1124 + "glib", 1125 + "libc", 1126 + "pango", 1127 + ] 1128 + 1129 + [[package]] 1130 + name = "gdk-pixbuf" 1131 + version = "0.18.5" 1132 + source = "registry+https://github.com/rust-lang/crates.io-index" 1133 + checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" 1134 + dependencies = [ 1135 + "gdk-pixbuf-sys", 1136 + "gio", 1137 + "glib", 1138 + "libc", 1139 + "once_cell", 1140 + ] 1141 + 1142 + [[package]] 1143 + name = "gdk-pixbuf-sys" 1144 + version = "0.18.0" 1145 + source = "registry+https://github.com/rust-lang/crates.io-index" 1146 + checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 1147 + dependencies = [ 1148 + "gio-sys", 1149 + "glib-sys", 1150 + "gobject-sys", 1151 + "libc", 1152 + "system-deps", 1153 + ] 1154 + 1155 + [[package]] 1156 + name = "gdk-sys" 1157 + version = "0.18.2" 1158 + source = "registry+https://github.com/rust-lang/crates.io-index" 1159 + checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" 1160 + dependencies = [ 1161 + "cairo-sys-rs", 1162 + "gdk-pixbuf-sys", 1163 + "gio-sys", 1164 + "glib-sys", 1165 + "gobject-sys", 1166 + "libc", 1167 + "pango-sys", 1168 + "pkg-config", 1169 + "system-deps", 1170 + ] 1171 + 1172 + [[package]] 1173 + name = "gdkwayland-sys" 1174 + version = "0.18.2" 1175 + source = "registry+https://github.com/rust-lang/crates.io-index" 1176 + checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" 1177 + dependencies = [ 1178 + "gdk-sys", 1179 + "glib-sys", 1180 + "gobject-sys", 1181 + "libc", 1182 + "pkg-config", 1183 + "system-deps", 1184 + ] 1185 + 1186 + [[package]] 1187 + name = "gdkx11" 1188 + version = "0.18.2" 1189 + source = "registry+https://github.com/rust-lang/crates.io-index" 1190 + checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" 1191 + dependencies = [ 1192 + "gdk", 1193 + "gdkx11-sys", 1194 + "gio", 1195 + "glib", 1196 + "libc", 1197 + "x11", 1198 + ] 1199 + 1200 + [[package]] 1201 + name = "gdkx11-sys" 1202 + version = "0.18.2" 1203 + source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" 1205 + dependencies = [ 1206 + "gdk-sys", 1207 + "glib-sys", 1208 + "libc", 1209 + "system-deps", 1210 + "x11", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "generic-array" 1215 + version = "0.14.7" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1218 + dependencies = [ 1219 + "typenum", 1220 + "version_check", 1221 + ] 1222 + 1223 + [[package]] 1224 + name = "getrandom" 1225 + version = "0.1.16" 1226 + source = "registry+https://github.com/rust-lang/crates.io-index" 1227 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1228 + dependencies = [ 1229 + "cfg-if", 1230 + "libc", 1231 + "wasi 0.9.0+wasi-snapshot-preview1", 1232 + ] 1233 + 1234 + [[package]] 1235 + name = "getrandom" 1236 + version = "0.2.16" 1237 + source = "registry+https://github.com/rust-lang/crates.io-index" 1238 + checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 1239 + dependencies = [ 1240 + "cfg-if", 1241 + "libc", 1242 + "wasi 0.11.1+wasi-snapshot-preview1", 1243 + ] 1244 + 1245 + [[package]] 1246 + name = "getrandom" 1247 + version = "0.3.4" 1248 + source = "registry+https://github.com/rust-lang/crates.io-index" 1249 + checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1250 + dependencies = [ 1251 + "cfg-if", 1252 + "libc", 1253 + "r-efi", 1254 + "wasip2", 1255 + ] 1256 + 1257 + [[package]] 1258 + name = "gio" 1259 + version = "0.18.4" 1260 + source = "registry+https://github.com/rust-lang/crates.io-index" 1261 + checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 1262 + dependencies = [ 1263 + "futures-channel", 1264 + "futures-core", 1265 + "futures-io", 1266 + "futures-util", 1267 + "gio-sys", 1268 + "glib", 1269 + "libc", 1270 + "once_cell", 1271 + "pin-project-lite", 1272 + "smallvec", 1273 + "thiserror 1.0.69", 1274 + ] 1275 + 1276 + [[package]] 1277 + name = "gio-sys" 1278 + version = "0.18.1" 1279 + source = "registry+https://github.com/rust-lang/crates.io-index" 1280 + checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 1281 + dependencies = [ 1282 + "glib-sys", 1283 + "gobject-sys", 1284 + "libc", 1285 + "system-deps", 1286 + "winapi", 1287 + ] 1288 + 1289 + [[package]] 1290 + name = "glib" 1291 + version = "0.18.5" 1292 + source = "registry+https://github.com/rust-lang/crates.io-index" 1293 + checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 1294 + dependencies = [ 1295 + "bitflags 2.10.0", 1296 + "futures-channel", 1297 + "futures-core", 1298 + "futures-executor", 1299 + "futures-task", 1300 + "futures-util", 1301 + "gio-sys", 1302 + "glib-macros", 1303 + "glib-sys", 1304 + "gobject-sys", 1305 + "libc", 1306 + "memchr", 1307 + "once_cell", 1308 + "smallvec", 1309 + "thiserror 1.0.69", 1310 + ] 1311 + 1312 + [[package]] 1313 + name = "glib-macros" 1314 + version = "0.18.5" 1315 + source = "registry+https://github.com/rust-lang/crates.io-index" 1316 + checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 1317 + dependencies = [ 1318 + "heck 0.4.1", 1319 + "proc-macro-crate 2.0.2", 1320 + "proc-macro-error", 1321 + "proc-macro2", 1322 + "quote", 1323 + "syn 2.0.111", 1324 + ] 1325 + 1326 + [[package]] 1327 + name = "glib-sys" 1328 + version = "0.18.1" 1329 + source = "registry+https://github.com/rust-lang/crates.io-index" 1330 + checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 1331 + dependencies = [ 1332 + "libc", 1333 + "system-deps", 1334 + ] 1335 + 1336 + [[package]] 1337 + name = "glob" 1338 + version = "0.3.3" 1339 + source = "registry+https://github.com/rust-lang/crates.io-index" 1340 + checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 1341 + 1342 + [[package]] 1343 + name = "gobject-sys" 1344 + version = "0.18.0" 1345 + source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 1347 + dependencies = [ 1348 + "glib-sys", 1349 + "libc", 1350 + "system-deps", 1351 + ] 1352 + 1353 + [[package]] 1354 + name = "gtk" 1355 + version = "0.18.2" 1356 + source = "registry+https://github.com/rust-lang/crates.io-index" 1357 + checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" 1358 + dependencies = [ 1359 + "atk", 1360 + "cairo-rs", 1361 + "field-offset", 1362 + "futures-channel", 1363 + "gdk", 1364 + "gdk-pixbuf", 1365 + "gio", 1366 + "glib", 1367 + "gtk-sys", 1368 + "gtk3-macros", 1369 + "libc", 1370 + "pango", 1371 + "pkg-config", 1372 + ] 1373 + 1374 + [[package]] 1375 + name = "gtk-sys" 1376 + version = "0.18.2" 1377 + source = "registry+https://github.com/rust-lang/crates.io-index" 1378 + checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" 1379 + dependencies = [ 1380 + "atk-sys", 1381 + "cairo-sys-rs", 1382 + "gdk-pixbuf-sys", 1383 + "gdk-sys", 1384 + "gio-sys", 1385 + "glib-sys", 1386 + "gobject-sys", 1387 + "libc", 1388 + "pango-sys", 1389 + "system-deps", 1390 + ] 1391 + 1392 + [[package]] 1393 + name = "gtk3-macros" 1394 + version = "0.18.2" 1395 + source = "registry+https://github.com/rust-lang/crates.io-index" 1396 + checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" 1397 + dependencies = [ 1398 + "proc-macro-crate 1.3.1", 1399 + "proc-macro-error", 1400 + "proc-macro2", 1401 + "quote", 1402 + "syn 2.0.111", 1403 + ] 1404 + 1405 + [[package]] 1406 + name = "hashbrown" 1407 + version = "0.12.3" 1408 + source = "registry+https://github.com/rust-lang/crates.io-index" 1409 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1410 + 1411 + [[package]] 1412 + name = "hashbrown" 1413 + version = "0.16.1" 1414 + source = "registry+https://github.com/rust-lang/crates.io-index" 1415 + checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 1416 + 1417 + [[package]] 1418 + name = "heck" 1419 + version = "0.4.1" 1420 + source = "registry+https://github.com/rust-lang/crates.io-index" 1421 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1422 + 1423 + [[package]] 1424 + name = "heck" 1425 + version = "0.5.0" 1426 + source = "registry+https://github.com/rust-lang/crates.io-index" 1427 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1428 + 1429 + [[package]] 1430 + name = "hermit-abi" 1431 + version = "0.5.2" 1432 + source = "registry+https://github.com/rust-lang/crates.io-index" 1433 + checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1434 + 1435 + [[package]] 1436 + name = "hex" 1437 + version = "0.4.3" 1438 + source = "registry+https://github.com/rust-lang/crates.io-index" 1439 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1440 + 1441 + [[package]] 1442 + name = "html5ever" 1443 + version = "0.29.1" 1444 + source = "registry+https://github.com/rust-lang/crates.io-index" 1445 + checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" 1446 + dependencies = [ 1447 + "log", 1448 + "mac", 1449 + "markup5ever", 1450 + "match_token", 1451 + ] 1452 + 1453 + [[package]] 1454 + name = "http" 1455 + version = "1.4.0" 1456 + source = "registry+https://github.com/rust-lang/crates.io-index" 1457 + checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 1458 + dependencies = [ 1459 + "bytes", 1460 + "itoa", 1461 + ] 1462 + 1463 + [[package]] 1464 + name = "http-body" 1465 + version = "1.0.1" 1466 + source = "registry+https://github.com/rust-lang/crates.io-index" 1467 + checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1468 + dependencies = [ 1469 + "bytes", 1470 + "http", 1471 + ] 1472 + 1473 + [[package]] 1474 + name = "http-body-util" 1475 + version = "0.1.3" 1476 + source = "registry+https://github.com/rust-lang/crates.io-index" 1477 + checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1478 + dependencies = [ 1479 + "bytes", 1480 + "futures-core", 1481 + "http", 1482 + "http-body", 1483 + "pin-project-lite", 1484 + ] 1485 + 1486 + [[package]] 1487 + name = "httparse" 1488 + version = "1.10.1" 1489 + source = "registry+https://github.com/rust-lang/crates.io-index" 1490 + checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1491 + 1492 + [[package]] 1493 + name = "hyper" 1494 + version = "1.8.1" 1495 + source = "registry+https://github.com/rust-lang/crates.io-index" 1496 + checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 1497 + dependencies = [ 1498 + "atomic-waker", 1499 + "bytes", 1500 + "futures-channel", 1501 + "futures-core", 1502 + "http", 1503 + "http-body", 1504 + "httparse", 1505 + "itoa", 1506 + "pin-project-lite", 1507 + "pin-utils", 1508 + "smallvec", 1509 + "tokio", 1510 + "want", 1511 + ] 1512 + 1513 + [[package]] 1514 + name = "hyper-util" 1515 + version = "0.1.19" 1516 + source = "registry+https://github.com/rust-lang/crates.io-index" 1517 + checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 1518 + dependencies = [ 1519 + "base64 0.22.1", 1520 + "bytes", 1521 + "futures-channel", 1522 + "futures-core", 1523 + "futures-util", 1524 + "http", 1525 + "http-body", 1526 + "hyper", 1527 + "ipnet", 1528 + "libc", 1529 + "percent-encoding", 1530 + "pin-project-lite", 1531 + "socket2", 1532 + "tokio", 1533 + "tower-service", 1534 + "tracing", 1535 + ] 1536 + 1537 + [[package]] 1538 + name = "iana-time-zone" 1539 + version = "0.1.64" 1540 + source = "registry+https://github.com/rust-lang/crates.io-index" 1541 + checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 1542 + dependencies = [ 1543 + "android_system_properties", 1544 + "core-foundation-sys", 1545 + "iana-time-zone-haiku", 1546 + "js-sys", 1547 + "log", 1548 + "wasm-bindgen", 1549 + "windows-core 0.62.2", 1550 + ] 1551 + 1552 + [[package]] 1553 + name = "iana-time-zone-haiku" 1554 + version = "0.1.2" 1555 + source = "registry+https://github.com/rust-lang/crates.io-index" 1556 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1557 + dependencies = [ 1558 + "cc", 1559 + ] 1560 + 1561 + [[package]] 1562 + name = "ico" 1563 + version = "0.4.0" 1564 + source = "registry+https://github.com/rust-lang/crates.io-index" 1565 + checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" 1566 + dependencies = [ 1567 + "byteorder", 1568 + "png", 1569 + ] 1570 + 1571 + [[package]] 1572 + name = "icu_collections" 1573 + version = "2.1.1" 1574 + source = "registry+https://github.com/rust-lang/crates.io-index" 1575 + checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 1576 + dependencies = [ 1577 + "displaydoc", 1578 + "potential_utf", 1579 + "yoke", 1580 + "zerofrom", 1581 + "zerovec", 1582 + ] 1583 + 1584 + [[package]] 1585 + name = "icu_locale_core" 1586 + version = "2.1.1" 1587 + source = "registry+https://github.com/rust-lang/crates.io-index" 1588 + checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 1589 + dependencies = [ 1590 + "displaydoc", 1591 + "litemap", 1592 + "tinystr", 1593 + "writeable", 1594 + "zerovec", 1595 + ] 1596 + 1597 + [[package]] 1598 + name = "icu_normalizer" 1599 + version = "2.1.1" 1600 + source = "registry+https://github.com/rust-lang/crates.io-index" 1601 + checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 1602 + dependencies = [ 1603 + "icu_collections", 1604 + "icu_normalizer_data", 1605 + "icu_properties", 1606 + "icu_provider", 1607 + "smallvec", 1608 + "zerovec", 1609 + ] 1610 + 1611 + [[package]] 1612 + name = "icu_normalizer_data" 1613 + version = "2.1.1" 1614 + source = "registry+https://github.com/rust-lang/crates.io-index" 1615 + checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 1616 + 1617 + [[package]] 1618 + name = "icu_properties" 1619 + version = "2.1.2" 1620 + source = "registry+https://github.com/rust-lang/crates.io-index" 1621 + checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 1622 + dependencies = [ 1623 + "icu_collections", 1624 + "icu_locale_core", 1625 + "icu_properties_data", 1626 + "icu_provider", 1627 + "zerotrie", 1628 + "zerovec", 1629 + ] 1630 + 1631 + [[package]] 1632 + name = "icu_properties_data" 1633 + version = "2.1.2" 1634 + source = "registry+https://github.com/rust-lang/crates.io-index" 1635 + checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 1636 + 1637 + [[package]] 1638 + name = "icu_provider" 1639 + version = "2.1.1" 1640 + source = "registry+https://github.com/rust-lang/crates.io-index" 1641 + checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 1642 + dependencies = [ 1643 + "displaydoc", 1644 + "icu_locale_core", 1645 + "writeable", 1646 + "yoke", 1647 + "zerofrom", 1648 + "zerotrie", 1649 + "zerovec", 1650 + ] 1651 + 1652 + [[package]] 1653 + name = "ident_case" 1654 + version = "1.0.1" 1655 + source = "registry+https://github.com/rust-lang/crates.io-index" 1656 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1657 + 1658 + [[package]] 1659 + name = "idna" 1660 + version = "1.1.0" 1661 + source = "registry+https://github.com/rust-lang/crates.io-index" 1662 + checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1663 + dependencies = [ 1664 + "idna_adapter", 1665 + "smallvec", 1666 + "utf8_iter", 1667 + ] 1668 + 1669 + [[package]] 1670 + name = "idna_adapter" 1671 + version = "1.2.1" 1672 + source = "registry+https://github.com/rust-lang/crates.io-index" 1673 + checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1674 + dependencies = [ 1675 + "icu_normalizer", 1676 + "icu_properties", 1677 + ] 1678 + 1679 + [[package]] 1680 + name = "indexmap" 1681 + version = "1.9.3" 1682 + source = "registry+https://github.com/rust-lang/crates.io-index" 1683 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1684 + dependencies = [ 1685 + "autocfg", 1686 + "hashbrown 0.12.3", 1687 + "serde", 1688 + ] 1689 + 1690 + [[package]] 1691 + name = "indexmap" 1692 + version = "2.12.1" 1693 + source = "registry+https://github.com/rust-lang/crates.io-index" 1694 + checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 1695 + dependencies = [ 1696 + "equivalent", 1697 + "hashbrown 0.16.1", 1698 + "serde", 1699 + "serde_core", 1700 + ] 1701 + 1702 + [[package]] 1703 + name = "infer" 1704 + version = "0.19.0" 1705 + source = "registry+https://github.com/rust-lang/crates.io-index" 1706 + checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" 1707 + dependencies = [ 1708 + "cfb", 1709 + ] 1710 + 1711 + [[package]] 1712 + name = "ipnet" 1713 + version = "2.11.0" 1714 + source = "registry+https://github.com/rust-lang/crates.io-index" 1715 + checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1716 + 1717 + [[package]] 1718 + name = "iri-string" 1719 + version = "0.7.9" 1720 + source = "registry+https://github.com/rust-lang/crates.io-index" 1721 + checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" 1722 + dependencies = [ 1723 + "memchr", 1724 + "serde", 1725 + ] 1726 + 1727 + [[package]] 1728 + name = "is-docker" 1729 + version = "0.2.0" 1730 + source = "registry+https://github.com/rust-lang/crates.io-index" 1731 + checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 1732 + dependencies = [ 1733 + "once_cell", 1734 + ] 1735 + 1736 + [[package]] 1737 + name = "is-wsl" 1738 + version = "0.4.0" 1739 + source = "registry+https://github.com/rust-lang/crates.io-index" 1740 + checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 1741 + dependencies = [ 1742 + "is-docker", 1743 + "once_cell", 1744 + ] 1745 + 1746 + [[package]] 1747 + name = "itoa" 1748 + version = "1.0.16" 1749 + source = "registry+https://github.com/rust-lang/crates.io-index" 1750 + checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010" 1751 + 1752 + [[package]] 1753 + name = "javascriptcore-rs" 1754 + version = "1.1.2" 1755 + source = "registry+https://github.com/rust-lang/crates.io-index" 1756 + checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" 1757 + dependencies = [ 1758 + "bitflags 1.3.2", 1759 + "glib", 1760 + "javascriptcore-rs-sys", 1761 + ] 1762 + 1763 + [[package]] 1764 + name = "javascriptcore-rs-sys" 1765 + version = "1.1.1" 1766 + source = "registry+https://github.com/rust-lang/crates.io-index" 1767 + checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" 1768 + dependencies = [ 1769 + "glib-sys", 1770 + "gobject-sys", 1771 + "libc", 1772 + "system-deps", 1773 + ] 1774 + 1775 + [[package]] 1776 + name = "jni" 1777 + version = "0.21.1" 1778 + source = "registry+https://github.com/rust-lang/crates.io-index" 1779 + checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1780 + dependencies = [ 1781 + "cesu8", 1782 + "cfg-if", 1783 + "combine", 1784 + "jni-sys", 1785 + "log", 1786 + "thiserror 1.0.69", 1787 + "walkdir", 1788 + "windows-sys 0.45.0", 1789 + ] 1790 + 1791 + [[package]] 1792 + name = "jni-sys" 1793 + version = "0.3.0" 1794 + source = "registry+https://github.com/rust-lang/crates.io-index" 1795 + checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1796 + 1797 + [[package]] 1798 + name = "js-sys" 1799 + version = "0.3.83" 1800 + source = "registry+https://github.com/rust-lang/crates.io-index" 1801 + checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 1802 + dependencies = [ 1803 + "once_cell", 1804 + "wasm-bindgen", 1805 + ] 1806 + 1807 + [[package]] 1808 + name = "json-patch" 1809 + version = "3.0.1" 1810 + source = "registry+https://github.com/rust-lang/crates.io-index" 1811 + checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" 1812 + dependencies = [ 1813 + "jsonptr", 1814 + "serde", 1815 + "serde_json", 1816 + "thiserror 1.0.69", 1817 + ] 1818 + 1819 + [[package]] 1820 + name = "jsonptr" 1821 + version = "0.6.3" 1822 + source = "registry+https://github.com/rust-lang/crates.io-index" 1823 + checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" 1824 + dependencies = [ 1825 + "serde", 1826 + "serde_json", 1827 + ] 1828 + 1829 + [[package]] 1830 + name = "keyboard-types" 1831 + version = "0.7.0" 1832 + source = "registry+https://github.com/rust-lang/crates.io-index" 1833 + checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" 1834 + dependencies = [ 1835 + "bitflags 2.10.0", 1836 + "serde", 1837 + "unicode-segmentation", 1838 + ] 1839 + 1840 + [[package]] 1841 + name = "kuchikiki" 1842 + version = "0.8.8-speedreader" 1843 + source = "registry+https://github.com/rust-lang/crates.io-index" 1844 + checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" 1845 + dependencies = [ 1846 + "cssparser", 1847 + "html5ever", 1848 + "indexmap 2.12.1", 1849 + "selectors", 1850 + ] 1851 + 1852 + [[package]] 1853 + name = "lazy_static" 1854 + version = "1.5.0" 1855 + source = "registry+https://github.com/rust-lang/crates.io-index" 1856 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1857 + 1858 + [[package]] 1859 + name = "libappindicator" 1860 + version = "0.9.0" 1861 + source = "registry+https://github.com/rust-lang/crates.io-index" 1862 + checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" 1863 + dependencies = [ 1864 + "glib", 1865 + "gtk", 1866 + "gtk-sys", 1867 + "libappindicator-sys", 1868 + "log", 1869 + ] 1870 + 1871 + [[package]] 1872 + name = "libappindicator-sys" 1873 + version = "0.9.0" 1874 + source = "registry+https://github.com/rust-lang/crates.io-index" 1875 + checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" 1876 + dependencies = [ 1877 + "gtk-sys", 1878 + "libloading 0.7.4", 1879 + "once_cell", 1880 + ] 1881 + 1882 + [[package]] 1883 + name = "libc" 1884 + version = "0.2.178" 1885 + source = "registry+https://github.com/rust-lang/crates.io-index" 1886 + checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 1887 + 1888 + [[package]] 1889 + name = "libloading" 1890 + version = "0.7.4" 1891 + source = "registry+https://github.com/rust-lang/crates.io-index" 1892 + checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1893 + dependencies = [ 1894 + "cfg-if", 1895 + "winapi", 1896 + ] 1897 + 1898 + [[package]] 1899 + name = "libloading" 1900 + version = "0.8.9" 1901 + source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" 1903 + dependencies = [ 1904 + "cfg-if", 1905 + "windows-link 0.2.1", 1906 + ] 1907 + 1908 + [[package]] 1909 + name = "libredox" 1910 + version = "0.1.11" 1911 + source = "registry+https://github.com/rust-lang/crates.io-index" 1912 + checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50" 1913 + dependencies = [ 1914 + "bitflags 2.10.0", 1915 + "libc", 1916 + ] 1917 + 1918 + [[package]] 1919 + name = "linux-raw-sys" 1920 + version = "0.11.0" 1921 + source = "registry+https://github.com/rust-lang/crates.io-index" 1922 + checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 1923 + 1924 + [[package]] 1925 + name = "litemap" 1926 + version = "0.8.1" 1927 + source = "registry+https://github.com/rust-lang/crates.io-index" 1928 + checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 1929 + 1930 + [[package]] 1931 + name = "lock_api" 1932 + version = "0.4.14" 1933 + source = "registry+https://github.com/rust-lang/crates.io-index" 1934 + checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1935 + dependencies = [ 1936 + "scopeguard", 1937 + ] 1938 + 1939 + [[package]] 1940 + name = "log" 1941 + version = "0.4.29" 1942 + source = "registry+https://github.com/rust-lang/crates.io-index" 1943 + checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 1944 + 1945 + [[package]] 1946 + name = "mac" 1947 + version = "0.1.1" 1948 + source = "registry+https://github.com/rust-lang/crates.io-index" 1949 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1950 + 1951 + [[package]] 1952 + name = "markup5ever" 1953 + version = "0.14.1" 1954 + source = "registry+https://github.com/rust-lang/crates.io-index" 1955 + checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" 1956 + dependencies = [ 1957 + "log", 1958 + "phf 0.11.3", 1959 + "phf_codegen 0.11.3", 1960 + "string_cache", 1961 + "string_cache_codegen", 1962 + "tendril", 1963 + ] 1964 + 1965 + [[package]] 1966 + name = "match_token" 1967 + version = "0.1.0" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" 1970 + dependencies = [ 1971 + "proc-macro2", 1972 + "quote", 1973 + "syn 2.0.111", 1974 + ] 1975 + 1976 + [[package]] 1977 + name = "matches" 1978 + version = "0.1.10" 1979 + source = "registry+https://github.com/rust-lang/crates.io-index" 1980 + checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1981 + 1982 + [[package]] 1983 + name = "memchr" 1984 + version = "2.7.6" 1985 + source = "registry+https://github.com/rust-lang/crates.io-index" 1986 + checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 1987 + 1988 + [[package]] 1989 + name = "memoffset" 1990 + version = "0.9.1" 1991 + source = "registry+https://github.com/rust-lang/crates.io-index" 1992 + checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1993 + dependencies = [ 1994 + "autocfg", 1995 + ] 1996 + 1997 + [[package]] 1998 + name = "mime" 1999 + version = "0.3.17" 2000 + source = "registry+https://github.com/rust-lang/crates.io-index" 2001 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2002 + 2003 + [[package]] 2004 + name = "miniz_oxide" 2005 + version = "0.8.9" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 2008 + dependencies = [ 2009 + "adler2", 2010 + "simd-adler32", 2011 + ] 2012 + 2013 + [[package]] 2014 + name = "mio" 2015 + version = "1.1.1" 2016 + source = "registry+https://github.com/rust-lang/crates.io-index" 2017 + checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 2018 + dependencies = [ 2019 + "libc", 2020 + "wasi 0.11.1+wasi-snapshot-preview1", 2021 + "windows-sys 0.61.2", 2022 + ] 2023 + 2024 + [[package]] 2025 + name = "muda" 2026 + version = "0.17.1" 2027 + source = "registry+https://github.com/rust-lang/crates.io-index" 2028 + checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" 2029 + dependencies = [ 2030 + "crossbeam-channel", 2031 + "dpi", 2032 + "gtk", 2033 + "keyboard-types", 2034 + "objc2", 2035 + "objc2-app-kit", 2036 + "objc2-core-foundation", 2037 + "objc2-foundation", 2038 + "once_cell", 2039 + "png", 2040 + "serde", 2041 + "thiserror 2.0.17", 2042 + "windows-sys 0.60.2", 2043 + ] 2044 + 2045 + [[package]] 2046 + name = "ndk" 2047 + version = "0.9.0" 2048 + source = "registry+https://github.com/rust-lang/crates.io-index" 2049 + checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 2050 + dependencies = [ 2051 + "bitflags 2.10.0", 2052 + "jni-sys", 2053 + "log", 2054 + "ndk-sys", 2055 + "num_enum", 2056 + "raw-window-handle", 2057 + "thiserror 1.0.69", 2058 + ] 2059 + 2060 + [[package]] 2061 + name = "ndk-context" 2062 + version = "0.1.1" 2063 + source = "registry+https://github.com/rust-lang/crates.io-index" 2064 + checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2065 + 2066 + [[package]] 2067 + name = "ndk-sys" 2068 + version = "0.6.0+11769913" 2069 + source = "registry+https://github.com/rust-lang/crates.io-index" 2070 + checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 2071 + dependencies = [ 2072 + "jni-sys", 2073 + ] 2074 + 2075 + [[package]] 2076 + name = "new_debug_unreachable" 2077 + version = "1.0.6" 2078 + source = "registry+https://github.com/rust-lang/crates.io-index" 2079 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 2080 + 2081 + [[package]] 2082 + name = "nix" 2083 + version = "0.30.1" 2084 + source = "registry+https://github.com/rust-lang/crates.io-index" 2085 + checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 2086 + dependencies = [ 2087 + "bitflags 2.10.0", 2088 + "cfg-if", 2089 + "cfg_aliases", 2090 + "libc", 2091 + "memoffset", 2092 + ] 2093 + 2094 + [[package]] 2095 + name = "nodrop" 2096 + version = "0.1.14" 2097 + source = "registry+https://github.com/rust-lang/crates.io-index" 2098 + checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 2099 + 2100 + [[package]] 2101 + name = "num-conv" 2102 + version = "0.1.0" 2103 + source = "registry+https://github.com/rust-lang/crates.io-index" 2104 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2105 + 2106 + [[package]] 2107 + name = "num-traits" 2108 + version = "0.2.19" 2109 + source = "registry+https://github.com/rust-lang/crates.io-index" 2110 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2111 + dependencies = [ 2112 + "autocfg", 2113 + ] 2114 + 2115 + [[package]] 2116 + name = "num_enum" 2117 + version = "0.7.5" 2118 + source = "registry+https://github.com/rust-lang/crates.io-index" 2119 + checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" 2120 + dependencies = [ 2121 + "num_enum_derive", 2122 + "rustversion", 2123 + ] 2124 + 2125 + [[package]] 2126 + name = "num_enum_derive" 2127 + version = "0.7.5" 2128 + source = "registry+https://github.com/rust-lang/crates.io-index" 2129 + checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" 2130 + dependencies = [ 2131 + "proc-macro-crate 3.4.0", 2132 + "proc-macro2", 2133 + "quote", 2134 + "syn 2.0.111", 2135 + ] 2136 + 2137 + [[package]] 2138 + name = "objc2" 2139 + version = "0.6.3" 2140 + source = "registry+https://github.com/rust-lang/crates.io-index" 2141 + checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" 2142 + dependencies = [ 2143 + "objc2-encode", 2144 + "objc2-exception-helper", 2145 + ] 2146 + 2147 + [[package]] 2148 + name = "objc2-app-kit" 2149 + version = "0.3.2" 2150 + source = "registry+https://github.com/rust-lang/crates.io-index" 2151 + checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" 2152 + dependencies = [ 2153 + "bitflags 2.10.0", 2154 + "block2", 2155 + "libc", 2156 + "objc2", 2157 + "objc2-cloud-kit", 2158 + "objc2-core-data", 2159 + "objc2-core-foundation", 2160 + "objc2-core-graphics", 2161 + "objc2-core-image", 2162 + "objc2-core-text", 2163 + "objc2-core-video", 2164 + "objc2-foundation", 2165 + "objc2-quartz-core", 2166 + ] 2167 + 2168 + [[package]] 2169 + name = "objc2-cloud-kit" 2170 + version = "0.3.2" 2171 + source = "registry+https://github.com/rust-lang/crates.io-index" 2172 + checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c" 2173 + dependencies = [ 2174 + "bitflags 2.10.0", 2175 + "objc2", 2176 + "objc2-foundation", 2177 + ] 2178 + 2179 + [[package]] 2180 + name = "objc2-core-data" 2181 + version = "0.3.2" 2182 + source = "registry+https://github.com/rust-lang/crates.io-index" 2183 + checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa" 2184 + dependencies = [ 2185 + "bitflags 2.10.0", 2186 + "objc2", 2187 + "objc2-foundation", 2188 + ] 2189 + 2190 + [[package]] 2191 + name = "objc2-core-foundation" 2192 + version = "0.3.2" 2193 + source = "registry+https://github.com/rust-lang/crates.io-index" 2194 + checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" 2195 + dependencies = [ 2196 + "bitflags 2.10.0", 2197 + "dispatch2", 2198 + "objc2", 2199 + ] 2200 + 2201 + [[package]] 2202 + name = "objc2-core-graphics" 2203 + version = "0.3.2" 2204 + source = "registry+https://github.com/rust-lang/crates.io-index" 2205 + checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" 2206 + dependencies = [ 2207 + "bitflags 2.10.0", 2208 + "dispatch2", 2209 + "objc2", 2210 + "objc2-core-foundation", 2211 + "objc2-io-surface", 2212 + ] 2213 + 2214 + [[package]] 2215 + name = "objc2-core-image" 2216 + version = "0.3.2" 2217 + source = "registry+https://github.com/rust-lang/crates.io-index" 2218 + checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006" 2219 + dependencies = [ 2220 + "objc2", 2221 + "objc2-foundation", 2222 + ] 2223 + 2224 + [[package]] 2225 + name = "objc2-core-text" 2226 + version = "0.3.2" 2227 + source = "registry+https://github.com/rust-lang/crates.io-index" 2228 + checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d" 2229 + dependencies = [ 2230 + "bitflags 2.10.0", 2231 + "objc2", 2232 + "objc2-core-foundation", 2233 + "objc2-core-graphics", 2234 + ] 2235 + 2236 + [[package]] 2237 + name = "objc2-core-video" 2238 + version = "0.3.2" 2239 + source = "registry+https://github.com/rust-lang/crates.io-index" 2240 + checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6" 2241 + dependencies = [ 2242 + "bitflags 2.10.0", 2243 + "objc2", 2244 + "objc2-core-foundation", 2245 + "objc2-core-graphics", 2246 + "objc2-io-surface", 2247 + ] 2248 + 2249 + [[package]] 2250 + name = "objc2-encode" 2251 + version = "4.1.0" 2252 + source = "registry+https://github.com/rust-lang/crates.io-index" 2253 + checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 2254 + 2255 + [[package]] 2256 + name = "objc2-exception-helper" 2257 + version = "0.1.1" 2258 + source = "registry+https://github.com/rust-lang/crates.io-index" 2259 + checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" 2260 + dependencies = [ 2261 + "cc", 2262 + ] 2263 + 2264 + [[package]] 2265 + name = "objc2-foundation" 2266 + version = "0.3.2" 2267 + source = "registry+https://github.com/rust-lang/crates.io-index" 2268 + checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" 2269 + dependencies = [ 2270 + "bitflags 2.10.0", 2271 + "block2", 2272 + "libc", 2273 + "objc2", 2274 + "objc2-core-foundation", 2275 + ] 2276 + 2277 + [[package]] 2278 + name = "objc2-io-surface" 2279 + version = "0.3.2" 2280 + source = "registry+https://github.com/rust-lang/crates.io-index" 2281 + checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" 2282 + dependencies = [ 2283 + "bitflags 2.10.0", 2284 + "objc2", 2285 + "objc2-core-foundation", 2286 + ] 2287 + 2288 + [[package]] 2289 + name = "objc2-javascript-core" 2290 + version = "0.3.2" 2291 + source = "registry+https://github.com/rust-lang/crates.io-index" 2292 + checksum = "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586" 2293 + dependencies = [ 2294 + "objc2", 2295 + "objc2-core-foundation", 2296 + ] 2297 + 2298 + [[package]] 2299 + name = "objc2-quartz-core" 2300 + version = "0.3.2" 2301 + source = "registry+https://github.com/rust-lang/crates.io-index" 2302 + checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" 2303 + dependencies = [ 2304 + "bitflags 2.10.0", 2305 + "objc2", 2306 + "objc2-core-foundation", 2307 + "objc2-foundation", 2308 + ] 2309 + 2310 + [[package]] 2311 + name = "objc2-security" 2312 + version = "0.3.2" 2313 + source = "registry+https://github.com/rust-lang/crates.io-index" 2314 + checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a" 2315 + dependencies = [ 2316 + "bitflags 2.10.0", 2317 + "objc2", 2318 + "objc2-core-foundation", 2319 + ] 2320 + 2321 + [[package]] 2322 + name = "objc2-ui-kit" 2323 + version = "0.3.2" 2324 + source = "registry+https://github.com/rust-lang/crates.io-index" 2325 + checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" 2326 + dependencies = [ 2327 + "bitflags 2.10.0", 2328 + "objc2", 2329 + "objc2-core-foundation", 2330 + "objc2-foundation", 2331 + ] 2332 + 2333 + [[package]] 2334 + name = "objc2-web-kit" 2335 + version = "0.3.2" 2336 + source = "registry+https://github.com/rust-lang/crates.io-index" 2337 + checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" 2338 + dependencies = [ 2339 + "bitflags 2.10.0", 2340 + "block2", 2341 + "objc2", 2342 + "objc2-app-kit", 2343 + "objc2-core-foundation", 2344 + "objc2-foundation", 2345 + "objc2-javascript-core", 2346 + "objc2-security", 2347 + ] 2348 + 2349 + [[package]] 2350 + name = "once_cell" 2351 + version = "1.21.3" 2352 + source = "registry+https://github.com/rust-lang/crates.io-index" 2353 + checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2354 + 2355 + [[package]] 2356 + name = "open" 2357 + version = "5.3.3" 2358 + source = "registry+https://github.com/rust-lang/crates.io-index" 2359 + checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc" 2360 + dependencies = [ 2361 + "dunce", 2362 + "is-wsl", 2363 + "libc", 2364 + "pathdiff", 2365 + ] 2366 + 2367 + [[package]] 2368 + name = "option-ext" 2369 + version = "0.2.0" 2370 + source = "registry+https://github.com/rust-lang/crates.io-index" 2371 + checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 2372 + 2373 + [[package]] 2374 + name = "ordered-stream" 2375 + version = "0.2.0" 2376 + source = "registry+https://github.com/rust-lang/crates.io-index" 2377 + checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2378 + dependencies = [ 2379 + "futures-core", 2380 + "pin-project-lite", 2381 + ] 2382 + 2383 + [[package]] 2384 + name = "pango" 2385 + version = "0.18.3" 2386 + source = "registry+https://github.com/rust-lang/crates.io-index" 2387 + checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 2388 + dependencies = [ 2389 + "gio", 2390 + "glib", 2391 + "libc", 2392 + "once_cell", 2393 + "pango-sys", 2394 + ] 2395 + 2396 + [[package]] 2397 + name = "pango-sys" 2398 + version = "0.18.0" 2399 + source = "registry+https://github.com/rust-lang/crates.io-index" 2400 + checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 2401 + dependencies = [ 2402 + "glib-sys", 2403 + "gobject-sys", 2404 + "libc", 2405 + "system-deps", 2406 + ] 2407 + 2408 + [[package]] 2409 + name = "parking" 2410 + version = "2.2.1" 2411 + source = "registry+https://github.com/rust-lang/crates.io-index" 2412 + checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2413 + 2414 + [[package]] 2415 + name = "parking_lot" 2416 + version = "0.12.5" 2417 + source = "registry+https://github.com/rust-lang/crates.io-index" 2418 + checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 2419 + dependencies = [ 2420 + "lock_api", 2421 + "parking_lot_core", 2422 + ] 2423 + 2424 + [[package]] 2425 + name = "parking_lot_core" 2426 + version = "0.9.12" 2427 + source = "registry+https://github.com/rust-lang/crates.io-index" 2428 + checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2429 + dependencies = [ 2430 + "cfg-if", 2431 + "libc", 2432 + "redox_syscall", 2433 + "smallvec", 2434 + "windows-link 0.2.1", 2435 + ] 2436 + 2437 + [[package]] 2438 + name = "pathdiff" 2439 + version = "0.2.3" 2440 + source = "registry+https://github.com/rust-lang/crates.io-index" 2441 + checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 2442 + 2443 + [[package]] 2444 + name = "percent-encoding" 2445 + version = "2.3.2" 2446 + source = "registry+https://github.com/rust-lang/crates.io-index" 2447 + checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2448 + 2449 + [[package]] 2450 + name = "phf" 2451 + version = "0.8.0" 2452 + source = "registry+https://github.com/rust-lang/crates.io-index" 2453 + checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 2454 + dependencies = [ 2455 + "phf_shared 0.8.0", 2456 + ] 2457 + 2458 + [[package]] 2459 + name = "phf" 2460 + version = "0.10.1" 2461 + source = "registry+https://github.com/rust-lang/crates.io-index" 2462 + checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2463 + dependencies = [ 2464 + "phf_macros 0.10.0", 2465 + "phf_shared 0.10.0", 2466 + "proc-macro-hack", 2467 + ] 2468 + 2469 + [[package]] 2470 + name = "phf" 2471 + version = "0.11.3" 2472 + source = "registry+https://github.com/rust-lang/crates.io-index" 2473 + checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 2474 + dependencies = [ 2475 + "phf_macros 0.11.3", 2476 + "phf_shared 0.11.3", 2477 + ] 2478 + 2479 + [[package]] 2480 + name = "phf_codegen" 2481 + version = "0.8.0" 2482 + source = "registry+https://github.com/rust-lang/crates.io-index" 2483 + checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 2484 + dependencies = [ 2485 + "phf_generator 0.8.0", 2486 + "phf_shared 0.8.0", 2487 + ] 2488 + 2489 + [[package]] 2490 + name = "phf_codegen" 2491 + version = "0.11.3" 2492 + source = "registry+https://github.com/rust-lang/crates.io-index" 2493 + checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 2494 + dependencies = [ 2495 + "phf_generator 0.11.3", 2496 + "phf_shared 0.11.3", 2497 + ] 2498 + 2499 + [[package]] 2500 + name = "phf_generator" 2501 + version = "0.8.0" 2502 + source = "registry+https://github.com/rust-lang/crates.io-index" 2503 + checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 2504 + dependencies = [ 2505 + "phf_shared 0.8.0", 2506 + "rand 0.7.3", 2507 + ] 2508 + 2509 + [[package]] 2510 + name = "phf_generator" 2511 + version = "0.10.0" 2512 + source = "registry+https://github.com/rust-lang/crates.io-index" 2513 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 2514 + dependencies = [ 2515 + "phf_shared 0.10.0", 2516 + "rand 0.8.5", 2517 + ] 2518 + 2519 + [[package]] 2520 + name = "phf_generator" 2521 + version = "0.11.3" 2522 + source = "registry+https://github.com/rust-lang/crates.io-index" 2523 + checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 2524 + dependencies = [ 2525 + "phf_shared 0.11.3", 2526 + "rand 0.8.5", 2527 + ] 2528 + 2529 + [[package]] 2530 + name = "phf_macros" 2531 + version = "0.10.0" 2532 + source = "registry+https://github.com/rust-lang/crates.io-index" 2533 + checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 2534 + dependencies = [ 2535 + "phf_generator 0.10.0", 2536 + "phf_shared 0.10.0", 2537 + "proc-macro-hack", 2538 + "proc-macro2", 2539 + "quote", 2540 + "syn 1.0.109", 2541 + ] 2542 + 2543 + [[package]] 2544 + name = "phf_macros" 2545 + version = "0.11.3" 2546 + source = "registry+https://github.com/rust-lang/crates.io-index" 2547 + checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 2548 + dependencies = [ 2549 + "phf_generator 0.11.3", 2550 + "phf_shared 0.11.3", 2551 + "proc-macro2", 2552 + "quote", 2553 + "syn 2.0.111", 2554 + ] 2555 + 2556 + [[package]] 2557 + name = "phf_shared" 2558 + version = "0.8.0" 2559 + source = "registry+https://github.com/rust-lang/crates.io-index" 2560 + checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 2561 + dependencies = [ 2562 + "siphasher 0.3.11", 2563 + ] 2564 + 2565 + [[package]] 2566 + name = "phf_shared" 2567 + version = "0.10.0" 2568 + source = "registry+https://github.com/rust-lang/crates.io-index" 2569 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 2570 + dependencies = [ 2571 + "siphasher 0.3.11", 2572 + ] 2573 + 2574 + [[package]] 2575 + name = "phf_shared" 2576 + version = "0.11.3" 2577 + source = "registry+https://github.com/rust-lang/crates.io-index" 2578 + checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 2579 + dependencies = [ 2580 + "siphasher 1.0.1", 2581 + ] 2582 + 2583 + [[package]] 2584 + name = "pin-project-lite" 2585 + version = "0.2.16" 2586 + source = "registry+https://github.com/rust-lang/crates.io-index" 2587 + checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2588 + 2589 + [[package]] 2590 + name = "pin-utils" 2591 + version = "0.1.0" 2592 + source = "registry+https://github.com/rust-lang/crates.io-index" 2593 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2594 + 2595 + [[package]] 2596 + name = "piper" 2597 + version = "0.2.4" 2598 + source = "registry+https://github.com/rust-lang/crates.io-index" 2599 + checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2600 + dependencies = [ 2601 + "atomic-waker", 2602 + "fastrand", 2603 + "futures-io", 2604 + ] 2605 + 2606 + [[package]] 2607 + name = "pkg-config" 2608 + version = "0.3.32" 2609 + source = "registry+https://github.com/rust-lang/crates.io-index" 2610 + checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 2611 + 2612 + [[package]] 2613 + name = "plist" 2614 + version = "1.8.0" 2615 + source = "registry+https://github.com/rust-lang/crates.io-index" 2616 + checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" 2617 + dependencies = [ 2618 + "base64 0.22.1", 2619 + "indexmap 2.12.1", 2620 + "quick-xml 0.38.4", 2621 + "serde", 2622 + "time", 2623 + ] 2624 + 2625 + [[package]] 2626 + name = "png" 2627 + version = "0.17.16" 2628 + source = "registry+https://github.com/rust-lang/crates.io-index" 2629 + checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 2630 + dependencies = [ 2631 + "bitflags 1.3.2", 2632 + "crc32fast", 2633 + "fdeflate", 2634 + "flate2", 2635 + "miniz_oxide", 2636 + ] 2637 + 2638 + [[package]] 2639 + name = "polling" 2640 + version = "3.11.0" 2641 + source = "registry+https://github.com/rust-lang/crates.io-index" 2642 + checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 2643 + dependencies = [ 2644 + "cfg-if", 2645 + "concurrent-queue", 2646 + "hermit-abi", 2647 + "pin-project-lite", 2648 + "rustix", 2649 + "windows-sys 0.61.2", 2650 + ] 2651 + 2652 + [[package]] 2653 + name = "potential_utf" 2654 + version = "0.1.4" 2655 + source = "registry+https://github.com/rust-lang/crates.io-index" 2656 + checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 2657 + dependencies = [ 2658 + "zerovec", 2659 + ] 2660 + 2661 + [[package]] 2662 + name = "powerfmt" 2663 + version = "0.2.0" 2664 + source = "registry+https://github.com/rust-lang/crates.io-index" 2665 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2666 + 2667 + [[package]] 2668 + name = "ppv-lite86" 2669 + version = "0.2.21" 2670 + source = "registry+https://github.com/rust-lang/crates.io-index" 2671 + checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2672 + dependencies = [ 2673 + "zerocopy", 2674 + ] 2675 + 2676 + [[package]] 2677 + name = "precomputed-hash" 2678 + version = "0.1.1" 2679 + source = "registry+https://github.com/rust-lang/crates.io-index" 2680 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2681 + 2682 + [[package]] 2683 + name = "proc-macro-crate" 2684 + version = "1.3.1" 2685 + source = "registry+https://github.com/rust-lang/crates.io-index" 2686 + checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 2687 + dependencies = [ 2688 + "once_cell", 2689 + "toml_edit 0.19.15", 2690 + ] 2691 + 2692 + [[package]] 2693 + name = "proc-macro-crate" 2694 + version = "2.0.2" 2695 + source = "registry+https://github.com/rust-lang/crates.io-index" 2696 + checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" 2697 + dependencies = [ 2698 + "toml_datetime 0.6.3", 2699 + "toml_edit 0.20.2", 2700 + ] 2701 + 2702 + [[package]] 2703 + name = "proc-macro-crate" 2704 + version = "3.4.0" 2705 + source = "registry+https://github.com/rust-lang/crates.io-index" 2706 + checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" 2707 + dependencies = [ 2708 + "toml_edit 0.23.10+spec-1.0.0", 2709 + ] 2710 + 2711 + [[package]] 2712 + name = "proc-macro-error" 2713 + version = "1.0.4" 2714 + source = "registry+https://github.com/rust-lang/crates.io-index" 2715 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2716 + dependencies = [ 2717 + "proc-macro-error-attr", 2718 + "proc-macro2", 2719 + "quote", 2720 + "syn 1.0.109", 2721 + "version_check", 2722 + ] 2723 + 2724 + [[package]] 2725 + name = "proc-macro-error-attr" 2726 + version = "1.0.4" 2727 + source = "registry+https://github.com/rust-lang/crates.io-index" 2728 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2729 + dependencies = [ 2730 + "proc-macro2", 2731 + "quote", 2732 + "version_check", 2733 + ] 2734 + 2735 + [[package]] 2736 + name = "proc-macro-hack" 2737 + version = "0.5.20+deprecated" 2738 + source = "registry+https://github.com/rust-lang/crates.io-index" 2739 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2740 + 2741 + [[package]] 2742 + name = "proc-macro2" 2743 + version = "1.0.103" 2744 + source = "registry+https://github.com/rust-lang/crates.io-index" 2745 + checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 2746 + dependencies = [ 2747 + "unicode-ident", 2748 + ] 2749 + 2750 + [[package]] 2751 + name = "quick-xml" 2752 + version = "0.37.5" 2753 + source = "registry+https://github.com/rust-lang/crates.io-index" 2754 + checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 2755 + dependencies = [ 2756 + "memchr", 2757 + ] 2758 + 2759 + [[package]] 2760 + name = "quick-xml" 2761 + version = "0.38.4" 2762 + source = "registry+https://github.com/rust-lang/crates.io-index" 2763 + checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" 2764 + dependencies = [ 2765 + "memchr", 2766 + ] 2767 + 2768 + [[package]] 2769 + name = "quote" 2770 + version = "1.0.42" 2771 + source = "registry+https://github.com/rust-lang/crates.io-index" 2772 + checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 2773 + dependencies = [ 2774 + "proc-macro2", 2775 + ] 2776 + 2777 + [[package]] 2778 + name = "r-efi" 2779 + version = "5.3.0" 2780 + source = "registry+https://github.com/rust-lang/crates.io-index" 2781 + checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2782 + 2783 + [[package]] 2784 + name = "rand" 2785 + version = "0.7.3" 2786 + source = "registry+https://github.com/rust-lang/crates.io-index" 2787 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2788 + dependencies = [ 2789 + "getrandom 0.1.16", 2790 + "libc", 2791 + "rand_chacha 0.2.2", 2792 + "rand_core 0.5.1", 2793 + "rand_hc", 2794 + "rand_pcg", 2795 + ] 2796 + 2797 + [[package]] 2798 + name = "rand" 2799 + version = "0.8.5" 2800 + source = "registry+https://github.com/rust-lang/crates.io-index" 2801 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2802 + dependencies = [ 2803 + "libc", 2804 + "rand_chacha 0.3.1", 2805 + "rand_core 0.6.4", 2806 + ] 2807 + 2808 + [[package]] 2809 + name = "rand" 2810 + version = "0.9.2" 2811 + source = "registry+https://github.com/rust-lang/crates.io-index" 2812 + checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2813 + dependencies = [ 2814 + "rand_chacha 0.9.0", 2815 + "rand_core 0.9.3", 2816 + ] 2817 + 2818 + [[package]] 2819 + name = "rand_chacha" 2820 + version = "0.2.2" 2821 + source = "registry+https://github.com/rust-lang/crates.io-index" 2822 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2823 + dependencies = [ 2824 + "ppv-lite86", 2825 + "rand_core 0.5.1", 2826 + ] 2827 + 2828 + [[package]] 2829 + name = "rand_chacha" 2830 + version = "0.3.1" 2831 + source = "registry+https://github.com/rust-lang/crates.io-index" 2832 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2833 + dependencies = [ 2834 + "ppv-lite86", 2835 + "rand_core 0.6.4", 2836 + ] 2837 + 2838 + [[package]] 2839 + name = "rand_chacha" 2840 + version = "0.9.0" 2841 + source = "registry+https://github.com/rust-lang/crates.io-index" 2842 + checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2843 + dependencies = [ 2844 + "ppv-lite86", 2845 + "rand_core 0.9.3", 2846 + ] 2847 + 2848 + [[package]] 2849 + name = "rand_core" 2850 + version = "0.5.1" 2851 + source = "registry+https://github.com/rust-lang/crates.io-index" 2852 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2853 + dependencies = [ 2854 + "getrandom 0.1.16", 2855 + ] 2856 + 2857 + [[package]] 2858 + name = "rand_core" 2859 + version = "0.6.4" 2860 + source = "registry+https://github.com/rust-lang/crates.io-index" 2861 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2862 + dependencies = [ 2863 + "getrandom 0.2.16", 2864 + ] 2865 + 2866 + [[package]] 2867 + name = "rand_core" 2868 + version = "0.9.3" 2869 + source = "registry+https://github.com/rust-lang/crates.io-index" 2870 + checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2871 + dependencies = [ 2872 + "getrandom 0.3.4", 2873 + ] 2874 + 2875 + [[package]] 2876 + name = "rand_hc" 2877 + version = "0.2.0" 2878 + source = "registry+https://github.com/rust-lang/crates.io-index" 2879 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2880 + dependencies = [ 2881 + "rand_core 0.5.1", 2882 + ] 2883 + 2884 + [[package]] 2885 + name = "rand_pcg" 2886 + version = "0.2.1" 2887 + source = "registry+https://github.com/rust-lang/crates.io-index" 2888 + checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2889 + dependencies = [ 2890 + "rand_core 0.5.1", 2891 + ] 2892 + 2893 + [[package]] 2894 + name = "raw-window-handle" 2895 + version = "0.6.2" 2896 + source = "registry+https://github.com/rust-lang/crates.io-index" 2897 + checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 2898 + 2899 + [[package]] 2900 + name = "redox_syscall" 2901 + version = "0.5.18" 2902 + source = "registry+https://github.com/rust-lang/crates.io-index" 2903 + checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2904 + dependencies = [ 2905 + "bitflags 2.10.0", 2906 + ] 2907 + 2908 + [[package]] 2909 + name = "redox_users" 2910 + version = "0.5.2" 2911 + source = "registry+https://github.com/rust-lang/crates.io-index" 2912 + checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" 2913 + dependencies = [ 2914 + "getrandom 0.2.16", 2915 + "libredox", 2916 + "thiserror 2.0.17", 2917 + ] 2918 + 2919 + [[package]] 2920 + name = "ref-cast" 2921 + version = "1.0.25" 2922 + source = "registry+https://github.com/rust-lang/crates.io-index" 2923 + checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 2924 + dependencies = [ 2925 + "ref-cast-impl", 2926 + ] 2927 + 2928 + [[package]] 2929 + name = "ref-cast-impl" 2930 + version = "1.0.25" 2931 + source = "registry+https://github.com/rust-lang/crates.io-index" 2932 + checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 2933 + dependencies = [ 2934 + "proc-macro2", 2935 + "quote", 2936 + "syn 2.0.111", 2937 + ] 2938 + 2939 + [[package]] 2940 + name = "regex" 2941 + version = "1.12.2" 2942 + source = "registry+https://github.com/rust-lang/crates.io-index" 2943 + checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 2944 + dependencies = [ 2945 + "aho-corasick", 2946 + "memchr", 2947 + "regex-automata", 2948 + "regex-syntax", 2949 + ] 2950 + 2951 + [[package]] 2952 + name = "regex-automata" 2953 + version = "0.4.13" 2954 + source = "registry+https://github.com/rust-lang/crates.io-index" 2955 + checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 2956 + dependencies = [ 2957 + "aho-corasick", 2958 + "memchr", 2959 + "regex-syntax", 2960 + ] 2961 + 2962 + [[package]] 2963 + name = "regex-syntax" 2964 + version = "0.8.8" 2965 + source = "registry+https://github.com/rust-lang/crates.io-index" 2966 + checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 2967 + 2968 + [[package]] 2969 + name = "reqwest" 2970 + version = "0.12.28" 2971 + source = "registry+https://github.com/rust-lang/crates.io-index" 2972 + checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 2973 + dependencies = [ 2974 + "base64 0.22.1", 2975 + "bytes", 2976 + "futures-core", 2977 + "futures-util", 2978 + "http", 2979 + "http-body", 2980 + "http-body-util", 2981 + "hyper", 2982 + "hyper-util", 2983 + "js-sys", 2984 + "log", 2985 + "percent-encoding", 2986 + "pin-project-lite", 2987 + "serde", 2988 + "serde_json", 2989 + "serde_urlencoded", 2990 + "sync_wrapper", 2991 + "tokio", 2992 + "tokio-util", 2993 + "tower", 2994 + "tower-http", 2995 + "tower-service", 2996 + "url", 2997 + "wasm-bindgen", 2998 + "wasm-bindgen-futures", 2999 + "wasm-streams", 3000 + "web-sys", 3001 + ] 3002 + 3003 + [[package]] 3004 + name = "rfd" 3005 + version = "0.15.4" 3006 + source = "registry+https://github.com/rust-lang/crates.io-index" 3007 + checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed" 3008 + dependencies = [ 3009 + "ashpd", 3010 + "block2", 3011 + "dispatch2", 3012 + "glib-sys", 3013 + "gobject-sys", 3014 + "gtk-sys", 3015 + "js-sys", 3016 + "log", 3017 + "objc2", 3018 + "objc2-app-kit", 3019 + "objc2-core-foundation", 3020 + "objc2-foundation", 3021 + "raw-window-handle", 3022 + "wasm-bindgen", 3023 + "wasm-bindgen-futures", 3024 + "web-sys", 3025 + "windows-sys 0.59.0", 3026 + ] 3027 + 3028 + [[package]] 3029 + name = "rustc_version" 3030 + version = "0.4.1" 3031 + source = "registry+https://github.com/rust-lang/crates.io-index" 3032 + checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 3033 + dependencies = [ 3034 + "semver", 3035 + ] 3036 + 3037 + [[package]] 3038 + name = "rustix" 3039 + version = "1.1.2" 3040 + source = "registry+https://github.com/rust-lang/crates.io-index" 3041 + checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 3042 + dependencies = [ 3043 + "bitflags 2.10.0", 3044 + "errno", 3045 + "libc", 3046 + "linux-raw-sys", 3047 + "windows-sys 0.61.2", 3048 + ] 3049 + 3050 + [[package]] 3051 + name = "rustversion" 3052 + version = "1.0.22" 3053 + source = "registry+https://github.com/rust-lang/crates.io-index" 3054 + checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 3055 + 3056 + [[package]] 3057 + name = "ryu" 3058 + version = "1.0.21" 3059 + source = "registry+https://github.com/rust-lang/crates.io-index" 3060 + checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea" 3061 + 3062 + [[package]] 3063 + name = "same-file" 3064 + version = "1.0.6" 3065 + source = "registry+https://github.com/rust-lang/crates.io-index" 3066 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3067 + dependencies = [ 3068 + "winapi-util", 3069 + ] 3070 + 3071 + [[package]] 3072 + name = "schemars" 3073 + version = "0.8.22" 3074 + source = "registry+https://github.com/rust-lang/crates.io-index" 3075 + checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" 3076 + dependencies = [ 3077 + "dyn-clone", 3078 + "indexmap 1.9.3", 3079 + "schemars_derive", 3080 + "serde", 3081 + "serde_json", 3082 + "url", 3083 + "uuid", 3084 + ] 3085 + 3086 + [[package]] 3087 + name = "schemars" 3088 + version = "0.9.0" 3089 + source = "registry+https://github.com/rust-lang/crates.io-index" 3090 + checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 3091 + dependencies = [ 3092 + "dyn-clone", 3093 + "ref-cast", 3094 + "serde", 3095 + "serde_json", 3096 + ] 3097 + 3098 + [[package]] 3099 + name = "schemars" 3100 + version = "1.1.0" 3101 + source = "registry+https://github.com/rust-lang/crates.io-index" 3102 + checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289" 3103 + dependencies = [ 3104 + "dyn-clone", 3105 + "ref-cast", 3106 + "serde", 3107 + "serde_json", 3108 + ] 3109 + 3110 + [[package]] 3111 + name = "schemars_derive" 3112 + version = "0.8.22" 3113 + source = "registry+https://github.com/rust-lang/crates.io-index" 3114 + checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" 3115 + dependencies = [ 3116 + "proc-macro2", 3117 + "quote", 3118 + "serde_derive_internals", 3119 + "syn 2.0.111", 3120 + ] 3121 + 3122 + [[package]] 3123 + name = "scoped-tls" 3124 + version = "1.0.1" 3125 + source = "registry+https://github.com/rust-lang/crates.io-index" 3126 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3127 + 3128 + [[package]] 3129 + name = "scopeguard" 3130 + version = "1.2.0" 3131 + source = "registry+https://github.com/rust-lang/crates.io-index" 3132 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3133 + 3134 + [[package]] 3135 + name = "selectors" 3136 + version = "0.24.0" 3137 + source = "registry+https://github.com/rust-lang/crates.io-index" 3138 + checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" 3139 + dependencies = [ 3140 + "bitflags 1.3.2", 3141 + "cssparser", 3142 + "derive_more", 3143 + "fxhash", 3144 + "log", 3145 + "phf 0.8.0", 3146 + "phf_codegen 0.8.0", 3147 + "precomputed-hash", 3148 + "servo_arc", 3149 + "smallvec", 3150 + ] 3151 + 3152 + [[package]] 3153 + name = "semver" 3154 + version = "1.0.27" 3155 + source = "registry+https://github.com/rust-lang/crates.io-index" 3156 + checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 3157 + dependencies = [ 3158 + "serde", 3159 + "serde_core", 3160 + ] 3161 + 3162 + [[package]] 3163 + name = "serde" 3164 + version = "1.0.228" 3165 + source = "registry+https://github.com/rust-lang/crates.io-index" 3166 + checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 3167 + dependencies = [ 3168 + "serde_core", 3169 + "serde_derive", 3170 + ] 3171 + 3172 + [[package]] 3173 + name = "serde-untagged" 3174 + version = "0.1.9" 3175 + source = "registry+https://github.com/rust-lang/crates.io-index" 3176 + checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" 3177 + dependencies = [ 3178 + "erased-serde", 3179 + "serde", 3180 + "serde_core", 3181 + "typeid", 3182 + ] 3183 + 3184 + [[package]] 3185 + name = "serde_core" 3186 + version = "1.0.228" 3187 + source = "registry+https://github.com/rust-lang/crates.io-index" 3188 + checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 3189 + dependencies = [ 3190 + "serde_derive", 3191 + ] 3192 + 3193 + [[package]] 3194 + name = "serde_derive" 3195 + version = "1.0.228" 3196 + source = "registry+https://github.com/rust-lang/crates.io-index" 3197 + checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 3198 + dependencies = [ 3199 + "proc-macro2", 3200 + "quote", 3201 + "syn 2.0.111", 3202 + ] 3203 + 3204 + [[package]] 3205 + name = "serde_derive_internals" 3206 + version = "0.29.1" 3207 + source = "registry+https://github.com/rust-lang/crates.io-index" 3208 + checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" 3209 + dependencies = [ 3210 + "proc-macro2", 3211 + "quote", 3212 + "syn 2.0.111", 3213 + ] 3214 + 3215 + [[package]] 3216 + name = "serde_json" 3217 + version = "1.0.146" 3218 + source = "registry+https://github.com/rust-lang/crates.io-index" 3219 + checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8" 3220 + dependencies = [ 3221 + "itoa", 3222 + "memchr", 3223 + "ryu", 3224 + "serde", 3225 + "serde_core", 3226 + ] 3227 + 3228 + [[package]] 3229 + name = "serde_repr" 3230 + version = "0.1.20" 3231 + source = "registry+https://github.com/rust-lang/crates.io-index" 3232 + checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 3233 + dependencies = [ 3234 + "proc-macro2", 3235 + "quote", 3236 + "syn 2.0.111", 3237 + ] 3238 + 3239 + [[package]] 3240 + name = "serde_spanned" 3241 + version = "0.6.9" 3242 + source = "registry+https://github.com/rust-lang/crates.io-index" 3243 + checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 3244 + dependencies = [ 3245 + "serde", 3246 + ] 3247 + 3248 + [[package]] 3249 + name = "serde_spanned" 3250 + version = "1.0.4" 3251 + source = "registry+https://github.com/rust-lang/crates.io-index" 3252 + checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" 3253 + dependencies = [ 3254 + "serde_core", 3255 + ] 3256 + 3257 + [[package]] 3258 + name = "serde_urlencoded" 3259 + version = "0.7.1" 3260 + source = "registry+https://github.com/rust-lang/crates.io-index" 3261 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3262 + dependencies = [ 3263 + "form_urlencoded", 3264 + "itoa", 3265 + "ryu", 3266 + "serde", 3267 + ] 3268 + 3269 + [[package]] 3270 + name = "serde_with" 3271 + version = "3.16.1" 3272 + source = "registry+https://github.com/rust-lang/crates.io-index" 3273 + checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" 3274 + dependencies = [ 3275 + "base64 0.22.1", 3276 + "chrono", 3277 + "hex", 3278 + "indexmap 1.9.3", 3279 + "indexmap 2.12.1", 3280 + "schemars 0.9.0", 3281 + "schemars 1.1.0", 3282 + "serde_core", 3283 + "serde_json", 3284 + "serde_with_macros", 3285 + "time", 3286 + ] 3287 + 3288 + [[package]] 3289 + name = "serde_with_macros" 3290 + version = "3.16.1" 3291 + source = "registry+https://github.com/rust-lang/crates.io-index" 3292 + checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" 3293 + dependencies = [ 3294 + "darling", 3295 + "proc-macro2", 3296 + "quote", 3297 + "syn 2.0.111", 3298 + ] 3299 + 3300 + [[package]] 3301 + name = "serialize-to-javascript" 3302 + version = "0.1.2" 3303 + source = "registry+https://github.com/rust-lang/crates.io-index" 3304 + checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5" 3305 + dependencies = [ 3306 + "serde", 3307 + "serde_json", 3308 + "serialize-to-javascript-impl", 3309 + ] 3310 + 3311 + [[package]] 3312 + name = "serialize-to-javascript-impl" 3313 + version = "0.1.2" 3314 + source = "registry+https://github.com/rust-lang/crates.io-index" 3315 + checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d" 3316 + dependencies = [ 3317 + "proc-macro2", 3318 + "quote", 3319 + "syn 2.0.111", 3320 + ] 3321 + 3322 + [[package]] 3323 + name = "servo_arc" 3324 + version = "0.2.0" 3325 + source = "registry+https://github.com/rust-lang/crates.io-index" 3326 + checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" 3327 + dependencies = [ 3328 + "nodrop", 3329 + "stable_deref_trait", 3330 + ] 3331 + 3332 + [[package]] 3333 + name = "sha2" 3334 + version = "0.10.9" 3335 + source = "registry+https://github.com/rust-lang/crates.io-index" 3336 + checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 3337 + dependencies = [ 3338 + "cfg-if", 3339 + "cpufeatures", 3340 + "digest", 3341 + ] 3342 + 3343 + [[package]] 3344 + name = "shlex" 3345 + version = "1.3.0" 3346 + source = "registry+https://github.com/rust-lang/crates.io-index" 3347 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3348 + 3349 + [[package]] 3350 + name = "signal-hook-registry" 3351 + version = "1.4.7" 3352 + source = "registry+https://github.com/rust-lang/crates.io-index" 3353 + checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad" 3354 + dependencies = [ 3355 + "libc", 3356 + ] 3357 + 3358 + [[package]] 3359 + name = "simd-adler32" 3360 + version = "0.3.8" 3361 + source = "registry+https://github.com/rust-lang/crates.io-index" 3362 + checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 3363 + 3364 + [[package]] 3365 + name = "siphasher" 3366 + version = "0.3.11" 3367 + source = "registry+https://github.com/rust-lang/crates.io-index" 3368 + checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 3369 + 3370 + [[package]] 3371 + name = "siphasher" 3372 + version = "1.0.1" 3373 + source = "registry+https://github.com/rust-lang/crates.io-index" 3374 + checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 3375 + 3376 + [[package]] 3377 + name = "slab" 3378 + version = "0.4.11" 3379 + source = "registry+https://github.com/rust-lang/crates.io-index" 3380 + checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 3381 + 3382 + [[package]] 3383 + name = "smallvec" 3384 + version = "1.15.1" 3385 + source = "registry+https://github.com/rust-lang/crates.io-index" 3386 + checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 3387 + 3388 + [[package]] 3389 + name = "socket2" 3390 + version = "0.6.1" 3391 + source = "registry+https://github.com/rust-lang/crates.io-index" 3392 + checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 3393 + dependencies = [ 3394 + "libc", 3395 + "windows-sys 0.60.2", 3396 + ] 3397 + 3398 + [[package]] 3399 + name = "softbuffer" 3400 + version = "0.4.8" 3401 + source = "registry+https://github.com/rust-lang/crates.io-index" 3402 + checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3" 3403 + dependencies = [ 3404 + "bytemuck", 3405 + "js-sys", 3406 + "ndk", 3407 + "objc2", 3408 + "objc2-core-foundation", 3409 + "objc2-core-graphics", 3410 + "objc2-foundation", 3411 + "objc2-quartz-core", 3412 + "raw-window-handle", 3413 + "redox_syscall", 3414 + "tracing", 3415 + "wasm-bindgen", 3416 + "web-sys", 3417 + "windows-sys 0.61.2", 3418 + ] 3419 + 3420 + [[package]] 3421 + name = "soup3" 3422 + version = "0.5.0" 3423 + source = "registry+https://github.com/rust-lang/crates.io-index" 3424 + checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" 3425 + dependencies = [ 3426 + "futures-channel", 3427 + "gio", 3428 + "glib", 3429 + "libc", 3430 + "soup3-sys", 3431 + ] 3432 + 3433 + [[package]] 3434 + name = "soup3-sys" 3435 + version = "0.5.0" 3436 + source = "registry+https://github.com/rust-lang/crates.io-index" 3437 + checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" 3438 + dependencies = [ 3439 + "gio-sys", 3440 + "glib-sys", 3441 + "gobject-sys", 3442 + "libc", 3443 + "system-deps", 3444 + ] 3445 + 3446 + [[package]] 3447 + name = "stable_deref_trait" 3448 + version = "1.2.1" 3449 + source = "registry+https://github.com/rust-lang/crates.io-index" 3450 + checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 3451 + 3452 + [[package]] 3453 + name = "static_assertions" 3454 + version = "1.1.0" 3455 + source = "registry+https://github.com/rust-lang/crates.io-index" 3456 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3457 + 3458 + [[package]] 3459 + name = "string_cache" 3460 + version = "0.8.9" 3461 + source = "registry+https://github.com/rust-lang/crates.io-index" 3462 + checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 3463 + dependencies = [ 3464 + "new_debug_unreachable", 3465 + "parking_lot", 3466 + "phf_shared 0.11.3", 3467 + "precomputed-hash", 3468 + "serde", 3469 + ] 3470 + 3471 + [[package]] 3472 + name = "string_cache_codegen" 3473 + version = "0.5.4" 3474 + source = "registry+https://github.com/rust-lang/crates.io-index" 3475 + checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 3476 + dependencies = [ 3477 + "phf_generator 0.11.3", 3478 + "phf_shared 0.11.3", 3479 + "proc-macro2", 3480 + "quote", 3481 + ] 3482 + 3483 + [[package]] 3484 + name = "strsim" 3485 + version = "0.11.1" 3486 + source = "registry+https://github.com/rust-lang/crates.io-index" 3487 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3488 + 3489 + [[package]] 3490 + name = "swift-rs" 3491 + version = "1.0.7" 3492 + source = "registry+https://github.com/rust-lang/crates.io-index" 3493 + checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" 3494 + dependencies = [ 3495 + "base64 0.21.7", 3496 + "serde", 3497 + "serde_json", 3498 + ] 3499 + 3500 + [[package]] 3501 + name = "syn" 3502 + version = "1.0.109" 3503 + source = "registry+https://github.com/rust-lang/crates.io-index" 3504 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3505 + dependencies = [ 3506 + "proc-macro2", 3507 + "quote", 3508 + "unicode-ident", 3509 + ] 3510 + 3511 + [[package]] 3512 + name = "syn" 3513 + version = "2.0.111" 3514 + source = "registry+https://github.com/rust-lang/crates.io-index" 3515 + checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 3516 + dependencies = [ 3517 + "proc-macro2", 3518 + "quote", 3519 + "unicode-ident", 3520 + ] 3521 + 3522 + [[package]] 3523 + name = "sync_wrapper" 3524 + version = "1.0.2" 3525 + source = "registry+https://github.com/rust-lang/crates.io-index" 3526 + checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3527 + dependencies = [ 3528 + "futures-core", 3529 + ] 3530 + 3531 + [[package]] 3532 + name = "synstructure" 3533 + version = "0.13.2" 3534 + source = "registry+https://github.com/rust-lang/crates.io-index" 3535 + checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 3536 + dependencies = [ 3537 + "proc-macro2", 3538 + "quote", 3539 + "syn 2.0.111", 3540 + ] 3541 + 3542 + [[package]] 3543 + name = "system-deps" 3544 + version = "6.2.2" 3545 + source = "registry+https://github.com/rust-lang/crates.io-index" 3546 + checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 3547 + dependencies = [ 3548 + "cfg-expr", 3549 + "heck 0.5.0", 3550 + "pkg-config", 3551 + "toml 0.8.2", 3552 + "version-compare", 3553 + ] 3554 + 3555 + [[package]] 3556 + name = "tao" 3557 + version = "0.34.5" 3558 + source = "registry+https://github.com/rust-lang/crates.io-index" 3559 + checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7" 3560 + dependencies = [ 3561 + "bitflags 2.10.0", 3562 + "block2", 3563 + "core-foundation", 3564 + "core-graphics", 3565 + "crossbeam-channel", 3566 + "dispatch", 3567 + "dlopen2", 3568 + "dpi", 3569 + "gdkwayland-sys", 3570 + "gdkx11-sys", 3571 + "gtk", 3572 + "jni", 3573 + "lazy_static", 3574 + "libc", 3575 + "log", 3576 + "ndk", 3577 + "ndk-context", 3578 + "ndk-sys", 3579 + "objc2", 3580 + "objc2-app-kit", 3581 + "objc2-foundation", 3582 + "once_cell", 3583 + "parking_lot", 3584 + "raw-window-handle", 3585 + "scopeguard", 3586 + "tao-macros", 3587 + "unicode-segmentation", 3588 + "url", 3589 + "windows", 3590 + "windows-core 0.61.2", 3591 + "windows-version", 3592 + "x11-dl", 3593 + ] 3594 + 3595 + [[package]] 3596 + name = "tao-macros" 3597 + version = "0.1.3" 3598 + source = "registry+https://github.com/rust-lang/crates.io-index" 3599 + checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" 3600 + dependencies = [ 3601 + "proc-macro2", 3602 + "quote", 3603 + "syn 2.0.111", 3604 + ] 3605 + 3606 + [[package]] 3607 + name = "target-lexicon" 3608 + version = "0.12.16" 3609 + source = "registry+https://github.com/rust-lang/crates.io-index" 3610 + checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 3611 + 3612 + [[package]] 3613 + name = "tauri" 3614 + version = "2.9.5" 3615 + source = "registry+https://github.com/rust-lang/crates.io-index" 3616 + checksum = "8a3868da5508446a7cd08956d523ac3edf0a8bc20bf7e4038f9a95c2800d2033" 3617 + dependencies = [ 3618 + "anyhow", 3619 + "bytes", 3620 + "cookie", 3621 + "dirs", 3622 + "dunce", 3623 + "embed_plist", 3624 + "getrandom 0.3.4", 3625 + "glob", 3626 + "gtk", 3627 + "heck 0.5.0", 3628 + "http", 3629 + "jni", 3630 + "libc", 3631 + "log", 3632 + "mime", 3633 + "muda", 3634 + "objc2", 3635 + "objc2-app-kit", 3636 + "objc2-foundation", 3637 + "objc2-ui-kit", 3638 + "objc2-web-kit", 3639 + "percent-encoding", 3640 + "plist", 3641 + "raw-window-handle", 3642 + "reqwest", 3643 + "serde", 3644 + "serde_json", 3645 + "serde_repr", 3646 + "serialize-to-javascript", 3647 + "swift-rs", 3648 + "tauri-build", 3649 + "tauri-macros", 3650 + "tauri-runtime", 3651 + "tauri-runtime-wry", 3652 + "tauri-utils", 3653 + "thiserror 2.0.17", 3654 + "tokio", 3655 + "tray-icon", 3656 + "url", 3657 + "webkit2gtk", 3658 + "webview2-com", 3659 + "window-vibrancy", 3660 + "windows", 3661 + ] 3662 + 3663 + [[package]] 3664 + name = "tauri-build" 3665 + version = "2.5.3" 3666 + source = "registry+https://github.com/rust-lang/crates.io-index" 3667 + checksum = "17fcb8819fd16463512a12f531d44826ce566f486d7ccd211c9c8cebdaec4e08" 3668 + dependencies = [ 3669 + "anyhow", 3670 + "cargo_toml", 3671 + "dirs", 3672 + "glob", 3673 + "heck 0.5.0", 3674 + "json-patch", 3675 + "schemars 0.8.22", 3676 + "semver", 3677 + "serde", 3678 + "serde_json", 3679 + "tauri-utils", 3680 + "tauri-winres", 3681 + "toml 0.9.10+spec-1.1.0", 3682 + "walkdir", 3683 + ] 3684 + 3685 + [[package]] 3686 + name = "tauri-codegen" 3687 + version = "2.5.2" 3688 + source = "registry+https://github.com/rust-lang/crates.io-index" 3689 + checksum = "9fa9844cefcf99554a16e0a278156ae73b0d8680bbc0e2ad1e4287aadd8489cf" 3690 + dependencies = [ 3691 + "base64 0.22.1", 3692 + "brotli", 3693 + "ico", 3694 + "json-patch", 3695 + "plist", 3696 + "png", 3697 + "proc-macro2", 3698 + "quote", 3699 + "semver", 3700 + "serde", 3701 + "serde_json", 3702 + "sha2", 3703 + "syn 2.0.111", 3704 + "tauri-utils", 3705 + "thiserror 2.0.17", 3706 + "time", 3707 + "url", 3708 + "uuid", 3709 + "walkdir", 3710 + ] 3711 + 3712 + [[package]] 3713 + name = "tauri-macros" 3714 + version = "2.5.2" 3715 + source = "registry+https://github.com/rust-lang/crates.io-index" 3716 + checksum = "3764a12f886d8245e66b7ee9b43ccc47883399be2019a61d80cf0f4117446fde" 3717 + dependencies = [ 3718 + "heck 0.5.0", 3719 + "proc-macro2", 3720 + "quote", 3721 + "syn 2.0.111", 3722 + "tauri-codegen", 3723 + "tauri-utils", 3724 + ] 3725 + 3726 + [[package]] 3727 + name = "tauri-plugin" 3728 + version = "2.5.2" 3729 + source = "registry+https://github.com/rust-lang/crates.io-index" 3730 + checksum = "0e1d0a4860b7ff570c891e1d2a586bf1ede205ff858fbc305e0b5ae5d14c1377" 3731 + dependencies = [ 3732 + "anyhow", 3733 + "glob", 3734 + "plist", 3735 + "schemars 0.8.22", 3736 + "serde", 3737 + "serde_json", 3738 + "tauri-utils", 3739 + "toml 0.9.10+spec-1.1.0", 3740 + "walkdir", 3741 + ] 3742 + 3743 + [[package]] 3744 + name = "tauri-plugin-dialog" 3745 + version = "2.4.2" 3746 + source = "registry+https://github.com/rust-lang/crates.io-index" 3747 + checksum = "313f8138692ddc4a2127c4c9607d616a46f5c042e77b3722450866da0aad2f19" 3748 + dependencies = [ 3749 + "log", 3750 + "raw-window-handle", 3751 + "rfd", 3752 + "serde", 3753 + "serde_json", 3754 + "tauri", 3755 + "tauri-plugin", 3756 + "tauri-plugin-fs", 3757 + "thiserror 2.0.17", 3758 + "url", 3759 + ] 3760 + 3761 + [[package]] 3762 + name = "tauri-plugin-fs" 3763 + version = "2.4.4" 3764 + source = "registry+https://github.com/rust-lang/crates.io-index" 3765 + checksum = "47df422695255ecbe7bac7012440eddaeefd026656171eac9559f5243d3230d9" 3766 + dependencies = [ 3767 + "anyhow", 3768 + "dunce", 3769 + "glob", 3770 + "percent-encoding", 3771 + "schemars 0.8.22", 3772 + "serde", 3773 + "serde_json", 3774 + "serde_repr", 3775 + "tauri", 3776 + "tauri-plugin", 3777 + "tauri-utils", 3778 + "thiserror 2.0.17", 3779 + "toml 0.9.10+spec-1.1.0", 3780 + "url", 3781 + ] 3782 + 3783 + [[package]] 3784 + name = "tauri-plugin-opener" 3785 + version = "2.5.2" 3786 + source = "registry+https://github.com/rust-lang/crates.io-index" 3787 + checksum = "c26b72571d25dee25667940027114e60f569fc3974f8cefbe50c2cbc5fd65e3b" 3788 + dependencies = [ 3789 + "dunce", 3790 + "glob", 3791 + "objc2-app-kit", 3792 + "objc2-foundation", 3793 + "open", 3794 + "schemars 0.8.22", 3795 + "serde", 3796 + "serde_json", 3797 + "tauri", 3798 + "tauri-plugin", 3799 + "thiserror 2.0.17", 3800 + "url", 3801 + "windows", 3802 + "zbus", 3803 + ] 3804 + 3805 + [[package]] 3806 + name = "tauri-plugin-store" 3807 + version = "2.4.1" 3808 + source = "registry+https://github.com/rust-lang/crates.io-index" 3809 + checksum = "59a77036340a97eb5bbe1b3209c31e5f27f75e6f92a52fd9dd4b211ef08bf310" 3810 + dependencies = [ 3811 + "dunce", 3812 + "serde", 3813 + "serde_json", 3814 + "tauri", 3815 + "tauri-plugin", 3816 + "thiserror 2.0.17", 3817 + "tokio", 3818 + "tracing", 3819 + ] 3820 + 3821 + [[package]] 3822 + name = "tauri-runtime" 3823 + version = "2.9.2" 3824 + source = "registry+https://github.com/rust-lang/crates.io-index" 3825 + checksum = "87f766fe9f3d1efc4b59b17e7a891ad5ed195fa8d23582abb02e6c9a01137892" 3826 + dependencies = [ 3827 + "cookie", 3828 + "dpi", 3829 + "gtk", 3830 + "http", 3831 + "jni", 3832 + "objc2", 3833 + "objc2-ui-kit", 3834 + "objc2-web-kit", 3835 + "raw-window-handle", 3836 + "serde", 3837 + "serde_json", 3838 + "tauri-utils", 3839 + "thiserror 2.0.17", 3840 + "url", 3841 + "webkit2gtk", 3842 + "webview2-com", 3843 + "windows", 3844 + ] 3845 + 3846 + [[package]] 3847 + name = "tauri-runtime-wry" 3848 + version = "2.9.3" 3849 + source = "registry+https://github.com/rust-lang/crates.io-index" 3850 + checksum = "187a3f26f681bdf028f796ccf57cf478c1ee422c50128e5a0a6ebeb3f5910065" 3851 + dependencies = [ 3852 + "gtk", 3853 + "http", 3854 + "jni", 3855 + "log", 3856 + "objc2", 3857 + "objc2-app-kit", 3858 + "objc2-foundation", 3859 + "once_cell", 3860 + "percent-encoding", 3861 + "raw-window-handle", 3862 + "softbuffer", 3863 + "tao", 3864 + "tauri-runtime", 3865 + "tauri-utils", 3866 + "url", 3867 + "webkit2gtk", 3868 + "webview2-com", 3869 + "windows", 3870 + "wry", 3871 + ] 3872 + 3873 + [[package]] 3874 + name = "tauri-utils" 3875 + version = "2.8.1" 3876 + source = "registry+https://github.com/rust-lang/crates.io-index" 3877 + checksum = "76a423c51176eb3616ee9b516a9fa67fed5f0e78baaba680e44eb5dd2cc37490" 3878 + dependencies = [ 3879 + "anyhow", 3880 + "brotli", 3881 + "cargo_metadata", 3882 + "ctor", 3883 + "dunce", 3884 + "glob", 3885 + "html5ever", 3886 + "http", 3887 + "infer", 3888 + "json-patch", 3889 + "kuchikiki", 3890 + "log", 3891 + "memchr", 3892 + "phf 0.11.3", 3893 + "proc-macro2", 3894 + "quote", 3895 + "regex", 3896 + "schemars 0.8.22", 3897 + "semver", 3898 + "serde", 3899 + "serde-untagged", 3900 + "serde_json", 3901 + "serde_with", 3902 + "swift-rs", 3903 + "thiserror 2.0.17", 3904 + "toml 0.9.10+spec-1.1.0", 3905 + "url", 3906 + "urlpattern", 3907 + "uuid", 3908 + "walkdir", 3909 + ] 3910 + 3911 + [[package]] 3912 + name = "tauri-winres" 3913 + version = "0.3.5" 3914 + source = "registry+https://github.com/rust-lang/crates.io-index" 3915 + checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" 3916 + dependencies = [ 3917 + "dunce", 3918 + "embed-resource", 3919 + "toml 0.9.10+spec-1.1.0", 3920 + ] 3921 + 3922 + [[package]] 3923 + name = "tempfile" 3924 + version = "3.23.0" 3925 + source = "registry+https://github.com/rust-lang/crates.io-index" 3926 + checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 3927 + dependencies = [ 3928 + "fastrand", 3929 + "getrandom 0.3.4", 3930 + "once_cell", 3931 + "rustix", 3932 + "windows-sys 0.61.2", 3933 + ] 3934 + 3935 + [[package]] 3936 + name = "tendril" 3937 + version = "0.4.3" 3938 + source = "registry+https://github.com/rust-lang/crates.io-index" 3939 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 3940 + dependencies = [ 3941 + "futf", 3942 + "mac", 3943 + "utf-8", 3944 + ] 3945 + 3946 + [[package]] 3947 + name = "thiserror" 3948 + version = "1.0.69" 3949 + source = "registry+https://github.com/rust-lang/crates.io-index" 3950 + checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3951 + dependencies = [ 3952 + "thiserror-impl 1.0.69", 3953 + ] 3954 + 3955 + [[package]] 3956 + name = "thiserror" 3957 + version = "2.0.17" 3958 + source = "registry+https://github.com/rust-lang/crates.io-index" 3959 + checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 3960 + dependencies = [ 3961 + "thiserror-impl 2.0.17", 3962 + ] 3963 + 3964 + [[package]] 3965 + name = "thiserror-impl" 3966 + version = "1.0.69" 3967 + source = "registry+https://github.com/rust-lang/crates.io-index" 3968 + checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3969 + dependencies = [ 3970 + "proc-macro2", 3971 + "quote", 3972 + "syn 2.0.111", 3973 + ] 3974 + 3975 + [[package]] 3976 + name = "thiserror-impl" 3977 + version = "2.0.17" 3978 + source = "registry+https://github.com/rust-lang/crates.io-index" 3979 + checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 3980 + dependencies = [ 3981 + "proc-macro2", 3982 + "quote", 3983 + "syn 2.0.111", 3984 + ] 3985 + 3986 + [[package]] 3987 + name = "time" 3988 + version = "0.3.44" 3989 + source = "registry+https://github.com/rust-lang/crates.io-index" 3990 + checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 3991 + dependencies = [ 3992 + "deranged", 3993 + "itoa", 3994 + "num-conv", 3995 + "powerfmt", 3996 + "serde", 3997 + "time-core", 3998 + "time-macros", 3999 + ] 4000 + 4001 + [[package]] 4002 + name = "time-core" 4003 + version = "0.1.6" 4004 + source = "registry+https://github.com/rust-lang/crates.io-index" 4005 + checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 4006 + 4007 + [[package]] 4008 + name = "time-macros" 4009 + version = "0.2.24" 4010 + source = "registry+https://github.com/rust-lang/crates.io-index" 4011 + checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 4012 + dependencies = [ 4013 + "num-conv", 4014 + "time-core", 4015 + ] 4016 + 4017 + [[package]] 4018 + name = "tinystr" 4019 + version = "0.8.2" 4020 + source = "registry+https://github.com/rust-lang/crates.io-index" 4021 + checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 4022 + dependencies = [ 4023 + "displaydoc", 4024 + "zerovec", 4025 + ] 4026 + 4027 + [[package]] 4028 + name = "tokio" 4029 + version = "1.48.0" 4030 + source = "registry+https://github.com/rust-lang/crates.io-index" 4031 + checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 4032 + dependencies = [ 4033 + "bytes", 4034 + "libc", 4035 + "mio", 4036 + "pin-project-lite", 4037 + "signal-hook-registry", 4038 + "socket2", 4039 + "tokio-macros", 4040 + "tracing", 4041 + "windows-sys 0.61.2", 4042 + ] 4043 + 4044 + [[package]] 4045 + name = "tokio-macros" 4046 + version = "2.6.0" 4047 + source = "registry+https://github.com/rust-lang/crates.io-index" 4048 + checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 4049 + dependencies = [ 4050 + "proc-macro2", 4051 + "quote", 4052 + "syn 2.0.111", 4053 + ] 4054 + 4055 + [[package]] 4056 + name = "tokio-util" 4057 + version = "0.7.17" 4058 + source = "registry+https://github.com/rust-lang/crates.io-index" 4059 + checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 4060 + dependencies = [ 4061 + "bytes", 4062 + "futures-core", 4063 + "futures-sink", 4064 + "pin-project-lite", 4065 + "tokio", 4066 + ] 4067 + 4068 + [[package]] 4069 + name = "toml" 4070 + version = "0.8.2" 4071 + source = "registry+https://github.com/rust-lang/crates.io-index" 4072 + checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 4073 + dependencies = [ 4074 + "serde", 4075 + "serde_spanned 0.6.9", 4076 + "toml_datetime 0.6.3", 4077 + "toml_edit 0.20.2", 4078 + ] 4079 + 4080 + [[package]] 4081 + name = "toml" 4082 + version = "0.9.10+spec-1.1.0" 4083 + source = "registry+https://github.com/rust-lang/crates.io-index" 4084 + checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48" 4085 + dependencies = [ 4086 + "indexmap 2.12.1", 4087 + "serde_core", 4088 + "serde_spanned 1.0.4", 4089 + "toml_datetime 0.7.5+spec-1.1.0", 4090 + "toml_parser", 4091 + "toml_writer", 4092 + "winnow 0.7.14", 4093 + ] 4094 + 4095 + [[package]] 4096 + name = "toml_datetime" 4097 + version = "0.6.3" 4098 + source = "registry+https://github.com/rust-lang/crates.io-index" 4099 + checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 4100 + dependencies = [ 4101 + "serde", 4102 + ] 4103 + 4104 + [[package]] 4105 + name = "toml_datetime" 4106 + version = "0.7.5+spec-1.1.0" 4107 + source = "registry+https://github.com/rust-lang/crates.io-index" 4108 + checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" 4109 + dependencies = [ 4110 + "serde_core", 4111 + ] 4112 + 4113 + [[package]] 4114 + name = "toml_edit" 4115 + version = "0.19.15" 4116 + source = "registry+https://github.com/rust-lang/crates.io-index" 4117 + checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 4118 + dependencies = [ 4119 + "indexmap 2.12.1", 4120 + "toml_datetime 0.6.3", 4121 + "winnow 0.5.40", 4122 + ] 4123 + 4124 + [[package]] 4125 + name = "toml_edit" 4126 + version = "0.20.2" 4127 + source = "registry+https://github.com/rust-lang/crates.io-index" 4128 + checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 4129 + dependencies = [ 4130 + "indexmap 2.12.1", 4131 + "serde", 4132 + "serde_spanned 0.6.9", 4133 + "toml_datetime 0.6.3", 4134 + "winnow 0.5.40", 4135 + ] 4136 + 4137 + [[package]] 4138 + name = "toml_edit" 4139 + version = "0.23.10+spec-1.0.0" 4140 + source = "registry+https://github.com/rust-lang/crates.io-index" 4141 + checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" 4142 + dependencies = [ 4143 + "indexmap 2.12.1", 4144 + "toml_datetime 0.7.5+spec-1.1.0", 4145 + "toml_parser", 4146 + "winnow 0.7.14", 4147 + ] 4148 + 4149 + [[package]] 4150 + name = "toml_parser" 4151 + version = "1.0.6+spec-1.1.0" 4152 + source = "registry+https://github.com/rust-lang/crates.io-index" 4153 + checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" 4154 + dependencies = [ 4155 + "winnow 0.7.14", 4156 + ] 4157 + 4158 + [[package]] 4159 + name = "toml_writer" 4160 + version = "1.0.6+spec-1.1.0" 4161 + source = "registry+https://github.com/rust-lang/crates.io-index" 4162 + checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" 4163 + 4164 + [[package]] 4165 + name = "tower" 4166 + version = "0.5.2" 4167 + source = "registry+https://github.com/rust-lang/crates.io-index" 4168 + checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 4169 + dependencies = [ 4170 + "futures-core", 4171 + "futures-util", 4172 + "pin-project-lite", 4173 + "sync_wrapper", 4174 + "tokio", 4175 + "tower-layer", 4176 + "tower-service", 4177 + ] 4178 + 4179 + [[package]] 4180 + name = "tower-http" 4181 + version = "0.6.8" 4182 + source = "registry+https://github.com/rust-lang/crates.io-index" 4183 + checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 4184 + dependencies = [ 4185 + "bitflags 2.10.0", 4186 + "bytes", 4187 + "futures-util", 4188 + "http", 4189 + "http-body", 4190 + "iri-string", 4191 + "pin-project-lite", 4192 + "tower", 4193 + "tower-layer", 4194 + "tower-service", 4195 + ] 4196 + 4197 + [[package]] 4198 + name = "tower-layer" 4199 + version = "0.3.3" 4200 + source = "registry+https://github.com/rust-lang/crates.io-index" 4201 + checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 4202 + 4203 + [[package]] 4204 + name = "tower-service" 4205 + version = "0.3.3" 4206 + source = "registry+https://github.com/rust-lang/crates.io-index" 4207 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 4208 + 4209 + [[package]] 4210 + name = "tracing" 4211 + version = "0.1.44" 4212 + source = "registry+https://github.com/rust-lang/crates.io-index" 4213 + checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 4214 + dependencies = [ 4215 + "pin-project-lite", 4216 + "tracing-attributes", 4217 + "tracing-core", 4218 + ] 4219 + 4220 + [[package]] 4221 + name = "tracing-attributes" 4222 + version = "0.1.31" 4223 + source = "registry+https://github.com/rust-lang/crates.io-index" 4224 + checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 4225 + dependencies = [ 4226 + "proc-macro2", 4227 + "quote", 4228 + "syn 2.0.111", 4229 + ] 4230 + 4231 + [[package]] 4232 + name = "tracing-core" 4233 + version = "0.1.36" 4234 + source = "registry+https://github.com/rust-lang/crates.io-index" 4235 + checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 4236 + dependencies = [ 4237 + "once_cell", 4238 + ] 4239 + 4240 + [[package]] 4241 + name = "tray-icon" 4242 + version = "0.21.2" 4243 + source = "registry+https://github.com/rust-lang/crates.io-index" 4244 + checksum = "e3d5572781bee8e3f994d7467084e1b1fd7a93ce66bd480f8156ba89dee55a2b" 4245 + dependencies = [ 4246 + "crossbeam-channel", 4247 + "dirs", 4248 + "libappindicator", 4249 + "muda", 4250 + "objc2", 4251 + "objc2-app-kit", 4252 + "objc2-core-foundation", 4253 + "objc2-core-graphics", 4254 + "objc2-foundation", 4255 + "once_cell", 4256 + "png", 4257 + "serde", 4258 + "thiserror 2.0.17", 4259 + "windows-sys 0.60.2", 4260 + ] 4261 + 4262 + [[package]] 4263 + name = "try-lock" 4264 + version = "0.2.5" 4265 + source = "registry+https://github.com/rust-lang/crates.io-index" 4266 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4267 + 4268 + [[package]] 4269 + name = "typeid" 4270 + version = "1.0.3" 4271 + source = "registry+https://github.com/rust-lang/crates.io-index" 4272 + checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 4273 + 4274 + [[package]] 4275 + name = "typenum" 4276 + version = "1.19.0" 4277 + source = "registry+https://github.com/rust-lang/crates.io-index" 4278 + checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 4279 + 4280 + [[package]] 4281 + name = "uds_windows" 4282 + version = "1.1.0" 4283 + source = "registry+https://github.com/rust-lang/crates.io-index" 4284 + checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 4285 + dependencies = [ 4286 + "memoffset", 4287 + "tempfile", 4288 + "winapi", 4289 + ] 4290 + 4291 + [[package]] 4292 + name = "unic-char-property" 4293 + version = "0.9.0" 4294 + source = "registry+https://github.com/rust-lang/crates.io-index" 4295 + checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 4296 + dependencies = [ 4297 + "unic-char-range", 4298 + ] 4299 + 4300 + [[package]] 4301 + name = "unic-char-range" 4302 + version = "0.9.0" 4303 + source = "registry+https://github.com/rust-lang/crates.io-index" 4304 + checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 4305 + 4306 + [[package]] 4307 + name = "unic-common" 4308 + version = "0.9.0" 4309 + source = "registry+https://github.com/rust-lang/crates.io-index" 4310 + checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 4311 + 4312 + [[package]] 4313 + name = "unic-ucd-ident" 4314 + version = "0.9.0" 4315 + source = "registry+https://github.com/rust-lang/crates.io-index" 4316 + checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" 4317 + dependencies = [ 4318 + "unic-char-property", 4319 + "unic-char-range", 4320 + "unic-ucd-version", 4321 + ] 4322 + 4323 + [[package]] 4324 + name = "unic-ucd-version" 4325 + version = "0.9.0" 4326 + source = "registry+https://github.com/rust-lang/crates.io-index" 4327 + checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 4328 + dependencies = [ 4329 + "unic-common", 4330 + ] 4331 + 4332 + [[package]] 4333 + name = "unicode-ident" 4334 + version = "1.0.22" 4335 + source = "registry+https://github.com/rust-lang/crates.io-index" 4336 + checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 4337 + 4338 + [[package]] 4339 + name = "unicode-segmentation" 4340 + version = "1.12.0" 4341 + source = "registry+https://github.com/rust-lang/crates.io-index" 4342 + checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 4343 + 4344 + [[package]] 4345 + name = "url" 4346 + version = "2.5.7" 4347 + source = "registry+https://github.com/rust-lang/crates.io-index" 4348 + checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 4349 + dependencies = [ 4350 + "form_urlencoded", 4351 + "idna", 4352 + "percent-encoding", 4353 + "serde", 4354 + ] 4355 + 4356 + [[package]] 4357 + name = "urlpattern" 4358 + version = "0.3.0" 4359 + source = "registry+https://github.com/rust-lang/crates.io-index" 4360 + checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" 4361 + dependencies = [ 4362 + "regex", 4363 + "serde", 4364 + "unic-ucd-ident", 4365 + "url", 4366 + ] 4367 + 4368 + [[package]] 4369 + name = "utf-8" 4370 + version = "0.7.6" 4371 + source = "registry+https://github.com/rust-lang/crates.io-index" 4372 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4373 + 4374 + [[package]] 4375 + name = "utf8_iter" 4376 + version = "1.0.4" 4377 + source = "registry+https://github.com/rust-lang/crates.io-index" 4378 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 4379 + 4380 + [[package]] 4381 + name = "uuid" 4382 + version = "1.19.0" 4383 + source = "registry+https://github.com/rust-lang/crates.io-index" 4384 + checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" 4385 + dependencies = [ 4386 + "getrandom 0.3.4", 4387 + "js-sys", 4388 + "serde_core", 4389 + "wasm-bindgen", 4390 + ] 4391 + 4392 + [[package]] 4393 + name = "version-compare" 4394 + version = "0.2.1" 4395 + source = "registry+https://github.com/rust-lang/crates.io-index" 4396 + checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" 4397 + 4398 + [[package]] 4399 + name = "version_check" 4400 + version = "0.9.5" 4401 + source = "registry+https://github.com/rust-lang/crates.io-index" 4402 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 4403 + 4404 + [[package]] 4405 + name = "vswhom" 4406 + version = "0.1.0" 4407 + source = "registry+https://github.com/rust-lang/crates.io-index" 4408 + checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 4409 + dependencies = [ 4410 + "libc", 4411 + "vswhom-sys", 4412 + ] 4413 + 4414 + [[package]] 4415 + name = "vswhom-sys" 4416 + version = "0.1.3" 4417 + source = "registry+https://github.com/rust-lang/crates.io-index" 4418 + checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" 4419 + dependencies = [ 4420 + "cc", 4421 + "libc", 4422 + ] 4423 + 4424 + [[package]] 4425 + name = "walkdir" 4426 + version = "2.5.0" 4427 + source = "registry+https://github.com/rust-lang/crates.io-index" 4428 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 4429 + dependencies = [ 4430 + "same-file", 4431 + "winapi-util", 4432 + ] 4433 + 4434 + [[package]] 4435 + name = "want" 4436 + version = "0.3.1" 4437 + source = "registry+https://github.com/rust-lang/crates.io-index" 4438 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 4439 + dependencies = [ 4440 + "try-lock", 4441 + ] 4442 + 4443 + [[package]] 4444 + name = "wasi" 4445 + version = "0.9.0+wasi-snapshot-preview1" 4446 + source = "registry+https://github.com/rust-lang/crates.io-index" 4447 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4448 + 4449 + [[package]] 4450 + name = "wasi" 4451 + version = "0.11.1+wasi-snapshot-preview1" 4452 + source = "registry+https://github.com/rust-lang/crates.io-index" 4453 + checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 4454 + 4455 + [[package]] 4456 + name = "wasip2" 4457 + version = "1.0.1+wasi-0.2.4" 4458 + source = "registry+https://github.com/rust-lang/crates.io-index" 4459 + checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 4460 + dependencies = [ 4461 + "wit-bindgen", 4462 + ] 4463 + 4464 + [[package]] 4465 + name = "wasm-bindgen" 4466 + version = "0.2.106" 4467 + source = "registry+https://github.com/rust-lang/crates.io-index" 4468 + checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 4469 + dependencies = [ 4470 + "cfg-if", 4471 + "once_cell", 4472 + "rustversion", 4473 + "wasm-bindgen-macro", 4474 + "wasm-bindgen-shared", 4475 + ] 4476 + 4477 + [[package]] 4478 + name = "wasm-bindgen-futures" 4479 + version = "0.4.56" 4480 + source = "registry+https://github.com/rust-lang/crates.io-index" 4481 + checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" 4482 + dependencies = [ 4483 + "cfg-if", 4484 + "js-sys", 4485 + "once_cell", 4486 + "wasm-bindgen", 4487 + "web-sys", 4488 + ] 4489 + 4490 + [[package]] 4491 + name = "wasm-bindgen-macro" 4492 + version = "0.2.106" 4493 + source = "registry+https://github.com/rust-lang/crates.io-index" 4494 + checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 4495 + dependencies = [ 4496 + "quote", 4497 + "wasm-bindgen-macro-support", 4498 + ] 4499 + 4500 + [[package]] 4501 + name = "wasm-bindgen-macro-support" 4502 + version = "0.2.106" 4503 + source = "registry+https://github.com/rust-lang/crates.io-index" 4504 + checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 4505 + dependencies = [ 4506 + "bumpalo", 4507 + "proc-macro2", 4508 + "quote", 4509 + "syn 2.0.111", 4510 + "wasm-bindgen-shared", 4511 + ] 4512 + 4513 + [[package]] 4514 + name = "wasm-bindgen-shared" 4515 + version = "0.2.106" 4516 + source = "registry+https://github.com/rust-lang/crates.io-index" 4517 + checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 4518 + dependencies = [ 4519 + "unicode-ident", 4520 + ] 4521 + 4522 + [[package]] 4523 + name = "wasm-streams" 4524 + version = "0.4.2" 4525 + source = "registry+https://github.com/rust-lang/crates.io-index" 4526 + checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 4527 + dependencies = [ 4528 + "futures-util", 4529 + "js-sys", 4530 + "wasm-bindgen", 4531 + "wasm-bindgen-futures", 4532 + "web-sys", 4533 + ] 4534 + 4535 + [[package]] 4536 + name = "wayland-backend" 4537 + version = "0.3.11" 4538 + source = "registry+https://github.com/rust-lang/crates.io-index" 4539 + checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35" 4540 + dependencies = [ 4541 + "cc", 4542 + "downcast-rs", 4543 + "rustix", 4544 + "scoped-tls", 4545 + "smallvec", 4546 + "wayland-sys", 4547 + ] 4548 + 4549 + [[package]] 4550 + name = "wayland-client" 4551 + version = "0.31.11" 4552 + source = "registry+https://github.com/rust-lang/crates.io-index" 4553 + checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d" 4554 + dependencies = [ 4555 + "bitflags 2.10.0", 4556 + "rustix", 4557 + "wayland-backend", 4558 + "wayland-scanner", 4559 + ] 4560 + 4561 + [[package]] 4562 + name = "wayland-protocols" 4563 + version = "0.32.9" 4564 + source = "registry+https://github.com/rust-lang/crates.io-index" 4565 + checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901" 4566 + dependencies = [ 4567 + "bitflags 2.10.0", 4568 + "wayland-backend", 4569 + "wayland-client", 4570 + "wayland-scanner", 4571 + ] 4572 + 4573 + [[package]] 4574 + name = "wayland-scanner" 4575 + version = "0.31.7" 4576 + source = "registry+https://github.com/rust-lang/crates.io-index" 4577 + checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3" 4578 + dependencies = [ 4579 + "proc-macro2", 4580 + "quick-xml 0.37.5", 4581 + "quote", 4582 + ] 4583 + 4584 + [[package]] 4585 + name = "wayland-sys" 4586 + version = "0.31.7" 4587 + source = "registry+https://github.com/rust-lang/crates.io-index" 4588 + checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142" 4589 + dependencies = [ 4590 + "dlib", 4591 + "log", 4592 + "pkg-config", 4593 + ] 4594 + 4595 + [[package]] 4596 + name = "web-sys" 4597 + version = "0.3.83" 4598 + source = "registry+https://github.com/rust-lang/crates.io-index" 4599 + checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" 4600 + dependencies = [ 4601 + "js-sys", 4602 + "wasm-bindgen", 4603 + ] 4604 + 4605 + [[package]] 4606 + name = "webkit2gtk" 4607 + version = "2.0.1" 4608 + source = "registry+https://github.com/rust-lang/crates.io-index" 4609 + checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" 4610 + dependencies = [ 4611 + "bitflags 1.3.2", 4612 + "cairo-rs", 4613 + "gdk", 4614 + "gdk-sys", 4615 + "gio", 4616 + "gio-sys", 4617 + "glib", 4618 + "glib-sys", 4619 + "gobject-sys", 4620 + "gtk", 4621 + "gtk-sys", 4622 + "javascriptcore-rs", 4623 + "libc", 4624 + "once_cell", 4625 + "soup3", 4626 + "webkit2gtk-sys", 4627 + ] 4628 + 4629 + [[package]] 4630 + name = "webkit2gtk-sys" 4631 + version = "2.0.1" 4632 + source = "registry+https://github.com/rust-lang/crates.io-index" 4633 + checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" 4634 + dependencies = [ 4635 + "bitflags 1.3.2", 4636 + "cairo-sys-rs", 4637 + "gdk-sys", 4638 + "gio-sys", 4639 + "glib-sys", 4640 + "gobject-sys", 4641 + "gtk-sys", 4642 + "javascriptcore-rs-sys", 4643 + "libc", 4644 + "pkg-config", 4645 + "soup3-sys", 4646 + "system-deps", 4647 + ] 4648 + 4649 + [[package]] 4650 + name = "webview2-com" 4651 + version = "0.38.0" 4652 + source = "registry+https://github.com/rust-lang/crates.io-index" 4653 + checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4" 4654 + dependencies = [ 4655 + "webview2-com-macros", 4656 + "webview2-com-sys", 4657 + "windows", 4658 + "windows-core 0.61.2", 4659 + "windows-implement", 4660 + "windows-interface", 4661 + ] 4662 + 4663 + [[package]] 4664 + name = "webview2-com-macros" 4665 + version = "0.8.0" 4666 + source = "registry+https://github.com/rust-lang/crates.io-index" 4667 + checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" 4668 + dependencies = [ 4669 + "proc-macro2", 4670 + "quote", 4671 + "syn 2.0.111", 4672 + ] 4673 + 4674 + [[package]] 4675 + name = "webview2-com-sys" 4676 + version = "0.38.0" 4677 + source = "registry+https://github.com/rust-lang/crates.io-index" 4678 + checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c" 4679 + dependencies = [ 4680 + "thiserror 2.0.17", 4681 + "windows", 4682 + "windows-core 0.61.2", 4683 + ] 4684 + 4685 + [[package]] 4686 + name = "winapi" 4687 + version = "0.3.9" 4688 + source = "registry+https://github.com/rust-lang/crates.io-index" 4689 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4690 + dependencies = [ 4691 + "winapi-i686-pc-windows-gnu", 4692 + "winapi-x86_64-pc-windows-gnu", 4693 + ] 4694 + 4695 + [[package]] 4696 + name = "winapi-i686-pc-windows-gnu" 4697 + version = "0.4.0" 4698 + source = "registry+https://github.com/rust-lang/crates.io-index" 4699 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4700 + 4701 + [[package]] 4702 + name = "winapi-util" 4703 + version = "0.1.11" 4704 + source = "registry+https://github.com/rust-lang/crates.io-index" 4705 + checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 4706 + dependencies = [ 4707 + "windows-sys 0.61.2", 4708 + ] 4709 + 4710 + [[package]] 4711 + name = "winapi-x86_64-pc-windows-gnu" 4712 + version = "0.4.0" 4713 + source = "registry+https://github.com/rust-lang/crates.io-index" 4714 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4715 + 4716 + [[package]] 4717 + name = "window-vibrancy" 4718 + version = "0.6.0" 4719 + source = "registry+https://github.com/rust-lang/crates.io-index" 4720 + checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" 4721 + dependencies = [ 4722 + "objc2", 4723 + "objc2-app-kit", 4724 + "objc2-core-foundation", 4725 + "objc2-foundation", 4726 + "raw-window-handle", 4727 + "windows-sys 0.59.0", 4728 + "windows-version", 4729 + ] 4730 + 4731 + [[package]] 4732 + name = "windows" 4733 + version = "0.61.3" 4734 + source = "registry+https://github.com/rust-lang/crates.io-index" 4735 + checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 4736 + dependencies = [ 4737 + "windows-collections", 4738 + "windows-core 0.61.2", 4739 + "windows-future", 4740 + "windows-link 0.1.3", 4741 + "windows-numerics", 4742 + ] 4743 + 4744 + [[package]] 4745 + name = "windows-collections" 4746 + version = "0.2.0" 4747 + source = "registry+https://github.com/rust-lang/crates.io-index" 4748 + checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 4749 + dependencies = [ 4750 + "windows-core 0.61.2", 4751 + ] 4752 + 4753 + [[package]] 4754 + name = "windows-core" 4755 + version = "0.61.2" 4756 + source = "registry+https://github.com/rust-lang/crates.io-index" 4757 + checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 4758 + dependencies = [ 4759 + "windows-implement", 4760 + "windows-interface", 4761 + "windows-link 0.1.3", 4762 + "windows-result 0.3.4", 4763 + "windows-strings 0.4.2", 4764 + ] 4765 + 4766 + [[package]] 4767 + name = "windows-core" 4768 + version = "0.62.2" 4769 + source = "registry+https://github.com/rust-lang/crates.io-index" 4770 + checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 4771 + dependencies = [ 4772 + "windows-implement", 4773 + "windows-interface", 4774 + "windows-link 0.2.1", 4775 + "windows-result 0.4.1", 4776 + "windows-strings 0.5.1", 4777 + ] 4778 + 4779 + [[package]] 4780 + name = "windows-future" 4781 + version = "0.2.1" 4782 + source = "registry+https://github.com/rust-lang/crates.io-index" 4783 + checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 4784 + dependencies = [ 4785 + "windows-core 0.61.2", 4786 + "windows-link 0.1.3", 4787 + "windows-threading", 4788 + ] 4789 + 4790 + [[package]] 4791 + name = "windows-implement" 4792 + version = "0.60.2" 4793 + source = "registry+https://github.com/rust-lang/crates.io-index" 4794 + checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 4795 + dependencies = [ 4796 + "proc-macro2", 4797 + "quote", 4798 + "syn 2.0.111", 4799 + ] 4800 + 4801 + [[package]] 4802 + name = "windows-interface" 4803 + version = "0.59.3" 4804 + source = "registry+https://github.com/rust-lang/crates.io-index" 4805 + checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 4806 + dependencies = [ 4807 + "proc-macro2", 4808 + "quote", 4809 + "syn 2.0.111", 4810 + ] 4811 + 4812 + [[package]] 4813 + name = "windows-link" 4814 + version = "0.1.3" 4815 + source = "registry+https://github.com/rust-lang/crates.io-index" 4816 + checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 4817 + 4818 + [[package]] 4819 + name = "windows-link" 4820 + version = "0.2.1" 4821 + source = "registry+https://github.com/rust-lang/crates.io-index" 4822 + checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 4823 + 4824 + [[package]] 4825 + name = "windows-numerics" 4826 + version = "0.2.0" 4827 + source = "registry+https://github.com/rust-lang/crates.io-index" 4828 + checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 4829 + dependencies = [ 4830 + "windows-core 0.61.2", 4831 + "windows-link 0.1.3", 4832 + ] 4833 + 4834 + [[package]] 4835 + name = "windows-result" 4836 + version = "0.3.4" 4837 + source = "registry+https://github.com/rust-lang/crates.io-index" 4838 + checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 4839 + dependencies = [ 4840 + "windows-link 0.1.3", 4841 + ] 4842 + 4843 + [[package]] 4844 + name = "windows-result" 4845 + version = "0.4.1" 4846 + source = "registry+https://github.com/rust-lang/crates.io-index" 4847 + checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 4848 + dependencies = [ 4849 + "windows-link 0.2.1", 4850 + ] 4851 + 4852 + [[package]] 4853 + name = "windows-strings" 4854 + version = "0.4.2" 4855 + source = "registry+https://github.com/rust-lang/crates.io-index" 4856 + checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 4857 + dependencies = [ 4858 + "windows-link 0.1.3", 4859 + ] 4860 + 4861 + [[package]] 4862 + name = "windows-strings" 4863 + version = "0.5.1" 4864 + source = "registry+https://github.com/rust-lang/crates.io-index" 4865 + checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 4866 + dependencies = [ 4867 + "windows-link 0.2.1", 4868 + ] 4869 + 4870 + [[package]] 4871 + name = "windows-sys" 4872 + version = "0.45.0" 4873 + source = "registry+https://github.com/rust-lang/crates.io-index" 4874 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4875 + dependencies = [ 4876 + "windows-targets 0.42.2", 4877 + ] 4878 + 4879 + [[package]] 4880 + name = "windows-sys" 4881 + version = "0.59.0" 4882 + source = "registry+https://github.com/rust-lang/crates.io-index" 4883 + checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 4884 + dependencies = [ 4885 + "windows-targets 0.52.6", 4886 + ] 4887 + 4888 + [[package]] 4889 + name = "windows-sys" 4890 + version = "0.60.2" 4891 + source = "registry+https://github.com/rust-lang/crates.io-index" 4892 + checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 4893 + dependencies = [ 4894 + "windows-targets 0.53.5", 4895 + ] 4896 + 4897 + [[package]] 4898 + name = "windows-sys" 4899 + version = "0.61.2" 4900 + source = "registry+https://github.com/rust-lang/crates.io-index" 4901 + checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 4902 + dependencies = [ 4903 + "windows-link 0.2.1", 4904 + ] 4905 + 4906 + [[package]] 4907 + name = "windows-targets" 4908 + version = "0.42.2" 4909 + source = "registry+https://github.com/rust-lang/crates.io-index" 4910 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4911 + dependencies = [ 4912 + "windows_aarch64_gnullvm 0.42.2", 4913 + "windows_aarch64_msvc 0.42.2", 4914 + "windows_i686_gnu 0.42.2", 4915 + "windows_i686_msvc 0.42.2", 4916 + "windows_x86_64_gnu 0.42.2", 4917 + "windows_x86_64_gnullvm 0.42.2", 4918 + "windows_x86_64_msvc 0.42.2", 4919 + ] 4920 + 4921 + [[package]] 4922 + name = "windows-targets" 4923 + version = "0.52.6" 4924 + source = "registry+https://github.com/rust-lang/crates.io-index" 4925 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4926 + dependencies = [ 4927 + "windows_aarch64_gnullvm 0.52.6", 4928 + "windows_aarch64_msvc 0.52.6", 4929 + "windows_i686_gnu 0.52.6", 4930 + "windows_i686_gnullvm 0.52.6", 4931 + "windows_i686_msvc 0.52.6", 4932 + "windows_x86_64_gnu 0.52.6", 4933 + "windows_x86_64_gnullvm 0.52.6", 4934 + "windows_x86_64_msvc 0.52.6", 4935 + ] 4936 + 4937 + [[package]] 4938 + name = "windows-targets" 4939 + version = "0.53.5" 4940 + source = "registry+https://github.com/rust-lang/crates.io-index" 4941 + checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 4942 + dependencies = [ 4943 + "windows-link 0.2.1", 4944 + "windows_aarch64_gnullvm 0.53.1", 4945 + "windows_aarch64_msvc 0.53.1", 4946 + "windows_i686_gnu 0.53.1", 4947 + "windows_i686_gnullvm 0.53.1", 4948 + "windows_i686_msvc 0.53.1", 4949 + "windows_x86_64_gnu 0.53.1", 4950 + "windows_x86_64_gnullvm 0.53.1", 4951 + "windows_x86_64_msvc 0.53.1", 4952 + ] 4953 + 4954 + [[package]] 4955 + name = "windows-threading" 4956 + version = "0.1.0" 4957 + source = "registry+https://github.com/rust-lang/crates.io-index" 4958 + checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 4959 + dependencies = [ 4960 + "windows-link 0.1.3", 4961 + ] 4962 + 4963 + [[package]] 4964 + name = "windows-version" 4965 + version = "0.1.7" 4966 + source = "registry+https://github.com/rust-lang/crates.io-index" 4967 + checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" 4968 + dependencies = [ 4969 + "windows-link 0.2.1", 4970 + ] 4971 + 4972 + [[package]] 4973 + name = "windows_aarch64_gnullvm" 4974 + version = "0.42.2" 4975 + source = "registry+https://github.com/rust-lang/crates.io-index" 4976 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4977 + 4978 + [[package]] 4979 + name = "windows_aarch64_gnullvm" 4980 + version = "0.52.6" 4981 + source = "registry+https://github.com/rust-lang/crates.io-index" 4982 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4983 + 4984 + [[package]] 4985 + name = "windows_aarch64_gnullvm" 4986 + version = "0.53.1" 4987 + source = "registry+https://github.com/rust-lang/crates.io-index" 4988 + checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 4989 + 4990 + [[package]] 4991 + name = "windows_aarch64_msvc" 4992 + version = "0.42.2" 4993 + source = "registry+https://github.com/rust-lang/crates.io-index" 4994 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4995 + 4996 + [[package]] 4997 + name = "windows_aarch64_msvc" 4998 + version = "0.52.6" 4999 + source = "registry+https://github.com/rust-lang/crates.io-index" 5000 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 5001 + 5002 + [[package]] 5003 + name = "windows_aarch64_msvc" 5004 + version = "0.53.1" 5005 + source = "registry+https://github.com/rust-lang/crates.io-index" 5006 + checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 5007 + 5008 + [[package]] 5009 + name = "windows_i686_gnu" 5010 + version = "0.42.2" 5011 + source = "registry+https://github.com/rust-lang/crates.io-index" 5012 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 5013 + 5014 + [[package]] 5015 + name = "windows_i686_gnu" 5016 + version = "0.52.6" 5017 + source = "registry+https://github.com/rust-lang/crates.io-index" 5018 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 5019 + 5020 + [[package]] 5021 + name = "windows_i686_gnu" 5022 + version = "0.53.1" 5023 + source = "registry+https://github.com/rust-lang/crates.io-index" 5024 + checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 5025 + 5026 + [[package]] 5027 + name = "windows_i686_gnullvm" 5028 + version = "0.52.6" 5029 + source = "registry+https://github.com/rust-lang/crates.io-index" 5030 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 5031 + 5032 + [[package]] 5033 + name = "windows_i686_gnullvm" 5034 + version = "0.53.1" 5035 + source = "registry+https://github.com/rust-lang/crates.io-index" 5036 + checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 5037 + 5038 + [[package]] 5039 + name = "windows_i686_msvc" 5040 + version = "0.42.2" 5041 + source = "registry+https://github.com/rust-lang/crates.io-index" 5042 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 5043 + 5044 + [[package]] 5045 + name = "windows_i686_msvc" 5046 + version = "0.52.6" 5047 + source = "registry+https://github.com/rust-lang/crates.io-index" 5048 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 5049 + 5050 + [[package]] 5051 + name = "windows_i686_msvc" 5052 + version = "0.53.1" 5053 + source = "registry+https://github.com/rust-lang/crates.io-index" 5054 + checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 5055 + 5056 + [[package]] 5057 + name = "windows_x86_64_gnu" 5058 + version = "0.42.2" 5059 + source = "registry+https://github.com/rust-lang/crates.io-index" 5060 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 5061 + 5062 + [[package]] 5063 + name = "windows_x86_64_gnu" 5064 + version = "0.52.6" 5065 + source = "registry+https://github.com/rust-lang/crates.io-index" 5066 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 5067 + 5068 + [[package]] 5069 + name = "windows_x86_64_gnu" 5070 + version = "0.53.1" 5071 + source = "registry+https://github.com/rust-lang/crates.io-index" 5072 + checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 5073 + 5074 + [[package]] 5075 + name = "windows_x86_64_gnullvm" 5076 + version = "0.42.2" 5077 + source = "registry+https://github.com/rust-lang/crates.io-index" 5078 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 5079 + 5080 + [[package]] 5081 + name = "windows_x86_64_gnullvm" 5082 + version = "0.52.6" 5083 + source = "registry+https://github.com/rust-lang/crates.io-index" 5084 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 5085 + 5086 + [[package]] 5087 + name = "windows_x86_64_gnullvm" 5088 + version = "0.53.1" 5089 + source = "registry+https://github.com/rust-lang/crates.io-index" 5090 + checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 5091 + 5092 + [[package]] 5093 + name = "windows_x86_64_msvc" 5094 + version = "0.42.2" 5095 + source = "registry+https://github.com/rust-lang/crates.io-index" 5096 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 5097 + 5098 + [[package]] 5099 + name = "windows_x86_64_msvc" 5100 + version = "0.52.6" 5101 + source = "registry+https://github.com/rust-lang/crates.io-index" 5102 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 5103 + 5104 + [[package]] 5105 + name = "windows_x86_64_msvc" 5106 + version = "0.53.1" 5107 + source = "registry+https://github.com/rust-lang/crates.io-index" 5108 + checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 5109 + 5110 + [[package]] 5111 + name = "winnow" 5112 + version = "0.5.40" 5113 + source = "registry+https://github.com/rust-lang/crates.io-index" 5114 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 5115 + dependencies = [ 5116 + "memchr", 5117 + ] 5118 + 5119 + [[package]] 5120 + name = "winnow" 5121 + version = "0.7.14" 5122 + source = "registry+https://github.com/rust-lang/crates.io-index" 5123 + checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 5124 + dependencies = [ 5125 + "memchr", 5126 + ] 5127 + 5128 + [[package]] 5129 + name = "winreg" 5130 + version = "0.55.0" 5131 + source = "registry+https://github.com/rust-lang/crates.io-index" 5132 + checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" 5133 + dependencies = [ 5134 + "cfg-if", 5135 + "windows-sys 0.59.0", 5136 + ] 5137 + 5138 + [[package]] 5139 + name = "wit-bindgen" 5140 + version = "0.46.0" 5141 + source = "registry+https://github.com/rust-lang/crates.io-index" 5142 + checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 5143 + 5144 + [[package]] 5145 + name = "writeable" 5146 + version = "0.6.2" 5147 + source = "registry+https://github.com/rust-lang/crates.io-index" 5148 + checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 5149 + 5150 + [[package]] 5151 + name = "wry" 5152 + version = "0.53.5" 5153 + source = "registry+https://github.com/rust-lang/crates.io-index" 5154 + checksum = "728b7d4c8ec8d81cab295e0b5b8a4c263c0d41a785fb8f8c4df284e5411140a2" 5155 + dependencies = [ 5156 + "base64 0.22.1", 5157 + "block2", 5158 + "cookie", 5159 + "crossbeam-channel", 5160 + "dirs", 5161 + "dpi", 5162 + "dunce", 5163 + "gdkx11", 5164 + "gtk", 5165 + "html5ever", 5166 + "http", 5167 + "javascriptcore-rs", 5168 + "jni", 5169 + "kuchikiki", 5170 + "libc", 5171 + "ndk", 5172 + "objc2", 5173 + "objc2-app-kit", 5174 + "objc2-core-foundation", 5175 + "objc2-foundation", 5176 + "objc2-ui-kit", 5177 + "objc2-web-kit", 5178 + "once_cell", 5179 + "percent-encoding", 5180 + "raw-window-handle", 5181 + "sha2", 5182 + "soup3", 5183 + "tao-macros", 5184 + "thiserror 2.0.17", 5185 + "url", 5186 + "webkit2gtk", 5187 + "webkit2gtk-sys", 5188 + "webview2-com", 5189 + "windows", 5190 + "windows-core 0.61.2", 5191 + "windows-version", 5192 + "x11-dl", 5193 + ] 5194 + 5195 + [[package]] 5196 + name = "x11" 5197 + version = "2.21.0" 5198 + source = "registry+https://github.com/rust-lang/crates.io-index" 5199 + checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 5200 + dependencies = [ 5201 + "libc", 5202 + "pkg-config", 5203 + ] 5204 + 5205 + [[package]] 5206 + name = "x11-dl" 5207 + version = "2.21.0" 5208 + source = "registry+https://github.com/rust-lang/crates.io-index" 5209 + checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 5210 + dependencies = [ 5211 + "libc", 5212 + "once_cell", 5213 + "pkg-config", 5214 + ] 5215 + 5216 + [[package]] 5217 + name = "yoke" 5218 + version = "0.8.1" 5219 + source = "registry+https://github.com/rust-lang/crates.io-index" 5220 + checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 5221 + dependencies = [ 5222 + "stable_deref_trait", 5223 + "yoke-derive", 5224 + "zerofrom", 5225 + ] 5226 + 5227 + [[package]] 5228 + name = "yoke-derive" 5229 + version = "0.8.1" 5230 + source = "registry+https://github.com/rust-lang/crates.io-index" 5231 + checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 5232 + dependencies = [ 5233 + "proc-macro2", 5234 + "quote", 5235 + "syn 2.0.111", 5236 + "synstructure", 5237 + ] 5238 + 5239 + [[package]] 5240 + name = "zbus" 5241 + version = "5.12.0" 5242 + source = "registry+https://github.com/rust-lang/crates.io-index" 5243 + checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91" 5244 + dependencies = [ 5245 + "async-broadcast", 5246 + "async-executor", 5247 + "async-io", 5248 + "async-lock", 5249 + "async-process", 5250 + "async-recursion", 5251 + "async-task", 5252 + "async-trait", 5253 + "blocking", 5254 + "enumflags2", 5255 + "event-listener", 5256 + "futures-core", 5257 + "futures-lite", 5258 + "hex", 5259 + "nix", 5260 + "ordered-stream", 5261 + "serde", 5262 + "serde_repr", 5263 + "tokio", 5264 + "tracing", 5265 + "uds_windows", 5266 + "uuid", 5267 + "windows-sys 0.61.2", 5268 + "winnow 0.7.14", 5269 + "zbus_macros", 5270 + "zbus_names", 5271 + "zvariant", 5272 + ] 5273 + 5274 + [[package]] 5275 + name = "zbus_macros" 5276 + version = "5.12.0" 5277 + source = "registry+https://github.com/rust-lang/crates.io-index" 5278 + checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314" 5279 + dependencies = [ 5280 + "proc-macro-crate 3.4.0", 5281 + "proc-macro2", 5282 + "quote", 5283 + "syn 2.0.111", 5284 + "zbus_names", 5285 + "zvariant", 5286 + "zvariant_utils", 5287 + ] 5288 + 5289 + [[package]] 5290 + name = "zbus_names" 5291 + version = "4.2.0" 5292 + source = "registry+https://github.com/rust-lang/crates.io-index" 5293 + checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" 5294 + dependencies = [ 5295 + "serde", 5296 + "static_assertions", 5297 + "winnow 0.7.14", 5298 + "zvariant", 5299 + ] 5300 + 5301 + [[package]] 5302 + name = "zerocopy" 5303 + version = "0.8.31" 5304 + source = "registry+https://github.com/rust-lang/crates.io-index" 5305 + checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" 5306 + dependencies = [ 5307 + "zerocopy-derive", 5308 + ] 5309 + 5310 + [[package]] 5311 + name = "zerocopy-derive" 5312 + version = "0.8.31" 5313 + source = "registry+https://github.com/rust-lang/crates.io-index" 5314 + checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" 5315 + dependencies = [ 5316 + "proc-macro2", 5317 + "quote", 5318 + "syn 2.0.111", 5319 + ] 5320 + 5321 + [[package]] 5322 + name = "zerofrom" 5323 + version = "0.1.6" 5324 + source = "registry+https://github.com/rust-lang/crates.io-index" 5325 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 5326 + dependencies = [ 5327 + "zerofrom-derive", 5328 + ] 5329 + 5330 + [[package]] 5331 + name = "zerofrom-derive" 5332 + version = "0.1.6" 5333 + source = "registry+https://github.com/rust-lang/crates.io-index" 5334 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 5335 + dependencies = [ 5336 + "proc-macro2", 5337 + "quote", 5338 + "syn 2.0.111", 5339 + "synstructure", 5340 + ] 5341 + 5342 + [[package]] 5343 + name = "zerotrie" 5344 + version = "0.2.3" 5345 + source = "registry+https://github.com/rust-lang/crates.io-index" 5346 + checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 5347 + dependencies = [ 5348 + "displaydoc", 5349 + "yoke", 5350 + "zerofrom", 5351 + ] 5352 + 5353 + [[package]] 5354 + name = "zerovec" 5355 + version = "0.11.5" 5356 + source = "registry+https://github.com/rust-lang/crates.io-index" 5357 + checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 5358 + dependencies = [ 5359 + "yoke", 5360 + "zerofrom", 5361 + "zerovec-derive", 5362 + ] 5363 + 5364 + [[package]] 5365 + name = "zerovec-derive" 5366 + version = "0.11.2" 5367 + source = "registry+https://github.com/rust-lang/crates.io-index" 5368 + checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 5369 + dependencies = [ 5370 + "proc-macro2", 5371 + "quote", 5372 + "syn 2.0.111", 5373 + ] 5374 + 5375 + [[package]] 5376 + name = "zvariant" 5377 + version = "5.8.0" 5378 + source = "registry+https://github.com/rust-lang/crates.io-index" 5379 + checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c" 5380 + dependencies = [ 5381 + "endi", 5382 + "enumflags2", 5383 + "serde", 5384 + "url", 5385 + "winnow 0.7.14", 5386 + "zvariant_derive", 5387 + "zvariant_utils", 5388 + ] 5389 + 5390 + [[package]] 5391 + name = "zvariant_derive" 5392 + version = "5.8.0" 5393 + source = "registry+https://github.com/rust-lang/crates.io-index" 5394 + checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006" 5395 + dependencies = [ 5396 + "proc-macro-crate 3.4.0", 5397 + "proc-macro2", 5398 + "quote", 5399 + "syn 2.0.111", 5400 + "zvariant_utils", 5401 + ] 5402 + 5403 + [[package]] 5404 + name = "zvariant_utils" 5405 + version = "3.2.1" 5406 + source = "registry+https://github.com/rust-lang/crates.io-index" 5407 + checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599" 5408 + dependencies = [ 5409 + "proc-macro2", 5410 + "quote", 5411 + "serde", 5412 + "syn 2.0.111", 5413 + "winnow 0.7.14", 5414 + ]
+28
apps/desktop/src-tauri/Cargo.toml
··· 1 + [package] 2 + name = "desktop" 3 + version = "0.1.0" 4 + description = "A Tauri App" 5 + authors = ["you"] 6 + edition = "2021" 7 + 8 + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 9 + 10 + [lib] 11 + # The `_lib` suffix may seem redundant but it is necessary 12 + # to make the lib name unique and wouldn't conflict with the bin name. 13 + # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 14 + name = "desktop_lib" 15 + crate-type = ["staticlib", "cdylib", "rlib"] 16 + 17 + [build-dependencies] 18 + tauri-build = { version = "2", features = [] } 19 + 20 + [dependencies] 21 + tauri = { version = "2", features = [] } 22 + tauri-plugin-opener = "2" 23 + tauri-plugin-dialog = "2" 24 + tauri-plugin-fs = "2" 25 + tauri-plugin-store = "2" 26 + serde = { version = "1", features = ["derive"] } 27 + serde_json = "1" 28 +
+3
apps/desktop/src-tauri/build.rs
··· 1 + fn main() { 2 + tauri_build::build() 3 + }
+7
apps/desktop/src-tauri/capabilities/default.json
··· 1 + { 2 + "$schema": "../gen/schemas/desktop-schema.json", 3 + "identifier": "default", 4 + "description": "Capability for the main window", 5 + "windows": ["main"], 6 + "permissions": ["core:default", "opener:default", "dialog:default", "fs:default", "store:default"] 7 + }
apps/desktop/src-tauri/icons/128x128.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/128x128@2x.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/32x32.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square107x107Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square142x142Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square150x150Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square284x284Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square30x30Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square310x310Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square44x44Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square71x71Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/Square89x89Logo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/StoreLogo.png

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/icon.icns

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/icon.ico

This is a binary file and will not be displayed.

apps/desktop/src-tauri/icons/icon.png

This is a binary file and will not be displayed.

+10
apps/desktop/src-tauri/src/lib.rs
··· 1 + #[cfg_attr(mobile, tauri::mobile_entry_point)] 2 + pub fn run() { 3 + tauri::Builder::default() 4 + .plugin(tauri_plugin_opener::init()) 5 + .plugin(tauri_plugin_dialog::init()) 6 + .plugin(tauri_plugin_fs::init()) 7 + .plugin(tauri_plugin_store::Builder::default().build()) 8 + .run(tauri::generate_context!()) 9 + .expect("error while running tauri application"); 10 + }
+6
apps/desktop/src-tauri/src/main.rs
··· 1 + // Prevents additional console window on Windows in release, DO NOT REMOVE!! 2 + #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] 3 + 4 + fn main() { 5 + desktop_lib::run() 6 + }
+35
apps/desktop/src-tauri/tauri.conf.json
··· 1 + { 2 + "$schema": "https://schema.tauri.app/config/2", 3 + "productName": "desktop", 4 + "version": "0.1.0", 5 + "identifier": "org.stormlightlabs.inkfinite", 6 + "build": { 7 + "beforeDevCommand": "cd ../../web && pnpm dev", 8 + "devUrl": "http://localhost:5173", 9 + "beforeBuildCommand": "cd ../../web && pnpm build", 10 + "frontendDist": "../../web/build" 11 + }, 12 + "app": { 13 + "windows": [ 14 + { 15 + "title": "desktop", 16 + "width": 800, 17 + "height": 600 18 + } 19 + ], 20 + "security": { 21 + "csp": null 22 + } 23 + }, 24 + "bundle": { 25 + "active": true, 26 + "targets": "all", 27 + "icon": [ 28 + "icons/32x32.png", 29 + "icons/128x128.png", 30 + "icons/128x128@2x.png", 31 + "icons/icon.icns", 32 + "icons/icon.ico" 33 + ] 34 + } 35 + }
+9 -1
apps/web/package.json
··· 15 15 "test": "npm run test:unit -- --run", 16 16 "format": "prettier --write ." 17 17 }, 18 - "dependencies": { "dexie": "^4.2.1", "inkfinite-core": "workspace:*", "inkfinite-renderer": "workspace:*" }, 18 + "dependencies": { 19 + "@tauri-apps/api": "^2.9.1", 20 + "@tauri-apps/plugin-dialog": "^2.4.2", 21 + "@tauri-apps/plugin-fs": "^2.4.4", 22 + "@tauri-apps/plugin-store": "^2.4.1", 23 + "dexie": "^4.2.1", 24 + "inkfinite-core": "workspace:*", 25 + "inkfinite-renderer": "workspace:*" 26 + }, 19 27 "devDependencies": { 20 28 "@eslint/compat": "^1.4.0", 21 29 "@eslint/js": "^9.39.1",
+1
packages/core/src/index.ts
··· 7 7 export * from "./math"; 8 8 export * from "./model"; 9 9 export * from "./persistence/db"; 10 + export * from "./persistence/desktop"; 10 11 export * from "./persistence/web"; 11 12 export * from "./reactivity"; 12 13 export * from "./tools";
+162
pnpm-lock.yaml
··· 30 30 specifier: ^8.50.0 31 31 version: 8.50.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 32 32 33 + apps/desktop: 34 + devDependencies: 35 + '@tauri-apps/cli': 36 + specifier: ^2 37 + version: 2.9.6 38 + 33 39 apps/web: 34 40 dependencies: 41 + '@tauri-apps/api': 42 + specifier: ^2.9.1 43 + version: 2.9.1 44 + '@tauri-apps/plugin-dialog': 45 + specifier: ^2.4.2 46 + version: 2.4.2 47 + '@tauri-apps/plugin-fs': 48 + specifier: ^2.4.4 49 + version: 2.4.4 50 + '@tauri-apps/plugin-store': 51 + specifier: ^2.4.1 52 + version: 2.4.1 35 53 dexie: 36 54 specifier: ^4.2.1 37 55 version: 4.2.1 ··· 773 791 peerDependencies: 774 792 svelte: ^5.0.0 775 793 vite: ^6.3.0 || ^7.0.0 794 + 795 + '@tauri-apps/api@2.9.1': 796 + resolution: {integrity: sha512-IGlhP6EivjXHepbBic618GOmiWe4URJiIeZFlB7x3czM0yDHHYviH1Xvoiv4FefdkQtn6v7TuwWCRfOGdnVUGw==} 797 + 798 + '@tauri-apps/cli-darwin-arm64@2.9.6': 799 + resolution: {integrity: sha512-gf5no6N9FCk1qMrti4lfwP77JHP5haASZgVbBgpZG7BUepB3fhiLCXGUK8LvuOjP36HivXewjg72LTnPDScnQQ==} 800 + engines: {node: '>= 10'} 801 + cpu: [arm64] 802 + os: [darwin] 803 + 804 + '@tauri-apps/cli-darwin-x64@2.9.6': 805 + resolution: {integrity: sha512-oWh74WmqbERwwrwcueJyY6HYhgCksUc6NT7WKeXyrlY/FPmNgdyQAgcLuTSkhRFuQ6zh4Np1HZpOqCTpeZBDcw==} 806 + engines: {node: '>= 10'} 807 + cpu: [x64] 808 + os: [darwin] 809 + 810 + '@tauri-apps/cli-linux-arm-gnueabihf@2.9.6': 811 + resolution: {integrity: sha512-/zde3bFroFsNXOHN204DC2qUxAcAanUjVXXSdEGmhwMUZeAQalNj5cz2Qli2elsRjKN/hVbZOJj0gQ5zaYUjSg==} 812 + engines: {node: '>= 10'} 813 + cpu: [arm] 814 + os: [linux] 815 + 816 + '@tauri-apps/cli-linux-arm64-gnu@2.9.6': 817 + resolution: {integrity: sha512-pvbljdhp9VOo4RnID5ywSxgBs7qiylTPlK56cTk7InR3kYSTJKYMqv/4Q/4rGo/mG8cVppesKIeBMH42fw6wjg==} 818 + engines: {node: '>= 10'} 819 + cpu: [arm64] 820 + os: [linux] 821 + 822 + '@tauri-apps/cli-linux-arm64-musl@2.9.6': 823 + resolution: {integrity: sha512-02TKUndpodXBCR0oP//6dZWGYcc22Upf2eP27NvC6z0DIqvkBBFziQUcvi2n6SrwTRL0yGgQjkm9K5NIn8s6jw==} 824 + engines: {node: '>= 10'} 825 + cpu: [arm64] 826 + os: [linux] 827 + 828 + '@tauri-apps/cli-linux-riscv64-gnu@2.9.6': 829 + resolution: {integrity: sha512-fmp1hnulbqzl1GkXl4aTX9fV+ubHw2LqlLH1PE3BxZ11EQk+l/TmiEongjnxF0ie4kV8DQfDNJ1KGiIdWe1GvQ==} 830 + engines: {node: '>= 10'} 831 + cpu: [riscv64] 832 + os: [linux] 833 + 834 + '@tauri-apps/cli-linux-x64-gnu@2.9.6': 835 + resolution: {integrity: sha512-vY0le8ad2KaV1PJr+jCd8fUF9VOjwwQP/uBuTJvhvKTloEwxYA/kAjKK9OpIslGA9m/zcnSo74czI6bBrm2sYA==} 836 + engines: {node: '>= 10'} 837 + cpu: [x64] 838 + os: [linux] 839 + 840 + '@tauri-apps/cli-linux-x64-musl@2.9.6': 841 + resolution: {integrity: sha512-TOEuB8YCFZTWVDzsO2yW0+zGcoMiPPwcUgdnW1ODnmgfwccpnihDRoks+ABT1e3fHb1ol8QQWsHSCovb3o2ENQ==} 842 + engines: {node: '>= 10'} 843 + cpu: [x64] 844 + os: [linux] 845 + 846 + '@tauri-apps/cli-win32-arm64-msvc@2.9.6': 847 + resolution: {integrity: sha512-ujmDGMRc4qRLAnj8nNG26Rlz9klJ0I0jmZs2BPpmNNf0gM/rcVHhqbEkAaHPTBVIrtUdf7bGvQAD2pyIiUrBHQ==} 848 + engines: {node: '>= 10'} 849 + cpu: [arm64] 850 + os: [win32] 851 + 852 + '@tauri-apps/cli-win32-ia32-msvc@2.9.6': 853 + resolution: {integrity: sha512-S4pT0yAJgFX8QRCyKA1iKjZ9Q/oPjCZf66A/VlG5Yw54Nnr88J1uBpmenINbXxzyhduWrIXBaUbEY1K80ZbpMg==} 854 + engines: {node: '>= 10'} 855 + cpu: [ia32] 856 + os: [win32] 857 + 858 + '@tauri-apps/cli-win32-x64-msvc@2.9.6': 859 + resolution: {integrity: sha512-ldWuWSSkWbKOPjQMJoYVj9wLHcOniv7diyI5UAJ4XsBdtaFB0pKHQsqw/ItUma0VXGC7vB4E9fZjivmxur60aw==} 860 + engines: {node: '>= 10'} 861 + cpu: [x64] 862 + os: [win32] 863 + 864 + '@tauri-apps/cli@2.9.6': 865 + resolution: {integrity: sha512-3xDdXL5omQ3sPfBfdC8fCtDKcnyV7OqyzQgfyT5P3+zY6lcPqIYKQBvUasNvppi21RSdfhy44ttvJmftb0PCDw==} 866 + engines: {node: '>= 10'} 867 + hasBin: true 868 + 869 + '@tauri-apps/plugin-dialog@2.4.2': 870 + resolution: {integrity: sha512-lNIn5CZuw8WZOn8zHzmFmDSzg5zfohWoa3mdULP0YFh/VogVdMVWZPcWSHlydsiJhRQYaTNSYKN7RmZKE2lCYQ==} 871 + 872 + '@tauri-apps/plugin-fs@2.4.4': 873 + resolution: {integrity: sha512-MTorXxIRmOnOPT1jZ3w96vjSuScER38ryXY88vl5F0uiKdnvTKKTtaEjTEo8uPbl4e3gnUtfsDVwC7h77GQLvQ==} 874 + 875 + '@tauri-apps/plugin-store@2.4.1': 876 + resolution: {integrity: sha512-ckGSEzZ5Ii4Hf2D5x25Oqnm2Zf9MfDWAzR+volY0z/OOBz6aucPKEY0F649JvQ0Vupku6UJo7ugpGRDOFOunkA==} 776 877 777 878 '@tybys/wasm-util@0.10.1': 778 879 resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} ··· 2530 2631 vitefu: 1.1.1(vite@7.3.0(@types/node@24.10.4)(jiti@2.6.1)(yaml@2.8.2)) 2531 2632 transitivePeerDependencies: 2532 2633 - supports-color 2634 + 2635 + '@tauri-apps/api@2.9.1': {} 2636 + 2637 + '@tauri-apps/cli-darwin-arm64@2.9.6': 2638 + optional: true 2639 + 2640 + '@tauri-apps/cli-darwin-x64@2.9.6': 2641 + optional: true 2642 + 2643 + '@tauri-apps/cli-linux-arm-gnueabihf@2.9.6': 2644 + optional: true 2645 + 2646 + '@tauri-apps/cli-linux-arm64-gnu@2.9.6': 2647 + optional: true 2648 + 2649 + '@tauri-apps/cli-linux-arm64-musl@2.9.6': 2650 + optional: true 2651 + 2652 + '@tauri-apps/cli-linux-riscv64-gnu@2.9.6': 2653 + optional: true 2654 + 2655 + '@tauri-apps/cli-linux-x64-gnu@2.9.6': 2656 + optional: true 2657 + 2658 + '@tauri-apps/cli-linux-x64-musl@2.9.6': 2659 + optional: true 2660 + 2661 + '@tauri-apps/cli-win32-arm64-msvc@2.9.6': 2662 + optional: true 2663 + 2664 + '@tauri-apps/cli-win32-ia32-msvc@2.9.6': 2665 + optional: true 2666 + 2667 + '@tauri-apps/cli-win32-x64-msvc@2.9.6': 2668 + optional: true 2669 + 2670 + '@tauri-apps/cli@2.9.6': 2671 + optionalDependencies: 2672 + '@tauri-apps/cli-darwin-arm64': 2.9.6 2673 + '@tauri-apps/cli-darwin-x64': 2.9.6 2674 + '@tauri-apps/cli-linux-arm-gnueabihf': 2.9.6 2675 + '@tauri-apps/cli-linux-arm64-gnu': 2.9.6 2676 + '@tauri-apps/cli-linux-arm64-musl': 2.9.6 2677 + '@tauri-apps/cli-linux-riscv64-gnu': 2.9.6 2678 + '@tauri-apps/cli-linux-x64-gnu': 2.9.6 2679 + '@tauri-apps/cli-linux-x64-musl': 2.9.6 2680 + '@tauri-apps/cli-win32-arm64-msvc': 2.9.6 2681 + '@tauri-apps/cli-win32-ia32-msvc': 2.9.6 2682 + '@tauri-apps/cli-win32-x64-msvc': 2.9.6 2683 + 2684 + '@tauri-apps/plugin-dialog@2.4.2': 2685 + dependencies: 2686 + '@tauri-apps/api': 2.9.1 2687 + 2688 + '@tauri-apps/plugin-fs@2.4.4': 2689 + dependencies: 2690 + '@tauri-apps/api': 2.9.1 2691 + 2692 + '@tauri-apps/plugin-store@2.4.1': 2693 + dependencies: 2694 + '@tauri-apps/api': 2.9.1 2533 2695 2534 2696 '@tybys/wasm-util@0.10.1': 2535 2697 dependencies:
+33
shell.nix
··· 1 + { 2 + pkgs ? import <nixpkgs> { }, 3 + }: 4 + 5 + pkgs.mkShell { 6 + buildInputs = with pkgs; [ 7 + nodejs_20 8 + pnpm 9 + ]; 10 + 11 + shellHook = '' 12 + # Unset Nix's compiler/linker overrides 13 + unset CC CXX AR LD RANLIB STRIP 14 + 15 + # Use macOS system SDK 16 + export SDKROOT="$(xcrun --show-sdk-path)" 17 + 18 + # Ensure system tools are prioritized 19 + export PATH="/usr/bin:$PATH" 20 + 21 + # Add cargo to PATH if installed 22 + if [ -f "$HOME/.cargo/env" ]; then 23 + source "$HOME/.cargo/env" 24 + fi 25 + 26 + echo "✓ Node.js: $(node --version)" 27 + echo "✓ pnpm: $(pnpm --version)" 28 + echo "✓ Rust: $(rustc --version 2>/dev/null || echo 'not found - install from rustup.rs')" 29 + echo "✓ SDK: $SDKROOT" 30 + echo "" 31 + echo "Ready for Tauri development!" 32 + ''; 33 + }