BlueSky & more on desktop lazurite.stormlightlabs.org/
tauri rust typescript bluesky appview atproto solid
2
fork

Configure Feed

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

build: add rs deps and tauri plugins

+4356 -40
+2 -2
docs/specs/mvp.md
··· 19 19 │ ├─ jacquard::oauth — OAuth 2.1 loopback │ 20 20 │ ├─ rusqlite + sqlite-vec — local storage │ 21 21 │ ├─ fastembed — nomic-embed-text │ 22 - │ └─ tauri plugins — deep-link, sql, etc │ 22 + │ └─ tauri plugins — deep-link, log, │ 23 + │ updater │ 23 24 └─────────────────────────────────────────────┘ 24 25 ``` 25 26 ··· 33 34 | `sqlite-vec` | Vector similarity search extension for SQLite | 34 35 | `fastembed` | Local ONNX inference for `nomic-embed-text-v1.5` embeddings | 35 36 | `tauri-plugin-deep-link` | Register `at://` URI scheme handler | 36 - | `tauri-plugin-sql` | Optional — frontend-side DB queries | 37 37 | `solid-motionone` | Animation primitives (`Motion`, `Presence`) for SolidJS via Motion One | 38 38 39 39 ## Cross-Cutting Concerns
+7 -5
docs/tasks/01-backend-setup.md
··· 4 4 5 5 ## Steps 6 6 7 - - [ ] Add Cargo dependencies: `jacquard`, `rusqlite` (bundled), `sqlite-vec`, `fastembed`, `tokio` 8 - - [ ] Add Tauri plugins: `tauri-plugin-deep-link`, `tauri-plugin-notification`, `tauri-plugin-updater` 9 - - [ ] Add frontend deps: `solid-motionone` (animation), install via npm 7 + - [x] Add Cargo dependencies: `jacquard`, `rusqlite` (bundled), `sqlite-vec`, `fastembed`, `tokio` 8 + - [x] Add Tauri plugins: `tauri-plugin-deep-link`, `tauri-plugin-notification`, `tauri-plugin-updater`, `tauri-plugin-log` 9 + - [x] Add frontend deps: `solid-motionone` (animation), install via npm 10 10 - [ ] Create `src-tauri/src/db.rs` — initialize SQLite, run migrations, load `sqlite-vec` extension 11 11 - [ ] Create migration system: `accounts`, `posts`, `posts_fts`, `posts_vec` tables 12 + - Embedded files via `include_str!` for SQL schema 12 13 - [ ] Create `src-tauri/src/state.rs` — `AppState` struct holding DB pool, active session, account list 13 14 - [ ] Register `AppState` as Tauri managed state 14 - - [ ] Create Tauri command scaffold with error handling pattern (`Result<T, String>` or custom error type) 15 + - [ ] Create Tauri command scaffold with error handling pattern using `thiserror` crate 15 16 - [ ] Set up dark/light theme: CSS custom properties, OS preference detection via `prefers-color-scheme` 17 + - Follow the design spec 16 18 - [ ] Create global error toast component using `Presence` for enter/exit animations 17 - - [ ] Verify build compiles on macOS with `cargo tauri dev` 19 + - [ ] Verify build compiles on macOS with `pnpm tauri dev`
+11 -2
package.json
··· 3 3 "version": "0.1.0", 4 4 "description": "", 5 5 "type": "module", 6 - "scripts": { "start": "vite", "dev": "vite", "build": "vite build", "serve": "vite preview", "tauri": "tauri" }, 6 + "scripts": { 7 + "start": "vite", 8 + "dev": "vite", 9 + "build": "vite build", 10 + "serve": "vite preview", 11 + "tauri": "tauri" 12 + }, 7 13 "license": "MIT", 8 14 "dependencies": { 9 15 "@solidjs/router": "^0.15.4", 10 16 "@tauri-apps/api": "^2", 11 - "@tauri-apps/plugin-log": "^2", 17 + "@tauri-apps/plugin-deep-link": "~2.4.7", 18 + "@tauri-apps/plugin-log": "~2", 19 + "@tauri-apps/plugin-notification": "~2.3.3", 12 20 "@tauri-apps/plugin-opener": "^2", 21 + "@tauri-apps/plugin-updater": "~2.10.0", 13 22 "solid-js": "^1.9.3", 14 23 "solid-motionone": "^1.0.4" 15 24 },
+31 -1
pnpm-lock.yaml
··· 14 14 '@tauri-apps/api': 15 15 specifier: ^2 16 16 version: 2.10.1 17 + '@tauri-apps/plugin-deep-link': 18 + specifier: ~2.4.7 19 + version: 2.4.7 17 20 '@tauri-apps/plugin-log': 18 - specifier: ^2 21 + specifier: ~2 19 22 version: 2.8.0 23 + '@tauri-apps/plugin-notification': 24 + specifier: ~2.3.3 25 + version: 2.3.3 20 26 '@tauri-apps/plugin-opener': 21 27 specifier: ^2 22 28 version: 2.5.3 29 + '@tauri-apps/plugin-updater': 30 + specifier: ~2.10.0 31 + version: 2.10.0 23 32 solid-js: 24 33 specifier: ^1.9.3 25 34 version: 1.9.12 ··· 907 916 engines: {node: '>= 10'} 908 917 hasBin: true 909 918 919 + '@tauri-apps/plugin-deep-link@2.4.7': 920 + resolution: {integrity: sha512-K0FQlLM6BoV7Ws2xfkh+Tnwi5VZVdkI4Vw/3AGLSf0Xvu2y86AMBzd9w/SpzKhw9ai2B6ES8di/OoGDCExkOzg==} 921 + 910 922 '@tauri-apps/plugin-log@2.8.0': 911 923 resolution: {integrity: sha512-a+7rOq3MJwpTOLLKbL8d0qGZ85hgHw5pNOWusA9o3cf7cEgtYHiGY/+O8fj8MvywQIGqFv0da2bYQDlrqLE7rw==} 912 924 925 + '@tauri-apps/plugin-notification@2.3.3': 926 + resolution: {integrity: sha512-Zw+ZH18RJb41G4NrfHgIuofJiymusqN+q8fGUIIV7vyCH+5sSn5coqRv/MWB9qETsUs97vmU045q7OyseCV3Qg==} 927 + 913 928 '@tauri-apps/plugin-opener@2.5.3': 914 929 resolution: {integrity: sha512-CCcUltXMOfUEArbf3db3kCE7Ggy1ExBEBl51Ko2ODJ6GDYHRp1nSNlQm5uNCFY5k7/ufaK5Ib3Du/Zir19IYQQ==} 930 + 931 + '@tauri-apps/plugin-updater@2.10.0': 932 + resolution: {integrity: sha512-ljN8jPlnT0aSn8ecYhuBib84alxfMx6Hc8vJSKMJyzGbTPFZAC44T2I1QNFZssgWKrAlofvJqCC6Rr472JWfkQ==} 915 933 916 934 '@testing-library/dom@10.4.1': 917 935 resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} ··· 3074 3092 '@tauri-apps/cli-win32-ia32-msvc': 2.10.1 3075 3093 '@tauri-apps/cli-win32-x64-msvc': 2.10.1 3076 3094 3095 + '@tauri-apps/plugin-deep-link@2.4.7': 3096 + dependencies: 3097 + '@tauri-apps/api': 2.10.1 3098 + 3077 3099 '@tauri-apps/plugin-log@2.8.0': 3078 3100 dependencies: 3079 3101 '@tauri-apps/api': 2.10.1 3080 3102 3103 + '@tauri-apps/plugin-notification@2.3.3': 3104 + dependencies: 3105 + '@tauri-apps/api': 2.10.1 3106 + 3081 3107 '@tauri-apps/plugin-opener@2.5.3': 3108 + dependencies: 3109 + '@tauri-apps/api': 2.10.1 3110 + 3111 + '@tauri-apps/plugin-updater@2.10.0': 3082 3112 dependencies: 3083 3113 '@tauri-apps/api': 2.10.1 3084 3114
+4263 -27
src-tauri/Cargo.lock
··· 9 9 checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 10 10 11 11 [[package]] 12 + name = "adler32" 13 + version = "1.2.0" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 16 + 17 + [[package]] 18 + name = "ahash" 19 + version = "0.7.8" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 22 + dependencies = [ 23 + "getrandom 0.2.17", 24 + "once_cell", 25 + "version_check", 26 + ] 27 + 28 + [[package]] 29 + name = "ahash" 30 + version = "0.8.12" 31 + source = "registry+https://github.com/rust-lang/crates.io-index" 32 + checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 33 + dependencies = [ 34 + "cfg-if", 35 + "getrandom 0.3.4", 36 + "once_cell", 37 + "serde", 38 + "version_check", 39 + "zerocopy", 40 + ] 41 + 42 + [[package]] 12 43 name = "aho-corasick" 13 44 version = "1.1.4" 14 45 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 18 49 ] 19 50 20 51 [[package]] 52 + name = "aliasable" 53 + version = "0.1.3" 54 + source = "registry+https://github.com/rust-lang/crates.io-index" 55 + checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 56 + 57 + [[package]] 58 + name = "aligned" 59 + version = "0.4.3" 60 + source = "registry+https://github.com/rust-lang/crates.io-index" 61 + checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685" 62 + dependencies = [ 63 + "as-slice", 64 + ] 65 + 66 + [[package]] 67 + name = "aligned-vec" 68 + version = "0.6.4" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" 71 + dependencies = [ 72 + "equator", 73 + ] 74 + 75 + [[package]] 21 76 name = "alloc-no-stdlib" 22 77 version = "2.0.4" 23 78 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 33 88 ] 34 89 35 90 [[package]] 91 + name = "allocator-api2" 92 + version = "0.2.21" 93 + source = "registry+https://github.com/rust-lang/crates.io-index" 94 + checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 95 + 96 + [[package]] 97 + name = "android_log-sys" 98 + version = "0.3.2" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" 101 + 102 + [[package]] 103 + name = "android_logger" 104 + version = "0.15.1" 105 + source = "registry+https://github.com/rust-lang/crates.io-index" 106 + checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3" 107 + dependencies = [ 108 + "android_log-sys", 109 + "env_filter", 110 + "log", 111 + ] 112 + 113 + [[package]] 36 114 name = "android_system_properties" 37 115 version = "0.1.5" 38 116 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 48 126 checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" 49 127 50 128 [[package]] 129 + name = "arbitrary" 130 + version = "1.4.2" 131 + source = "registry+https://github.com/rust-lang/crates.io-index" 132 + checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" 133 + dependencies = [ 134 + "derive_arbitrary", 135 + ] 136 + 137 + [[package]] 138 + name = "arg_enum_proc_macro" 139 + version = "0.3.4" 140 + source = "registry+https://github.com/rust-lang/crates.io-index" 141 + checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" 142 + dependencies = [ 143 + "proc-macro2", 144 + "quote", 145 + "syn 2.0.117", 146 + ] 147 + 148 + [[package]] 149 + name = "arrayvec" 150 + version = "0.7.6" 151 + source = "registry+https://github.com/rust-lang/crates.io-index" 152 + checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 153 + 154 + [[package]] 155 + name = "as-slice" 156 + version = "0.2.1" 157 + source = "registry+https://github.com/rust-lang/crates.io-index" 158 + checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516" 159 + dependencies = [ 160 + "stable_deref_trait", 161 + ] 162 + 163 + [[package]] 164 + name = "ascii" 165 + version = "1.1.0" 166 + source = "registry+https://github.com/rust-lang/crates.io-index" 167 + checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16" 168 + 169 + [[package]] 51 170 name = "async-broadcast" 52 171 version = "0.7.2" 53 172 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 69 188 "event-listener-strategy", 70 189 "futures-core", 71 190 "pin-project-lite", 191 + ] 192 + 193 + [[package]] 194 + name = "async-compression" 195 + version = "0.4.41" 196 + source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1" 198 + dependencies = [ 199 + "compression-codecs", 200 + "compression-core", 201 + "pin-project-lite", 202 + "tokio", 72 203 ] 73 204 74 205 [[package]] ··· 202 333 ] 203 334 204 335 [[package]] 336 + name = "atomic-polyfill" 337 + version = "1.0.3" 338 + source = "registry+https://github.com/rust-lang/crates.io-index" 339 + checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 340 + dependencies = [ 341 + "critical-section", 342 + ] 343 + 344 + [[package]] 205 345 name = "atomic-waker" 206 346 version = "1.1.2" 207 347 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 214 354 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 215 355 216 356 [[package]] 357 + name = "av-scenechange" 358 + version = "0.14.1" 359 + source = "registry+https://github.com/rust-lang/crates.io-index" 360 + checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394" 361 + dependencies = [ 362 + "aligned", 363 + "anyhow", 364 + "arg_enum_proc_macro", 365 + "arrayvec", 366 + "log", 367 + "num-rational", 368 + "num-traits", 369 + "pastey", 370 + "rayon", 371 + "thiserror 2.0.18", 372 + "v_frame", 373 + "y4m", 374 + ] 375 + 376 + [[package]] 377 + name = "av1-grain" 378 + version = "0.2.5" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8" 381 + dependencies = [ 382 + "anyhow", 383 + "arrayvec", 384 + "log", 385 + "nom 8.0.0", 386 + "num-rational", 387 + "v_frame", 388 + ] 389 + 390 + [[package]] 391 + name = "avif-serialize" 392 + version = "0.8.8" 393 + source = "registry+https://github.com/rust-lang/crates.io-index" 394 + checksum = "375082f007bd67184fb9c0374614b29f9aaa604ec301635f72338bb65386a53d" 395 + dependencies = [ 396 + "arrayvec", 397 + ] 398 + 399 + [[package]] 400 + name = "base-x" 401 + version = "0.2.11" 402 + source = "registry+https://github.com/rust-lang/crates.io-index" 403 + checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 404 + 405 + [[package]] 406 + name = "base16ct" 407 + version = "0.2.0" 408 + source = "registry+https://github.com/rust-lang/crates.io-index" 409 + checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 410 + 411 + [[package]] 412 + name = "base256emoji" 413 + version = "1.0.2" 414 + source = "registry+https://github.com/rust-lang/crates.io-index" 415 + checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 416 + dependencies = [ 417 + "const-str", 418 + "match-lookup", 419 + ] 420 + 421 + [[package]] 422 + name = "base64" 423 + version = "0.13.1" 424 + source = "registry+https://github.com/rust-lang/crates.io-index" 425 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 426 + 427 + [[package]] 217 428 name = "base64" 218 429 version = "0.21.7" 219 430 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 226 437 checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 227 438 228 439 [[package]] 440 + name = "base64ct" 441 + version = "1.8.3" 442 + source = "registry+https://github.com/rust-lang/crates.io-index" 443 + checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 444 + 445 + [[package]] 229 446 name = "bit-set" 230 447 version = "0.8.0" 231 448 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 241 458 checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 242 459 243 460 [[package]] 461 + name = "bit_field" 462 + version = "0.10.3" 463 + source = "registry+https://github.com/rust-lang/crates.io-index" 464 + checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6" 465 + 466 + [[package]] 244 467 name = "bitflags" 245 468 version = "1.3.2" 246 469 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 256 479 ] 257 480 258 481 [[package]] 482 + name = "bitstream-io" 483 + version = "4.9.0" 484 + source = "registry+https://github.com/rust-lang/crates.io-index" 485 + checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757" 486 + dependencies = [ 487 + "core2", 488 + ] 489 + 490 + [[package]] 491 + name = "bitvec" 492 + version = "1.0.1" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 495 + dependencies = [ 496 + "funty", 497 + "radium", 498 + "tap", 499 + "wyz", 500 + ] 501 + 502 + [[package]] 259 503 name = "block-buffer" 260 504 version = "0.10.4" 261 505 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 287 531 ] 288 532 289 533 [[package]] 534 + name = "bon" 535 + version = "3.9.1" 536 + source = "registry+https://github.com/rust-lang/crates.io-index" 537 + checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe" 538 + dependencies = [ 539 + "bon-macros", 540 + "rustversion", 541 + ] 542 + 543 + [[package]] 544 + name = "bon-macros" 545 + version = "3.9.1" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c" 548 + dependencies = [ 549 + "darling 0.23.0", 550 + "ident_case", 551 + "prettyplease", 552 + "proc-macro2", 553 + "quote", 554 + "rustversion", 555 + "syn 2.0.117", 556 + ] 557 + 558 + [[package]] 559 + name = "borrow-or-share" 560 + version = "0.2.4" 561 + source = "registry+https://github.com/rust-lang/crates.io-index" 562 + checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c" 563 + 564 + [[package]] 565 + name = "borsh" 566 + version = "1.6.1" 567 + source = "registry+https://github.com/rust-lang/crates.io-index" 568 + checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a" 569 + dependencies = [ 570 + "borsh-derive", 571 + "bytes", 572 + "cfg_aliases", 573 + ] 574 + 575 + [[package]] 576 + name = "borsh-derive" 577 + version = "1.6.1" 578 + source = "registry+https://github.com/rust-lang/crates.io-index" 579 + checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59" 580 + dependencies = [ 581 + "once_cell", 582 + "proc-macro-crate 3.5.0", 583 + "proc-macro2", 584 + "quote", 585 + "syn 2.0.117", 586 + ] 587 + 588 + [[package]] 589 + name = "brotli" 590 + version = "3.5.0" 591 + source = "registry+https://github.com/rust-lang/crates.io-index" 592 + checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391" 593 + dependencies = [ 594 + "alloc-no-stdlib", 595 + "alloc-stdlib", 596 + "brotli-decompressor 2.5.1", 597 + ] 598 + 599 + [[package]] 290 600 name = "brotli" 291 601 version = "8.0.2" 292 602 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 294 604 dependencies = [ 295 605 "alloc-no-stdlib", 296 606 "alloc-stdlib", 297 - "brotli-decompressor", 607 + "brotli-decompressor 5.0.0", 608 + ] 609 + 610 + [[package]] 611 + name = "brotli-decompressor" 612 + version = "2.5.1" 613 + source = "registry+https://github.com/rust-lang/crates.io-index" 614 + checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 615 + dependencies = [ 616 + "alloc-no-stdlib", 617 + "alloc-stdlib", 298 618 ] 299 619 300 620 [[package]] ··· 308 628 ] 309 629 310 630 [[package]] 631 + name = "buf_redux" 632 + version = "0.8.4" 633 + source = "registry+https://github.com/rust-lang/crates.io-index" 634 + checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f" 635 + dependencies = [ 636 + "memchr", 637 + "safemem", 638 + ] 639 + 640 + [[package]] 641 + name = "built" 642 + version = "0.8.0" 643 + source = "registry+https://github.com/rust-lang/crates.io-index" 644 + checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64" 645 + 646 + [[package]] 311 647 name = "bumpalo" 312 648 version = "3.20.2" 313 649 source = "registry+https://github.com/rust-lang/crates.io-index" 314 650 checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" 315 651 316 652 [[package]] 653 + name = "byte-unit" 654 + version = "5.2.0" 655 + source = "registry+https://github.com/rust-lang/crates.io-index" 656 + checksum = "8c6d47a4e2961fb8721bcfc54feae6455f2f64e7054f9bc67e875f0e77f4c58d" 657 + dependencies = [ 658 + "rust_decimal", 659 + "schemars 1.2.1", 660 + "serde", 661 + "utf8-width", 662 + ] 663 + 664 + [[package]] 665 + name = "bytecheck" 666 + version = "0.6.12" 667 + source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 669 + dependencies = [ 670 + "bytecheck_derive", 671 + "ptr_meta", 672 + "simdutf8", 673 + ] 674 + 675 + [[package]] 676 + name = "bytecheck_derive" 677 + version = "0.6.12" 678 + source = "registry+https://github.com/rust-lang/crates.io-index" 679 + checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 680 + dependencies = [ 681 + "proc-macro2", 682 + "quote", 683 + "syn 1.0.109", 684 + ] 685 + 686 + [[package]] 317 687 name = "bytemuck" 318 688 version = "1.25.0" 319 689 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 324 694 version = "1.5.0" 325 695 source = "registry+https://github.com/rust-lang/crates.io-index" 326 696 checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 697 + 698 + [[package]] 699 + name = "byteorder-lite" 700 + version = "0.1.0" 701 + source = "registry+https://github.com/rust-lang/crates.io-index" 702 + checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 327 703 328 704 [[package]] 329 705 name = "bytes" ··· 402 778 ] 403 779 404 780 [[package]] 781 + name = "castaway" 782 + version = "0.2.4" 783 + source = "registry+https://github.com/rust-lang/crates.io-index" 784 + checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a" 785 + dependencies = [ 786 + "rustversion", 787 + ] 788 + 789 + [[package]] 790 + name = "cbor4ii" 791 + version = "0.2.14" 792 + source = "registry+https://github.com/rust-lang/crates.io-index" 793 + checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 794 + dependencies = [ 795 + "serde", 796 + ] 797 + 798 + [[package]] 405 799 name = "cc" 406 800 version = "1.2.58" 407 801 source = "registry+https://github.com/rust-lang/crates.io-index" 408 802 checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1" 409 803 dependencies = [ 410 804 "find-msvc-tools", 805 + "jobserver", 806 + "libc", 411 807 "shlex", 412 808 ] 413 809 ··· 445 841 checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 446 842 447 843 [[package]] 844 + name = "cfg_aliases" 845 + version = "0.2.1" 846 + source = "registry+https://github.com/rust-lang/crates.io-index" 847 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 848 + 849 + [[package]] 448 850 name = "chrono" 449 851 version = "0.4.44" 450 852 source = "registry+https://github.com/rust-lang/crates.io-index" 451 853 checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" 452 854 dependencies = [ 453 855 "iana-time-zone", 856 + "js-sys", 454 857 "num-traits", 455 858 "serde", 859 + "wasm-bindgen", 456 860 "windows-link 0.2.1", 457 861 ] 458 862 459 863 [[package]] 864 + name = "chunked_transfer" 865 + version = "1.5.0" 866 + source = "registry+https://github.com/rust-lang/crates.io-index" 867 + checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901" 868 + 869 + [[package]] 870 + name = "ciborium" 871 + version = "0.2.2" 872 + source = "registry+https://github.com/rust-lang/crates.io-index" 873 + checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 874 + dependencies = [ 875 + "ciborium-io", 876 + "ciborium-ll", 877 + "serde", 878 + ] 879 + 880 + [[package]] 881 + name = "ciborium-io" 882 + version = "0.2.2" 883 + source = "registry+https://github.com/rust-lang/crates.io-index" 884 + checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 885 + 886 + [[package]] 887 + name = "ciborium-ll" 888 + version = "0.2.2" 889 + source = "registry+https://github.com/rust-lang/crates.io-index" 890 + checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 891 + dependencies = [ 892 + "ciborium-io", 893 + "half", 894 + ] 895 + 896 + [[package]] 897 + name = "cid" 898 + version = "0.11.1" 899 + source = "registry+https://github.com/rust-lang/crates.io-index" 900 + checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 901 + dependencies = [ 902 + "core2", 903 + "multibase", 904 + "multihash", 905 + "serde", 906 + "serde_bytes", 907 + "unsigned-varint", 908 + ] 909 + 910 + [[package]] 911 + name = "cobs" 912 + version = "0.3.0" 913 + source = "registry+https://github.com/rust-lang/crates.io-index" 914 + checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 915 + dependencies = [ 916 + "thiserror 2.0.18", 917 + ] 918 + 919 + [[package]] 920 + name = "color_quant" 921 + version = "1.1.0" 922 + source = "registry+https://github.com/rust-lang/crates.io-index" 923 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 924 + 925 + [[package]] 460 926 name = "combine" 461 927 version = "4.6.7" 462 928 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 467 933 ] 468 934 469 935 [[package]] 936 + name = "compact_str" 937 + version = "0.9.0" 938 + source = "registry+https://github.com/rust-lang/crates.io-index" 939 + checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a" 940 + dependencies = [ 941 + "castaway", 942 + "cfg-if", 943 + "itoa", 944 + "rustversion", 945 + "ryu", 946 + "serde", 947 + "static_assertions", 948 + ] 949 + 950 + [[package]] 951 + name = "compression-codecs" 952 + version = "0.4.37" 953 + source = "registry+https://github.com/rust-lang/crates.io-index" 954 + checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7" 955 + dependencies = [ 956 + "compression-core", 957 + "flate2", 958 + "memchr", 959 + ] 960 + 961 + [[package]] 962 + name = "compression-core" 963 + version = "0.4.31" 964 + source = "registry+https://github.com/rust-lang/crates.io-index" 965 + checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" 966 + 967 + [[package]] 470 968 name = "concurrent-queue" 471 969 version = "2.5.0" 472 970 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 476 974 ] 477 975 478 976 [[package]] 977 + name = "console" 978 + version = "0.15.11" 979 + source = "registry+https://github.com/rust-lang/crates.io-index" 980 + checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" 981 + dependencies = [ 982 + "encode_unicode", 983 + "libc", 984 + "once_cell", 985 + "unicode-width 0.2.2", 986 + "windows-sys 0.59.0", 987 + ] 988 + 989 + [[package]] 990 + name = "const-oid" 991 + version = "0.9.6" 992 + source = "registry+https://github.com/rust-lang/crates.io-index" 993 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 994 + 995 + [[package]] 996 + name = "const-random" 997 + version = "0.1.18" 998 + source = "registry+https://github.com/rust-lang/crates.io-index" 999 + checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 1000 + dependencies = [ 1001 + "const-random-macro", 1002 + ] 1003 + 1004 + [[package]] 1005 + name = "const-random-macro" 1006 + version = "0.1.16" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 1009 + dependencies = [ 1010 + "getrandom 0.2.17", 1011 + "once_cell", 1012 + "tiny-keccak", 1013 + ] 1014 + 1015 + [[package]] 1016 + name = "const-str" 1017 + version = "0.4.3" 1018 + source = "registry+https://github.com/rust-lang/crates.io-index" 1019 + checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 1020 + 1021 + [[package]] 479 1022 name = "convert_case" 480 1023 version = "0.4.0" 481 1024 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 492 1035 ] 493 1036 494 1037 [[package]] 1038 + name = "cordyceps" 1039 + version = "0.3.4" 1040 + source = "registry+https://github.com/rust-lang/crates.io-index" 1041 + checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 1042 + dependencies = [ 1043 + "loom", 1044 + "tracing", 1045 + ] 1046 + 1047 + [[package]] 1048 + name = "core-foundation" 1049 + version = "0.9.4" 1050 + source = "registry+https://github.com/rust-lang/crates.io-index" 1051 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1052 + dependencies = [ 1053 + "core-foundation-sys", 1054 + "libc", 1055 + ] 1056 + 1057 + [[package]] 495 1058 name = "core-foundation" 496 1059 version = "0.10.1" 497 1060 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 514 1077 checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97" 515 1078 dependencies = [ 516 1079 "bitflags 2.11.0", 517 - "core-foundation", 1080 + "core-foundation 0.10.1", 518 1081 "core-graphics-types", 519 - "foreign-types", 1082 + "foreign-types 0.5.0", 520 1083 "libc", 521 1084 ] 522 1085 ··· 527 1090 checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" 528 1091 dependencies = [ 529 1092 "bitflags 2.11.0", 530 - "core-foundation", 1093 + "core-foundation 0.10.1", 531 1094 "libc", 532 1095 ] 533 1096 534 1097 [[package]] 1098 + name = "core2" 1099 + version = "0.4.0" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 1102 + dependencies = [ 1103 + "memchr", 1104 + ] 1105 + 1106 + [[package]] 535 1107 name = "cpufeatures" 536 1108 version = "0.2.17" 537 1109 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 550 1122 ] 551 1123 552 1124 [[package]] 1125 + name = "critical-section" 1126 + version = "1.2.0" 1127 + source = "registry+https://github.com/rust-lang/crates.io-index" 1128 + checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 1129 + 1130 + [[package]] 553 1131 name = "crossbeam-channel" 554 1132 version = "0.5.15" 555 1133 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 559 1137 ] 560 1138 561 1139 [[package]] 1140 + name = "crossbeam-deque" 1141 + version = "0.8.6" 1142 + source = "registry+https://github.com/rust-lang/crates.io-index" 1143 + checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 1144 + dependencies = [ 1145 + "crossbeam-epoch", 1146 + "crossbeam-utils", 1147 + ] 1148 + 1149 + [[package]] 1150 + name = "crossbeam-epoch" 1151 + version = "0.9.18" 1152 + source = "registry+https://github.com/rust-lang/crates.io-index" 1153 + checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1154 + dependencies = [ 1155 + "crossbeam-utils", 1156 + ] 1157 + 1158 + [[package]] 562 1159 name = "crossbeam-utils" 563 1160 version = "0.8.21" 564 1161 source = "registry+https://github.com/rust-lang/crates.io-index" 565 1162 checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 1163 + 1164 + [[package]] 1165 + name = "crunchy" 1166 + version = "0.2.4" 1167 + source = "registry+https://github.com/rust-lang/crates.io-index" 1168 + checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 1169 + 1170 + [[package]] 1171 + name = "crypto-bigint" 1172 + version = "0.5.5" 1173 + source = "registry+https://github.com/rust-lang/crates.io-index" 1174 + checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1175 + dependencies = [ 1176 + "generic-array", 1177 + "rand_core 0.6.4", 1178 + "subtle", 1179 + "zeroize", 1180 + ] 566 1181 567 1182 [[package]] 568 1183 name = "crypto-common" ··· 625 1240 ] 626 1241 627 1242 [[package]] 1243 + name = "curve25519-dalek" 1244 + version = "4.1.3" 1245 + source = "registry+https://github.com/rust-lang/crates.io-index" 1246 + checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1247 + dependencies = [ 1248 + "cfg-if", 1249 + "cpufeatures", 1250 + "curve25519-dalek-derive", 1251 + "digest", 1252 + "fiat-crypto", 1253 + "rustc_version", 1254 + "subtle", 1255 + "zeroize", 1256 + ] 1257 + 1258 + [[package]] 1259 + name = "curve25519-dalek-derive" 1260 + version = "0.1.1" 1261 + source = "registry+https://github.com/rust-lang/crates.io-index" 1262 + checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1263 + dependencies = [ 1264 + "proc-macro2", 1265 + "quote", 1266 + "syn 2.0.117", 1267 + ] 1268 + 1269 + [[package]] 1270 + name = "darling" 1271 + version = "0.20.11" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 1274 + dependencies = [ 1275 + "darling_core 0.20.11", 1276 + "darling_macro 0.20.11", 1277 + ] 1278 + 1279 + [[package]] 628 1280 name = "darling" 629 1281 version = "0.23.0" 630 1282 source = "registry+https://github.com/rust-lang/crates.io-index" 631 1283 checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" 632 1284 dependencies = [ 633 - "darling_core", 634 - "darling_macro", 1285 + "darling_core 0.23.0", 1286 + "darling_macro 0.23.0", 1287 + ] 1288 + 1289 + [[package]] 1290 + name = "darling_core" 1291 + version = "0.20.11" 1292 + source = "registry+https://github.com/rust-lang/crates.io-index" 1293 + checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 1294 + dependencies = [ 1295 + "fnv", 1296 + "ident_case", 1297 + "proc-macro2", 1298 + "quote", 1299 + "strsim", 1300 + "syn 2.0.117", 635 1301 ] 636 1302 637 1303 [[package]] ··· 649 1315 650 1316 [[package]] 651 1317 name = "darling_macro" 1318 + version = "0.20.11" 1319 + source = "registry+https://github.com/rust-lang/crates.io-index" 1320 + checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 1321 + dependencies = [ 1322 + "darling_core 0.20.11", 1323 + "quote", 1324 + "syn 2.0.117", 1325 + ] 1326 + 1327 + [[package]] 1328 + name = "darling_macro" 652 1329 version = "0.23.0" 653 1330 source = "registry+https://github.com/rust-lang/crates.io-index" 654 1331 checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" 655 1332 dependencies = [ 656 - "darling_core", 1333 + "darling_core 0.23.0", 657 1334 "quote", 658 1335 "syn 2.0.117", 659 1336 ] 660 1337 661 1338 [[package]] 1339 + name = "dary_heap" 1340 + version = "0.3.8" 1341 + source = "registry+https://github.com/rust-lang/crates.io-index" 1342 + checksum = "06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04" 1343 + dependencies = [ 1344 + "serde", 1345 + ] 1346 + 1347 + [[package]] 1348 + name = "dashmap" 1349 + version = "6.1.0" 1350 + source = "registry+https://github.com/rust-lang/crates.io-index" 1351 + checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 1352 + dependencies = [ 1353 + "cfg-if", 1354 + "crossbeam-utils", 1355 + "hashbrown 0.14.5", 1356 + "lock_api", 1357 + "once_cell", 1358 + "parking_lot_core", 1359 + ] 1360 + 1361 + [[package]] 1362 + name = "data-encoding" 1363 + version = "2.10.0" 1364 + source = "registry+https://github.com/rust-lang/crates.io-index" 1365 + checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" 1366 + 1367 + [[package]] 1368 + name = "data-encoding-macro" 1369 + version = "0.1.19" 1370 + source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb" 1372 + dependencies = [ 1373 + "data-encoding", 1374 + "data-encoding-macro-internal", 1375 + ] 1376 + 1377 + [[package]] 1378 + name = "data-encoding-macro-internal" 1379 + version = "0.1.17" 1380 + source = "registry+https://github.com/rust-lang/crates.io-index" 1381 + checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de" 1382 + dependencies = [ 1383 + "data-encoding", 1384 + "syn 2.0.117", 1385 + ] 1386 + 1387 + [[package]] 1388 + name = "deflate" 1389 + version = "1.0.0" 1390 + source = "registry+https://github.com/rust-lang/crates.io-index" 1391 + checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f" 1392 + dependencies = [ 1393 + "adler32", 1394 + "gzip-header", 1395 + ] 1396 + 1397 + [[package]] 1398 + name = "der" 1399 + version = "0.7.10" 1400 + source = "registry+https://github.com/rust-lang/crates.io-index" 1401 + checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1402 + dependencies = [ 1403 + "const-oid", 1404 + "pem-rfc7468 0.7.0", 1405 + "zeroize", 1406 + ] 1407 + 1408 + [[package]] 1409 + name = "der" 1410 + version = "0.8.0" 1411 + source = "registry+https://github.com/rust-lang/crates.io-index" 1412 + checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b" 1413 + dependencies = [ 1414 + "pem-rfc7468 1.0.0", 1415 + "zeroize", 1416 + ] 1417 + 1418 + [[package]] 662 1419 name = "deranged" 663 1420 version = "0.5.8" 664 1421 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 669 1426 ] 670 1427 671 1428 [[package]] 1429 + name = "derive_arbitrary" 1430 + version = "1.4.2" 1431 + source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" 1433 + dependencies = [ 1434 + "proc-macro2", 1435 + "quote", 1436 + "syn 2.0.117", 1437 + ] 1438 + 1439 + [[package]] 1440 + name = "derive_builder" 1441 + version = "0.20.2" 1442 + source = "registry+https://github.com/rust-lang/crates.io-index" 1443 + checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" 1444 + dependencies = [ 1445 + "derive_builder_macro", 1446 + ] 1447 + 1448 + [[package]] 1449 + name = "derive_builder_core" 1450 + version = "0.20.2" 1451 + source = "registry+https://github.com/rust-lang/crates.io-index" 1452 + checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" 1453 + dependencies = [ 1454 + "darling 0.20.11", 1455 + "proc-macro2", 1456 + "quote", 1457 + "syn 2.0.117", 1458 + ] 1459 + 1460 + [[package]] 1461 + name = "derive_builder_macro" 1462 + version = "0.20.2" 1463 + source = "registry+https://github.com/rust-lang/crates.io-index" 1464 + checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" 1465 + dependencies = [ 1466 + "derive_builder_core", 1467 + "syn 2.0.117", 1468 + ] 1469 + 1470 + [[package]] 672 1471 name = "derive_more" 673 1472 version = "0.99.20" 674 1473 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 679 1478 "quote", 680 1479 "rustc_version", 681 1480 "syn 2.0.117", 1481 + ] 1482 + 1483 + [[package]] 1484 + name = "derive_more" 1485 + version = "1.0.0" 1486 + source = "registry+https://github.com/rust-lang/crates.io-index" 1487 + checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 1488 + dependencies = [ 1489 + "derive_more-impl 1.0.0", 682 1490 ] 683 1491 684 1492 [[package]] ··· 687 1495 source = "registry+https://github.com/rust-lang/crates.io-index" 688 1496 checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" 689 1497 dependencies = [ 690 - "derive_more-impl", 1498 + "derive_more-impl 2.1.1", 1499 + ] 1500 + 1501 + [[package]] 1502 + name = "derive_more-impl" 1503 + version = "1.0.0" 1504 + source = "registry+https://github.com/rust-lang/crates.io-index" 1505 + checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 1506 + dependencies = [ 1507 + "proc-macro2", 1508 + "quote", 1509 + "syn 2.0.117", 1510 + "unicode-xid", 691 1511 ] 692 1512 693 1513 [[package]] ··· 703 1523 ] 704 1524 705 1525 [[package]] 1526 + name = "diatomic-waker" 1527 + version = "0.2.3" 1528 + source = "registry+https://github.com/rust-lang/crates.io-index" 1529 + checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 1530 + 1531 + [[package]] 706 1532 name = "digest" 707 1533 version = "0.10.7" 708 1534 source = "registry+https://github.com/rust-lang/crates.io-index" 709 1535 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 710 1536 dependencies = [ 711 1537 "block-buffer", 1538 + "const-oid", 712 1539 "crypto-common", 1540 + "subtle", 713 1541 ] 714 1542 715 1543 [[package]] ··· 780 1608 ] 781 1609 782 1610 [[package]] 1611 + name = "dlv-list" 1612 + version = "0.5.2" 1613 + source = "registry+https://github.com/rust-lang/crates.io-index" 1614 + checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" 1615 + dependencies = [ 1616 + "const-random", 1617 + ] 1618 + 1619 + [[package]] 783 1620 name = "dom_query" 784 1621 version = "0.27.0" 785 1622 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 831 1668 checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 832 1669 833 1670 [[package]] 1671 + name = "ecdsa" 1672 + version = "0.16.9" 1673 + source = "registry+https://github.com/rust-lang/crates.io-index" 1674 + checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1675 + dependencies = [ 1676 + "der 0.7.10", 1677 + "digest", 1678 + "elliptic-curve", 1679 + "rfc6979", 1680 + "signature", 1681 + "spki", 1682 + ] 1683 + 1684 + [[package]] 1685 + name = "ed25519" 1686 + version = "2.2.3" 1687 + source = "registry+https://github.com/rust-lang/crates.io-index" 1688 + checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 1689 + dependencies = [ 1690 + "pkcs8", 1691 + "signature", 1692 + ] 1693 + 1694 + [[package]] 1695 + name = "ed25519-dalek" 1696 + version = "2.2.0" 1697 + source = "registry+https://github.com/rust-lang/crates.io-index" 1698 + checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" 1699 + dependencies = [ 1700 + "curve25519-dalek", 1701 + "ed25519", 1702 + "rand_core 0.6.4", 1703 + "serde", 1704 + "sha2", 1705 + "subtle", 1706 + "zeroize", 1707 + ] 1708 + 1709 + [[package]] 1710 + name = "either" 1711 + version = "1.15.0" 1712 + source = "registry+https://github.com/rust-lang/crates.io-index" 1713 + checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1714 + 1715 + [[package]] 1716 + name = "elliptic-curve" 1717 + version = "0.13.8" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1720 + dependencies = [ 1721 + "base16ct", 1722 + "crypto-bigint", 1723 + "digest", 1724 + "ff", 1725 + "generic-array", 1726 + "group", 1727 + "hkdf", 1728 + "pem-rfc7468 0.7.0", 1729 + "pkcs8", 1730 + "rand_core 0.6.4", 1731 + "sec1", 1732 + "subtle", 1733 + "zeroize", 1734 + ] 1735 + 1736 + [[package]] 834 1737 name = "embed-resource" 835 1738 version = "3.0.8" 836 1739 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 851 1754 checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 852 1755 853 1756 [[package]] 1757 + name = "embedded-io" 1758 + version = "0.4.0" 1759 + source = "registry+https://github.com/rust-lang/crates.io-index" 1760 + checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 1761 + 1762 + [[package]] 1763 + name = "embedded-io" 1764 + version = "0.6.1" 1765 + source = "registry+https://github.com/rust-lang/crates.io-index" 1766 + checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 1767 + 1768 + [[package]] 1769 + name = "encode_unicode" 1770 + version = "1.0.0" 1771 + source = "registry+https://github.com/rust-lang/crates.io-index" 1772 + checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 1773 + 1774 + [[package]] 1775 + name = "encoding_rs" 1776 + version = "0.8.35" 1777 + source = "registry+https://github.com/rust-lang/crates.io-index" 1778 + checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1779 + dependencies = [ 1780 + "cfg-if", 1781 + ] 1782 + 1783 + [[package]] 854 1784 name = "endi" 855 1785 version = "1.1.1" 856 1786 source = "registry+https://github.com/rust-lang/crates.io-index" 857 1787 checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099" 858 1788 859 1789 [[package]] 1790 + name = "enum-as-inner" 1791 + version = "0.6.1" 1792 + source = "registry+https://github.com/rust-lang/crates.io-index" 1793 + checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 1794 + dependencies = [ 1795 + "heck 0.5.0", 1796 + "proc-macro2", 1797 + "quote", 1798 + "syn 2.0.117", 1799 + ] 1800 + 1801 + [[package]] 860 1802 name = "enumflags2" 861 1803 version = "0.7.12" 862 1804 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 878 1820 ] 879 1821 880 1822 [[package]] 1823 + name = "env_filter" 1824 + version = "0.1.4" 1825 + source = "registry+https://github.com/rust-lang/crates.io-index" 1826 + checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" 1827 + dependencies = [ 1828 + "log", 1829 + "regex", 1830 + ] 1831 + 1832 + [[package]] 1833 + name = "equator" 1834 + version = "0.4.2" 1835 + source = "registry+https://github.com/rust-lang/crates.io-index" 1836 + checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" 1837 + dependencies = [ 1838 + "equator-macro", 1839 + ] 1840 + 1841 + [[package]] 1842 + name = "equator-macro" 1843 + version = "0.4.2" 1844 + source = "registry+https://github.com/rust-lang/crates.io-index" 1845 + checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" 1846 + dependencies = [ 1847 + "proc-macro2", 1848 + "quote", 1849 + "syn 2.0.117", 1850 + ] 1851 + 1852 + [[package]] 881 1853 name = "equivalent" 882 1854 version = "1.0.2" 883 1855 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 905 1877 ] 906 1878 907 1879 [[package]] 1880 + name = "esaxx-rs" 1881 + version = "0.1.10" 1882 + source = "registry+https://github.com/rust-lang/crates.io-index" 1883 + checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6" 1884 + 1885 + [[package]] 908 1886 name = "event-listener" 909 1887 version = "5.4.1" 910 1888 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 926 1904 ] 927 1905 928 1906 [[package]] 1907 + name = "exr" 1908 + version = "1.74.0" 1909 + source = "registry+https://github.com/rust-lang/crates.io-index" 1910 + checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be" 1911 + dependencies = [ 1912 + "bit_field", 1913 + "half", 1914 + "lebe", 1915 + "miniz_oxide", 1916 + "rayon-core", 1917 + "smallvec", 1918 + "zune-inflate", 1919 + ] 1920 + 1921 + [[package]] 1922 + name = "fallible-iterator" 1923 + version = "0.3.0" 1924 + source = "registry+https://github.com/rust-lang/crates.io-index" 1925 + checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 1926 + 1927 + [[package]] 1928 + name = "fallible-streaming-iterator" 1929 + version = "0.1.9" 1930 + source = "registry+https://github.com/rust-lang/crates.io-index" 1931 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1932 + 1933 + [[package]] 1934 + name = "fastembed" 1935 + version = "5.13.0" 1936 + source = "registry+https://github.com/rust-lang/crates.io-index" 1937 + checksum = "3688aa7e02113db24e0f83aba1edee912f36f515b52cffc9b3c550bbfc3eab87" 1938 + dependencies = [ 1939 + "anyhow", 1940 + "hf-hub", 1941 + "image", 1942 + "ndarray", 1943 + "ort", 1944 + "safetensors", 1945 + "serde", 1946 + "serde_json", 1947 + "tokenizers", 1948 + ] 1949 + 1950 + [[package]] 929 1951 name = "fastrand" 930 1952 version = "2.3.0" 931 1953 source = "registry+https://github.com/rust-lang/crates.io-index" 932 1954 checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 933 1955 934 1956 [[package]] 1957 + name = "fax" 1958 + version = "0.2.6" 1959 + source = "registry+https://github.com/rust-lang/crates.io-index" 1960 + checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab" 1961 + dependencies = [ 1962 + "fax_derive", 1963 + ] 1964 + 1965 + [[package]] 1966 + name = "fax_derive" 1967 + version = "0.2.0" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d" 1970 + dependencies = [ 1971 + "proc-macro2", 1972 + "quote", 1973 + "syn 2.0.117", 1974 + ] 1975 + 1976 + [[package]] 935 1977 name = "fdeflate" 936 1978 version = "0.3.7" 937 1979 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 941 1983 ] 942 1984 943 1985 [[package]] 1986 + name = "fern" 1987 + version = "0.7.1" 1988 + source = "registry+https://github.com/rust-lang/crates.io-index" 1989 + checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29" 1990 + dependencies = [ 1991 + "log", 1992 + ] 1993 + 1994 + [[package]] 1995 + name = "ff" 1996 + version = "0.13.1" 1997 + source = "registry+https://github.com/rust-lang/crates.io-index" 1998 + checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 1999 + dependencies = [ 2000 + "rand_core 0.6.4", 2001 + "subtle", 2002 + ] 2003 + 2004 + [[package]] 2005 + name = "fiat-crypto" 2006 + version = "0.2.9" 2007 + source = "registry+https://github.com/rust-lang/crates.io-index" 2008 + checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 2009 + 2010 + [[package]] 944 2011 name = "field-offset" 945 2012 version = "0.3.6" 946 2013 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 951 2018 ] 952 2019 953 2020 [[package]] 2021 + name = "filetime" 2022 + version = "0.2.27" 2023 + source = "registry+https://github.com/rust-lang/crates.io-index" 2024 + checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" 2025 + dependencies = [ 2026 + "cfg-if", 2027 + "libc", 2028 + "libredox", 2029 + ] 2030 + 2031 + [[package]] 954 2032 name = "find-msvc-tools" 955 2033 version = "0.1.9" 956 2034 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 967 2045 ] 968 2046 969 2047 [[package]] 2048 + name = "fluent-uri" 2049 + version = "0.4.1" 2050 + source = "registry+https://github.com/rust-lang/crates.io-index" 2051 + checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e" 2052 + dependencies = [ 2053 + "borrow-or-share", 2054 + "ref-cast", 2055 + "serde", 2056 + ] 2057 + 2058 + [[package]] 970 2059 name = "fnv" 971 2060 version = "1.0.7" 972 2061 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 986 2075 987 2076 [[package]] 988 2077 name = "foreign-types" 2078 + version = "0.3.2" 2079 + source = "registry+https://github.com/rust-lang/crates.io-index" 2080 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 2081 + dependencies = [ 2082 + "foreign-types-shared 0.1.1", 2083 + ] 2084 + 2085 + [[package]] 2086 + name = "foreign-types" 989 2087 version = "0.5.0" 990 2088 source = "registry+https://github.com/rust-lang/crates.io-index" 991 2089 checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 992 2090 dependencies = [ 993 2091 "foreign-types-macros", 994 - "foreign-types-shared", 2092 + "foreign-types-shared 0.3.1", 995 2093 ] 996 2094 997 2095 [[package]] ··· 1007 2105 1008 2106 [[package]] 1009 2107 name = "foreign-types-shared" 2108 + version = "0.1.1" 2109 + source = "registry+https://github.com/rust-lang/crates.io-index" 2110 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 2111 + 2112 + [[package]] 2113 + name = "foreign-types-shared" 1010 2114 version = "0.3.1" 1011 2115 source = "registry+https://github.com/rust-lang/crates.io-index" 1012 2116 checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" ··· 1021 2125 ] 1022 2126 1023 2127 [[package]] 2128 + name = "funty" 2129 + version = "2.0.0" 2130 + source = "registry+https://github.com/rust-lang/crates.io-index" 2131 + checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 2132 + 2133 + [[package]] 1024 2134 name = "futf" 1025 2135 version = "0.1.5" 1026 2136 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1031 2141 ] 1032 2142 1033 2143 [[package]] 2144 + name = "futures-buffered" 2145 + version = "0.2.13" 2146 + source = "registry+https://github.com/rust-lang/crates.io-index" 2147 + checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5" 2148 + dependencies = [ 2149 + "cordyceps", 2150 + "diatomic-waker", 2151 + "futures-core", 2152 + "pin-project-lite", 2153 + "spin 0.10.0", 2154 + ] 2155 + 2156 + [[package]] 1034 2157 name = "futures-channel" 1035 2158 version = "0.3.32" 1036 2159 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1223 2346 ] 1224 2347 1225 2348 [[package]] 2349 + name = "generator" 2350 + version = "0.8.8" 2351 + source = "registry+https://github.com/rust-lang/crates.io-index" 2352 + checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9" 2353 + dependencies = [ 2354 + "cc", 2355 + "cfg-if", 2356 + "libc", 2357 + "log", 2358 + "rustversion", 2359 + "windows-link 0.2.1", 2360 + "windows-result 0.4.1", 2361 + ] 2362 + 2363 + [[package]] 1226 2364 name = "generic-array" 1227 2365 version = "0.14.7" 1228 2366 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1230 2368 dependencies = [ 1231 2369 "typenum", 1232 2370 "version_check", 2371 + "zeroize", 1233 2372 ] 1234 2373 1235 2374 [[package]] ··· 1250 2389 checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1251 2390 dependencies = [ 1252 2391 "cfg-if", 2392 + "js-sys", 1253 2393 "libc", 1254 2394 "wasi 0.11.1+wasi-snapshot-preview1", 2395 + "wasm-bindgen", 1255 2396 ] 1256 2397 1257 2398 [[package]] ··· 1261 2402 checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1262 2403 dependencies = [ 1263 2404 "cfg-if", 2405 + "js-sys", 1264 2406 "libc", 1265 2407 "r-efi 5.3.0", 1266 2408 "wasip2", 2409 + "wasm-bindgen", 1267 2410 ] 1268 2411 1269 2412 [[package]] ··· 1277 2420 "r-efi 6.0.0", 1278 2421 "wasip2", 1279 2422 "wasip3", 2423 + ] 2424 + 2425 + [[package]] 2426 + name = "gif" 2427 + version = "0.14.1" 2428 + source = "registry+https://github.com/rust-lang/crates.io-index" 2429 + checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e" 2430 + dependencies = [ 2431 + "color_quant", 2432 + "weezl", 1280 2433 ] 1281 2434 1282 2435 [[package]] ··· 1365 2518 checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 1366 2519 1367 2520 [[package]] 2521 + name = "gloo-storage" 2522 + version = "0.3.0" 2523 + source = "registry+https://github.com/rust-lang/crates.io-index" 2524 + checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a" 2525 + dependencies = [ 2526 + "gloo-utils", 2527 + "js-sys", 2528 + "serde", 2529 + "serde_json", 2530 + "thiserror 1.0.69", 2531 + "wasm-bindgen", 2532 + "web-sys", 2533 + ] 2534 + 2535 + [[package]] 2536 + name = "gloo-utils" 2537 + version = "0.2.0" 2538 + source = "registry+https://github.com/rust-lang/crates.io-index" 2539 + checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" 2540 + dependencies = [ 2541 + "js-sys", 2542 + "serde", 2543 + "serde_json", 2544 + "wasm-bindgen", 2545 + "web-sys", 2546 + ] 2547 + 2548 + [[package]] 1368 2549 name = "gobject-sys" 1369 2550 version = "0.18.0" 1370 2551 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1376 2557 ] 1377 2558 1378 2559 [[package]] 2560 + name = "group" 2561 + version = "0.13.0" 2562 + source = "registry+https://github.com/rust-lang/crates.io-index" 2563 + checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2564 + dependencies = [ 2565 + "ff", 2566 + "rand_core 0.6.4", 2567 + "subtle", 2568 + ] 2569 + 2570 + [[package]] 1379 2571 name = "gtk" 1380 2572 version = "0.18.2" 1381 2573 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1428 2620 ] 1429 2621 1430 2622 [[package]] 2623 + name = "gzip-header" 2624 + version = "1.0.0" 2625 + source = "registry+https://github.com/rust-lang/crates.io-index" 2626 + checksum = "95cc527b92e6029a62960ad99aa8a6660faa4555fe5f731aab13aa6a921795a2" 2627 + dependencies = [ 2628 + "crc32fast", 2629 + ] 2630 + 2631 + [[package]] 2632 + name = "h2" 2633 + version = "0.4.13" 2634 + source = "registry+https://github.com/rust-lang/crates.io-index" 2635 + checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" 2636 + dependencies = [ 2637 + "atomic-waker", 2638 + "bytes", 2639 + "fnv", 2640 + "futures-core", 2641 + "futures-sink", 2642 + "http", 2643 + "indexmap 2.13.0", 2644 + "slab", 2645 + "tokio", 2646 + "tokio-util", 2647 + "tracing", 2648 + ] 2649 + 2650 + [[package]] 2651 + name = "half" 2652 + version = "2.7.1" 2653 + source = "registry+https://github.com/rust-lang/crates.io-index" 2654 + checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 2655 + dependencies = [ 2656 + "cfg-if", 2657 + "crunchy", 2658 + "zerocopy", 2659 + ] 2660 + 2661 + [[package]] 2662 + name = "hash32" 2663 + version = "0.2.1" 2664 + source = "registry+https://github.com/rust-lang/crates.io-index" 2665 + checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 2666 + dependencies = [ 2667 + "byteorder", 2668 + ] 2669 + 2670 + [[package]] 1431 2671 name = "hashbrown" 1432 2672 version = "0.12.3" 1433 2673 source = "registry+https://github.com/rust-lang/crates.io-index" 1434 2674 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2675 + dependencies = [ 2676 + "ahash 0.7.8", 2677 + ] 2678 + 2679 + [[package]] 2680 + name = "hashbrown" 2681 + version = "0.14.5" 2682 + source = "registry+https://github.com/rust-lang/crates.io-index" 2683 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1435 2684 1436 2685 [[package]] 1437 2686 name = "hashbrown" ··· 1439 2688 source = "registry+https://github.com/rust-lang/crates.io-index" 1440 2689 checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1441 2690 dependencies = [ 2691 + "allocator-api2", 2692 + "equivalent", 1442 2693 "foldhash 0.1.5", 1443 2694 ] 1444 2695 ··· 1447 2698 version = "0.16.1" 1448 2699 source = "registry+https://github.com/rust-lang/crates.io-index" 1449 2700 checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 2701 + dependencies = [ 2702 + "allocator-api2", 2703 + "equivalent", 2704 + "foldhash 0.2.0", 2705 + "serde", 2706 + "serde_core", 2707 + ] 2708 + 2709 + [[package]] 2710 + name = "hashlink" 2711 + version = "0.11.0" 2712 + source = "registry+https://github.com/rust-lang/crates.io-index" 2713 + checksum = "ea0b22561a9c04a7cb1a302c013e0259cd3b4bb619f145b32f72b8b4bcbed230" 2714 + dependencies = [ 2715 + "hashbrown 0.16.1", 2716 + ] 2717 + 2718 + [[package]] 2719 + name = "heapless" 2720 + version = "0.7.17" 2721 + source = "registry+https://github.com/rust-lang/crates.io-index" 2722 + checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 2723 + dependencies = [ 2724 + "atomic-polyfill", 2725 + "hash32", 2726 + "rustc_version", 2727 + "serde", 2728 + "spin 0.9.8", 2729 + "stable_deref_trait", 2730 + ] 1450 2731 1451 2732 [[package]] 1452 2733 name = "heck" ··· 1473 2754 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1474 2755 1475 2756 [[package]] 2757 + name = "hf-hub" 2758 + version = "0.4.3" 2759 + source = "registry+https://github.com/rust-lang/crates.io-index" 2760 + checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97" 2761 + dependencies = [ 2762 + "dirs", 2763 + "http", 2764 + "indicatif", 2765 + "libc", 2766 + "log", 2767 + "native-tls", 2768 + "rand 0.9.2", 2769 + "reqwest 0.12.28", 2770 + "serde", 2771 + "serde_json", 2772 + "thiserror 2.0.18", 2773 + "ureq 2.12.1", 2774 + "windows-sys 0.60.2", 2775 + ] 2776 + 2777 + [[package]] 2778 + name = "hickory-proto" 2779 + version = "0.24.4" 2780 + source = "registry+https://github.com/rust-lang/crates.io-index" 2781 + checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" 2782 + dependencies = [ 2783 + "async-trait", 2784 + "cfg-if", 2785 + "data-encoding", 2786 + "enum-as-inner", 2787 + "futures-channel", 2788 + "futures-io", 2789 + "futures-util", 2790 + "idna", 2791 + "ipnet", 2792 + "once_cell", 2793 + "rand 0.8.5", 2794 + "thiserror 1.0.69", 2795 + "tinyvec", 2796 + "tokio", 2797 + "tracing", 2798 + "url", 2799 + ] 2800 + 2801 + [[package]] 2802 + name = "hickory-resolver" 2803 + version = "0.24.4" 2804 + source = "registry+https://github.com/rust-lang/crates.io-index" 2805 + checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" 2806 + dependencies = [ 2807 + "cfg-if", 2808 + "futures-util", 2809 + "hickory-proto", 2810 + "ipconfig", 2811 + "lru-cache", 2812 + "once_cell", 2813 + "parking_lot", 2814 + "rand 0.8.5", 2815 + "resolv-conf", 2816 + "smallvec", 2817 + "thiserror 1.0.69", 2818 + "tokio", 2819 + "tracing", 2820 + ] 2821 + 2822 + [[package]] 2823 + name = "hkdf" 2824 + version = "0.12.4" 2825 + source = "registry+https://github.com/rust-lang/crates.io-index" 2826 + checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2827 + dependencies = [ 2828 + "hmac", 2829 + ] 2830 + 2831 + [[package]] 2832 + name = "hmac" 2833 + version = "0.12.1" 2834 + source = "registry+https://github.com/rust-lang/crates.io-index" 2835 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2836 + dependencies = [ 2837 + "digest", 2838 + ] 2839 + 2840 + [[package]] 2841 + name = "hmac-sha256" 2842 + version = "1.1.14" 2843 + source = "registry+https://github.com/rust-lang/crates.io-index" 2844 + checksum = "ec9d92d097f4749b64e8cc33d924d9f40a2d4eb91402b458014b781f5733d60f" 2845 + 2846 + [[package]] 2847 + name = "html5ever" 2848 + version = "0.27.0" 2849 + source = "registry+https://github.com/rust-lang/crates.io-index" 2850 + checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" 2851 + dependencies = [ 2852 + "log", 2853 + "mac", 2854 + "markup5ever 0.12.1", 2855 + "proc-macro2", 2856 + "quote", 2857 + "syn 2.0.117", 2858 + ] 2859 + 2860 + [[package]] 1476 2861 name = "html5ever" 1477 2862 version = "0.29.1" 1478 2863 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1534 2919 checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1535 2920 1536 2921 [[package]] 2922 + name = "httpdate" 2923 + version = "1.0.3" 2924 + source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2926 + 2927 + [[package]] 1537 2928 name = "hyper" 1538 2929 version = "1.8.1" 1539 2930 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1543 2934 "bytes", 1544 2935 "futures-channel", 1545 2936 "futures-core", 2937 + "h2", 1546 2938 "http", 1547 2939 "http-body", 1548 2940 "httparse", ··· 1555 2947 ] 1556 2948 1557 2949 [[package]] 2950 + name = "hyper-rustls" 2951 + version = "0.27.7" 2952 + source = "registry+https://github.com/rust-lang/crates.io-index" 2953 + checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 2954 + dependencies = [ 2955 + "http", 2956 + "hyper", 2957 + "hyper-util", 2958 + "rustls", 2959 + "rustls-pki-types", 2960 + "tokio", 2961 + "tokio-rustls", 2962 + "tower-service", 2963 + "webpki-roots 1.0.6", 2964 + ] 2965 + 2966 + [[package]] 2967 + name = "hyper-tls" 2968 + version = "0.6.0" 2969 + source = "registry+https://github.com/rust-lang/crates.io-index" 2970 + checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 2971 + dependencies = [ 2972 + "bytes", 2973 + "http-body-util", 2974 + "hyper", 2975 + "hyper-util", 2976 + "native-tls", 2977 + "tokio", 2978 + "tokio-native-tls", 2979 + "tower-service", 2980 + ] 2981 + 2982 + [[package]] 1558 2983 name = "hyper-util" 1559 2984 version = "0.1.20" 1560 2985 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1572 2997 "percent-encoding", 1573 2998 "pin-project-lite", 1574 2999 "socket2", 3000 + "system-configuration", 1575 3001 "tokio", 1576 3002 "tower-service", 1577 3003 "tracing", 3004 + "windows-registry 0.6.1", 1578 3005 ] 1579 3006 1580 3007 [[package]] ··· 1608 3035 checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371" 1609 3036 dependencies = [ 1610 3037 "byteorder", 1611 - "png", 3038 + "png 0.17.16", 1612 3039 ] 1613 3040 1614 3041 [[package]] ··· 1726 3153 ] 1727 3154 1728 3155 [[package]] 3156 + name = "image" 3157 + version = "0.25.10" 3158 + source = "registry+https://github.com/rust-lang/crates.io-index" 3159 + checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104" 3160 + dependencies = [ 3161 + "bytemuck", 3162 + "byteorder-lite", 3163 + "color_quant", 3164 + "exr", 3165 + "gif", 3166 + "image-webp", 3167 + "moxcms", 3168 + "num-traits", 3169 + "png 0.18.1", 3170 + "qoi", 3171 + "ravif", 3172 + "rayon", 3173 + "rgb", 3174 + "tiff", 3175 + "zune-core", 3176 + "zune-jpeg", 3177 + ] 3178 + 3179 + [[package]] 3180 + name = "image-webp" 3181 + version = "0.2.4" 3182 + source = "registry+https://github.com/rust-lang/crates.io-index" 3183 + checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" 3184 + dependencies = [ 3185 + "byteorder-lite", 3186 + "quick-error 2.0.1", 3187 + ] 3188 + 3189 + [[package]] 3190 + name = "imgref" 3191 + version = "1.12.0" 3192 + source = "registry+https://github.com/rust-lang/crates.io-index" 3193 + checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8" 3194 + 3195 + [[package]] 1729 3196 name = "indexmap" 1730 3197 version = "1.9.3" 1731 3198 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1749 3216 ] 1750 3217 1751 3218 [[package]] 3219 + name = "indicatif" 3220 + version = "0.17.11" 3221 + source = "registry+https://github.com/rust-lang/crates.io-index" 3222 + checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" 3223 + dependencies = [ 3224 + "console", 3225 + "number_prefix", 3226 + "portable-atomic", 3227 + "unicode-width 0.2.2", 3228 + "web-time", 3229 + ] 3230 + 3231 + [[package]] 1752 3232 name = "infer" 1753 3233 version = "0.19.0" 1754 3234 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1758 3238 ] 1759 3239 1760 3240 [[package]] 3241 + name = "interpolate_name" 3242 + version = "0.2.4" 3243 + source = "registry+https://github.com/rust-lang/crates.io-index" 3244 + checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" 3245 + dependencies = [ 3246 + "proc-macro2", 3247 + "quote", 3248 + "syn 2.0.117", 3249 + ] 3250 + 3251 + [[package]] 3252 + name = "inventory" 3253 + version = "0.3.23" 3254 + source = "registry+https://github.com/rust-lang/crates.io-index" 3255 + checksum = "8062b737e5389949f477d4760a2ebbff0c366f97798f2419b8d8f366363d3342" 3256 + dependencies = [ 3257 + "rustversion", 3258 + ] 3259 + 3260 + [[package]] 3261 + name = "ipconfig" 3262 + version = "0.3.4" 3263 + source = "registry+https://github.com/rust-lang/crates.io-index" 3264 + checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" 3265 + dependencies = [ 3266 + "socket2", 3267 + "widestring", 3268 + "windows-registry 0.6.1", 3269 + "windows-result 0.4.1", 3270 + "windows-sys 0.61.2", 3271 + ] 3272 + 3273 + [[package]] 3274 + name = "ipld-core" 3275 + version = "0.4.3" 3276 + source = "registry+https://github.com/rust-lang/crates.io-index" 3277 + checksum = "090f624976d72f0b0bb71b86d58dc16c15e069193067cb3a3a09d655246cbbda" 3278 + dependencies = [ 3279 + "cid", 3280 + "serde", 3281 + "serde_bytes", 3282 + ] 3283 + 3284 + [[package]] 1761 3285 name = "ipnet" 1762 3286 version = "2.12.0" 1763 3287 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1793 3317 ] 1794 3318 1795 3319 [[package]] 3320 + name = "itertools" 3321 + version = "0.14.0" 3322 + source = "registry+https://github.com/rust-lang/crates.io-index" 3323 + checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 3324 + dependencies = [ 3325 + "either", 3326 + ] 3327 + 3328 + [[package]] 1796 3329 name = "itoa" 1797 3330 version = "1.0.18" 1798 3331 source = "registry+https://github.com/rust-lang/crates.io-index" 1799 3332 checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 1800 3333 1801 3334 [[package]] 3335 + name = "jacquard" 3336 + version = "0.11.0" 3337 + source = "registry+https://github.com/rust-lang/crates.io-index" 3338 + checksum = "1e4bb22329646c06eb07eb63ae6d33320e8f52ae8b5a5444257f27c3d68d44ae" 3339 + dependencies = [ 3340 + "bytes", 3341 + "getrandom 0.2.17", 3342 + "gloo-storage", 3343 + "http", 3344 + "jacquard-api", 3345 + "jacquard-common", 3346 + "jacquard-derive", 3347 + "jacquard-identity", 3348 + "jacquard-oauth", 3349 + "jose-jwk", 3350 + "miette", 3351 + "regex", 3352 + "regex-lite", 3353 + "reqwest 0.12.28", 3354 + "serde", 3355 + "serde_html_form", 3356 + "serde_json", 3357 + "smol_str", 3358 + "thiserror 2.0.18", 3359 + "tokio", 3360 + "trait-variant", 3361 + "webpage", 3362 + ] 3363 + 3364 + [[package]] 3365 + name = "jacquard-api" 3366 + version = "0.11.1" 3367 + source = "registry+https://github.com/rust-lang/crates.io-index" 3368 + checksum = "f4bba022e9c632f737de481d7c894b5736dd1a503362876ca4da49b9255a7e61" 3369 + dependencies = [ 3370 + "jacquard-common", 3371 + "jacquard-derive", 3372 + "jacquard-lexicon", 3373 + "miette", 3374 + "serde", 3375 + "thiserror 2.0.18", 3376 + ] 3377 + 3378 + [[package]] 3379 + name = "jacquard-common" 3380 + version = "0.11.0" 3381 + source = "registry+https://github.com/rust-lang/crates.io-index" 3382 + checksum = "9631f08f1e65d19e204bc6774d00b4e0b69fb649d7d7ac59ccf97797bd9a196e" 3383 + dependencies = [ 3384 + "base64 0.22.1", 3385 + "bon", 3386 + "bytes", 3387 + "chrono", 3388 + "ciborium", 3389 + "ciborium-io", 3390 + "cid", 3391 + "fluent-uri", 3392 + "getrandom 0.2.17", 3393 + "getrandom 0.3.4", 3394 + "hashbrown 0.15.5", 3395 + "http", 3396 + "ipld-core", 3397 + "k256", 3398 + "maitake-sync", 3399 + "miette", 3400 + "multibase", 3401 + "multihash", 3402 + "ouroboros", 3403 + "oxilangtag", 3404 + "p256", 3405 + "phf 0.11.3", 3406 + "postcard", 3407 + "rand 0.9.2", 3408 + "regex", 3409 + "regex-automata", 3410 + "regex-lite", 3411 + "reqwest 0.12.28", 3412 + "rustversion", 3413 + "serde", 3414 + "serde_bytes", 3415 + "serde_html_form", 3416 + "serde_ipld_dagcbor", 3417 + "serde_json", 3418 + "signature", 3419 + "smol_str", 3420 + "spin 0.10.0", 3421 + "thiserror 2.0.18", 3422 + "tokio", 3423 + "tokio-util", 3424 + "trait-variant", 3425 + "unicode-segmentation", 3426 + ] 3427 + 3428 + [[package]] 3429 + name = "jacquard-derive" 3430 + version = "0.11.0" 3431 + source = "registry+https://github.com/rust-lang/crates.io-index" 3432 + checksum = "22904bd0f9a959591e14ee9e1dab91a9110209cb8b292930e584134f96a83ece" 3433 + dependencies = [ 3434 + "heck 0.5.0", 3435 + "jacquard-lexicon", 3436 + "proc-macro2", 3437 + "quote", 3438 + "syn 2.0.117", 3439 + ] 3440 + 3441 + [[package]] 3442 + name = "jacquard-identity" 3443 + version = "0.11.0" 3444 + source = "registry+https://github.com/rust-lang/crates.io-index" 3445 + checksum = "b84a9302ea9dd39c49d748a8eba21faf365570088571ff327ebb00117dbd65b8" 3446 + dependencies = [ 3447 + "bon", 3448 + "bytes", 3449 + "hickory-resolver", 3450 + "http", 3451 + "jacquard-common", 3452 + "jacquard-lexicon", 3453 + "miette", 3454 + "mini-moka-wasm", 3455 + "n0-future", 3456 + "reqwest 0.12.28", 3457 + "serde", 3458 + "serde_html_form", 3459 + "serde_json", 3460 + "thiserror 2.0.18", 3461 + "tokio", 3462 + "trait-variant", 3463 + ] 3464 + 3465 + [[package]] 3466 + name = "jacquard-lexicon" 3467 + version = "0.11.1" 3468 + source = "registry+https://github.com/rust-lang/crates.io-index" 3469 + checksum = "fd7863d4f56a49f07391b5f775e82be12e6381156642ee83574f481ca73e8b0e" 3470 + dependencies = [ 3471 + "cid", 3472 + "dashmap", 3473 + "heck 0.5.0", 3474 + "inventory", 3475 + "jacquard-common", 3476 + "miette", 3477 + "multihash", 3478 + "prettyplease", 3479 + "proc-macro2", 3480 + "quote", 3481 + "serde", 3482 + "serde_ipld_dagcbor", 3483 + "serde_json", 3484 + "serde_path_to_error", 3485 + "serde_repr", 3486 + "serde_with", 3487 + "sha2", 3488 + "syn 2.0.117", 3489 + "thiserror 2.0.18", 3490 + "unicode-segmentation", 3491 + ] 3492 + 3493 + [[package]] 3494 + name = "jacquard-oauth" 3495 + version = "0.11.0" 3496 + source = "registry+https://github.com/rust-lang/crates.io-index" 3497 + checksum = "ca0b3a8b765b3d3f1890233f9f62dda1b1524d1dc9967c310e5b009b93443776" 3498 + dependencies = [ 3499 + "base64 0.22.1", 3500 + "bytes", 3501 + "chrono", 3502 + "dashmap", 3503 + "ed25519-dalek", 3504 + "elliptic-curve", 3505 + "http", 3506 + "jacquard-common", 3507 + "jacquard-identity", 3508 + "jose-jwa", 3509 + "jose-jwk", 3510 + "k256", 3511 + "miette", 3512 + "p256", 3513 + "p384", 3514 + "rand 0.8.5", 3515 + "rouille", 3516 + "serde", 3517 + "serde_html_form", 3518 + "serde_json", 3519 + "sha2", 3520 + "smol_str", 3521 + "thiserror 2.0.18", 3522 + "tokio", 3523 + "trait-variant", 3524 + "webbrowser", 3525 + ] 3526 + 3527 + [[package]] 1802 3528 name = "javascriptcore-rs" 1803 3529 version = "1.1.2" 1804 3530 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1838 3564 ] 1839 3565 1840 3566 [[package]] 3567 + name = "jni" 3568 + version = "0.22.4" 3569 + source = "registry+https://github.com/rust-lang/crates.io-index" 3570 + checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" 3571 + dependencies = [ 3572 + "cfg-if", 3573 + "combine", 3574 + "jni-macros", 3575 + "jni-sys 0.4.1", 3576 + "log", 3577 + "simd_cesu8", 3578 + "thiserror 2.0.18", 3579 + "walkdir", 3580 + "windows-link 0.2.1", 3581 + ] 3582 + 3583 + [[package]] 3584 + name = "jni-macros" 3585 + version = "0.22.4" 3586 + source = "registry+https://github.com/rust-lang/crates.io-index" 3587 + checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" 3588 + dependencies = [ 3589 + "proc-macro2", 3590 + "quote", 3591 + "rustc_version", 3592 + "simd_cesu8", 3593 + "syn 2.0.117", 3594 + ] 3595 + 3596 + [[package]] 1841 3597 name = "jni-sys" 1842 3598 version = "0.3.1" 1843 3599 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1866 3622 ] 1867 3623 1868 3624 [[package]] 3625 + name = "jobserver" 3626 + version = "0.1.34" 3627 + source = "registry+https://github.com/rust-lang/crates.io-index" 3628 + checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 3629 + dependencies = [ 3630 + "getrandom 0.3.4", 3631 + "libc", 3632 + ] 3633 + 3634 + [[package]] 3635 + name = "jose-b64" 3636 + version = "0.1.2" 3637 + source = "registry+https://github.com/rust-lang/crates.io-index" 3638 + checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56" 3639 + dependencies = [ 3640 + "base64ct", 3641 + "serde", 3642 + "subtle", 3643 + "zeroize", 3644 + ] 3645 + 3646 + [[package]] 3647 + name = "jose-jwa" 3648 + version = "0.1.2" 3649 + source = "registry+https://github.com/rust-lang/crates.io-index" 3650 + checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7" 3651 + dependencies = [ 3652 + "serde", 3653 + ] 3654 + 3655 + [[package]] 3656 + name = "jose-jwk" 3657 + version = "0.1.2" 3658 + source = "registry+https://github.com/rust-lang/crates.io-index" 3659 + checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7" 3660 + dependencies = [ 3661 + "jose-b64", 3662 + "jose-jwa", 3663 + "p256", 3664 + "p384", 3665 + "rsa", 3666 + "serde", 3667 + "zeroize", 3668 + ] 3669 + 3670 + [[package]] 1869 3671 name = "js-sys" 1870 3672 version = "0.3.92" 1871 3673 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1900 3702 ] 1901 3703 1902 3704 [[package]] 3705 + name = "k256" 3706 + version = "0.13.4" 3707 + source = "registry+https://github.com/rust-lang/crates.io-index" 3708 + checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 3709 + dependencies = [ 3710 + "cfg-if", 3711 + "ecdsa", 3712 + "elliptic-curve", 3713 + "once_cell", 3714 + "sha2", 3715 + "signature", 3716 + ] 3717 + 3718 + [[package]] 1903 3719 name = "keyboard-types" 1904 3720 version = "0.7.0" 1905 3721 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1926 3742 name = "lazurite-desktop" 1927 3743 version = "0.1.0" 1928 3744 dependencies = [ 3745 + "fastembed", 3746 + "jacquard", 3747 + "rusqlite", 1929 3748 "serde", 1930 3749 "serde_json", 3750 + "sqlite-vec", 1931 3751 "tauri", 1932 3752 "tauri-build", 3753 + "tauri-plugin-deep-link", 3754 + "tauri-plugin-log", 3755 + "tauri-plugin-notification", 1933 3756 "tauri-plugin-opener", 3757 + "tauri-plugin-updater", 3758 + "thiserror 2.0.18", 3759 + "tokio", 3760 + ] 3761 + 3762 + [[package]] 3763 + name = "lazy_static" 3764 + version = "1.5.0" 3765 + source = "registry+https://github.com/rust-lang/crates.io-index" 3766 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 3767 + dependencies = [ 3768 + "spin 0.9.8", 1934 3769 ] 1935 3770 1936 3771 [[package]] ··· 1938 3773 version = "0.1.0" 1939 3774 source = "registry+https://github.com/rust-lang/crates.io-index" 1940 3775 checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 3776 + 3777 + [[package]] 3778 + name = "lebe" 3779 + version = "0.5.3" 3780 + source = "registry+https://github.com/rust-lang/crates.io-index" 3781 + checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8" 1941 3782 1942 3783 [[package]] 1943 3784 name = "libappindicator" ··· 1970 3811 checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" 1971 3812 1972 3813 [[package]] 3814 + name = "libfuzzer-sys" 3815 + version = "0.4.12" 3816 + source = "registry+https://github.com/rust-lang/crates.io-index" 3817 + checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d" 3818 + dependencies = [ 3819 + "arbitrary", 3820 + "cc", 3821 + ] 3822 + 3823 + [[package]] 1973 3824 name = "libloading" 1974 3825 version = "0.7.4" 1975 3826 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1978 3829 "cfg-if", 1979 3830 "winapi", 1980 3831 ] 3832 + 3833 + [[package]] 3834 + name = "libm" 3835 + version = "0.2.16" 3836 + source = "registry+https://github.com/rust-lang/crates.io-index" 3837 + checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" 1981 3838 1982 3839 [[package]] 1983 3840 name = "libredox" ··· 1985 3842 source = "registry+https://github.com/rust-lang/crates.io-index" 1986 3843 checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08" 1987 3844 dependencies = [ 3845 + "bitflags 2.11.0", 1988 3846 "libc", 3847 + "plain", 3848 + "redox_syscall 0.7.3", 1989 3849 ] 1990 3850 1991 3851 [[package]] 3852 + name = "libsqlite3-sys" 3853 + version = "0.37.0" 3854 + source = "registry+https://github.com/rust-lang/crates.io-index" 3855 + checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1" 3856 + dependencies = [ 3857 + "pkg-config", 3858 + "vcpkg", 3859 + ] 3860 + 3861 + [[package]] 3862 + name = "linked-hash-map" 3863 + version = "0.5.6" 3864 + source = "registry+https://github.com/rust-lang/crates.io-index" 3865 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 3866 + 3867 + [[package]] 1992 3868 name = "linux-raw-sys" 1993 3869 version = "0.12.1" 1994 3870 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2014 3890 version = "0.4.29" 2015 3891 source = "registry+https://github.com/rust-lang/crates.io-index" 2016 3892 checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 3893 + dependencies = [ 3894 + "value-bag", 3895 + ] 3896 + 3897 + [[package]] 3898 + name = "loom" 3899 + version = "0.7.2" 3900 + source = "registry+https://github.com/rust-lang/crates.io-index" 3901 + checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 3902 + dependencies = [ 3903 + "cfg-if", 3904 + "generator", 3905 + "scoped-tls", 3906 + "tracing", 3907 + "tracing-subscriber", 3908 + ] 3909 + 3910 + [[package]] 3911 + name = "loop9" 3912 + version = "0.1.5" 3913 + source = "registry+https://github.com/rust-lang/crates.io-index" 3914 + checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" 3915 + dependencies = [ 3916 + "imgref", 3917 + ] 3918 + 3919 + [[package]] 3920 + name = "lru-cache" 3921 + version = "0.1.2" 3922 + source = "registry+https://github.com/rust-lang/crates.io-index" 3923 + checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 3924 + dependencies = [ 3925 + "linked-hash-map", 3926 + ] 3927 + 3928 + [[package]] 3929 + name = "lru-slab" 3930 + version = "0.1.2" 3931 + source = "registry+https://github.com/rust-lang/crates.io-index" 3932 + checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 3933 + 3934 + [[package]] 3935 + name = "lzma-rust2" 3936 + version = "0.15.7" 3937 + source = "registry+https://github.com/rust-lang/crates.io-index" 3938 + checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69" 2017 3939 2018 3940 [[package]] 2019 3941 name = "mac" ··· 2022 3944 checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2023 3945 2024 3946 [[package]] 3947 + name = "mac-notification-sys" 3948 + version = "0.6.12" 3949 + source = "registry+https://github.com/rust-lang/crates.io-index" 3950 + checksum = "29a16783dd1a47849b8c8133c9cd3eb2112cfbc6901670af3dba47c8bbfb07d3" 3951 + dependencies = [ 3952 + "cc", 3953 + "objc2", 3954 + "objc2-foundation", 3955 + "time", 3956 + ] 3957 + 3958 + [[package]] 3959 + name = "macro_rules_attribute" 3960 + version = "0.2.2" 3961 + source = "registry+https://github.com/rust-lang/crates.io-index" 3962 + checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520" 3963 + dependencies = [ 3964 + "macro_rules_attribute-proc_macro", 3965 + "paste", 3966 + ] 3967 + 3968 + [[package]] 3969 + name = "macro_rules_attribute-proc_macro" 3970 + version = "0.2.2" 3971 + source = "registry+https://github.com/rust-lang/crates.io-index" 3972 + checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30" 3973 + 3974 + [[package]] 3975 + name = "maitake-sync" 3976 + version = "0.1.2" 3977 + source = "registry+https://github.com/rust-lang/crates.io-index" 3978 + checksum = "6816ab14147f80234c675b80ed6dc4f440d8a1cefc158e766067aedb84c0bcd5" 3979 + dependencies = [ 3980 + "cordyceps", 3981 + "loom", 3982 + "mycelium-bitfield", 3983 + "pin-project", 3984 + "portable-atomic", 3985 + ] 3986 + 3987 + [[package]] 3988 + name = "markup5ever" 3989 + version = "0.12.1" 3990 + source = "registry+https://github.com/rust-lang/crates.io-index" 3991 + checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" 3992 + dependencies = [ 3993 + "log", 3994 + "phf 0.11.3", 3995 + "phf_codegen 0.11.3", 3996 + "string_cache 0.8.9", 3997 + "string_cache_codegen 0.5.4", 3998 + "tendril 0.4.3", 3999 + ] 4000 + 4001 + [[package]] 2025 4002 name = "markup5ever" 2026 4003 version = "0.14.1" 2027 4004 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2047 4024 ] 2048 4025 2049 4026 [[package]] 4027 + name = "markup5ever_rcdom" 4028 + version = "0.3.0" 4029 + source = "registry+https://github.com/rust-lang/crates.io-index" 4030 + checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18" 4031 + dependencies = [ 4032 + "html5ever 0.27.0", 4033 + "markup5ever 0.12.1", 4034 + "tendril 0.4.3", 4035 + "xml5ever", 4036 + ] 4037 + 4038 + [[package]] 4039 + name = "match-lookup" 4040 + version = "0.1.2" 4041 + source = "registry+https://github.com/rust-lang/crates.io-index" 4042 + checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" 4043 + dependencies = [ 4044 + "proc-macro2", 4045 + "quote", 4046 + "syn 2.0.117", 4047 + ] 4048 + 4049 + [[package]] 2050 4050 name = "match_token" 2051 4051 version = "0.1.0" 2052 4052 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2058 4058 ] 2059 4059 2060 4060 [[package]] 4061 + name = "matchers" 4062 + version = "0.2.0" 4063 + source = "registry+https://github.com/rust-lang/crates.io-index" 4064 + checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 4065 + dependencies = [ 4066 + "regex-automata", 4067 + ] 4068 + 4069 + [[package]] 2061 4070 name = "matches" 2062 4071 version = "0.1.10" 2063 4072 source = "registry+https://github.com/rust-lang/crates.io-index" 2064 4073 checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2065 4074 2066 4075 [[package]] 4076 + name = "matrixmultiply" 4077 + version = "0.3.10" 4078 + source = "registry+https://github.com/rust-lang/crates.io-index" 4079 + checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08" 4080 + dependencies = [ 4081 + "autocfg", 4082 + "rawpointer", 4083 + ] 4084 + 4085 + [[package]] 4086 + name = "maybe-rayon" 4087 + version = "0.1.1" 4088 + source = "registry+https://github.com/rust-lang/crates.io-index" 4089 + checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" 4090 + dependencies = [ 4091 + "cfg-if", 4092 + "rayon", 4093 + ] 4094 + 4095 + [[package]] 2067 4096 name = "memchr" 2068 4097 version = "2.8.0" 2069 4098 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2079 4108 ] 2080 4109 2081 4110 [[package]] 4111 + name = "miette" 4112 + version = "7.6.0" 4113 + source = "registry+https://github.com/rust-lang/crates.io-index" 4114 + checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 4115 + dependencies = [ 4116 + "cfg-if", 4117 + "miette-derive", 4118 + "unicode-width 0.1.14", 4119 + ] 4120 + 4121 + [[package]] 4122 + name = "miette-derive" 4123 + version = "7.6.0" 4124 + source = "registry+https://github.com/rust-lang/crates.io-index" 4125 + checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 4126 + dependencies = [ 4127 + "proc-macro2", 4128 + "quote", 4129 + "syn 2.0.117", 4130 + ] 4131 + 4132 + [[package]] 2082 4133 name = "mime" 2083 4134 version = "0.3.17" 2084 4135 source = "registry+https://github.com/rust-lang/crates.io-index" 2085 4136 checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2086 4137 2087 4138 [[package]] 4139 + name = "mime_guess" 4140 + version = "2.0.5" 4141 + source = "registry+https://github.com/rust-lang/crates.io-index" 4142 + checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 4143 + dependencies = [ 4144 + "mime", 4145 + "unicase", 4146 + ] 4147 + 4148 + [[package]] 4149 + name = "mini-moka-wasm" 4150 + version = "0.10.99" 4151 + source = "registry+https://github.com/rust-lang/crates.io-index" 4152 + checksum = "0102b9a2ad50fa47ca89eead2316c8222285ecfbd3f69ce99564fbe4253866e8" 4153 + dependencies = [ 4154 + "crossbeam-channel", 4155 + "crossbeam-utils", 4156 + "dashmap", 4157 + "smallvec", 4158 + "tagptr", 4159 + "triomphe", 4160 + "web-time", 4161 + ] 4162 + 4163 + [[package]] 4164 + name = "minimal-lexical" 4165 + version = "0.2.1" 4166 + source = "registry+https://github.com/rust-lang/crates.io-index" 4167 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 4168 + 4169 + [[package]] 4170 + name = "minisign-verify" 4171 + version = "0.2.5" 4172 + source = "registry+https://github.com/rust-lang/crates.io-index" 4173 + checksum = "22f9645cb765ea72b8111f36c522475d2daa0d22c957a9826437e97534bc4e9e" 4174 + 4175 + [[package]] 2088 4176 name = "miniz_oxide" 2089 4177 version = "0.8.9" 2090 4178 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2106 4194 ] 2107 4195 2108 4196 [[package]] 4197 + name = "monostate" 4198 + version = "0.1.18" 4199 + source = "registry+https://github.com/rust-lang/crates.io-index" 4200 + checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67" 4201 + dependencies = [ 4202 + "monostate-impl", 4203 + "serde", 4204 + "serde_core", 4205 + ] 4206 + 4207 + [[package]] 4208 + name = "monostate-impl" 4209 + version = "0.1.18" 4210 + source = "registry+https://github.com/rust-lang/crates.io-index" 4211 + checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9" 4212 + dependencies = [ 4213 + "proc-macro2", 4214 + "quote", 4215 + "syn 2.0.117", 4216 + ] 4217 + 4218 + [[package]] 4219 + name = "moxcms" 4220 + version = "0.8.1" 4221 + source = "registry+https://github.com/rust-lang/crates.io-index" 4222 + checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b" 4223 + dependencies = [ 4224 + "num-traits", 4225 + "pxfm", 4226 + ] 4227 + 4228 + [[package]] 2109 4229 name = "muda" 2110 4230 version = "0.17.1" 2111 4231 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2120 4240 "objc2-core-foundation", 2121 4241 "objc2-foundation", 2122 4242 "once_cell", 2123 - "png", 4243 + "png 0.17.16", 2124 4244 "serde", 2125 4245 "thiserror 2.0.18", 2126 4246 "windows-sys 0.60.2", 2127 4247 ] 2128 4248 2129 4249 [[package]] 4250 + name = "multibase" 4251 + version = "0.9.2" 4252 + source = "registry+https://github.com/rust-lang/crates.io-index" 4253 + checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 4254 + dependencies = [ 4255 + "base-x", 4256 + "base256emoji", 4257 + "data-encoding", 4258 + "data-encoding-macro", 4259 + ] 4260 + 4261 + [[package]] 4262 + name = "multihash" 4263 + version = "0.19.3" 4264 + source = "registry+https://github.com/rust-lang/crates.io-index" 4265 + checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 4266 + dependencies = [ 4267 + "core2", 4268 + "serde", 4269 + "unsigned-varint", 4270 + ] 4271 + 4272 + [[package]] 4273 + name = "multipart" 4274 + version = "0.18.0" 4275 + source = "registry+https://github.com/rust-lang/crates.io-index" 4276 + checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182" 4277 + dependencies = [ 4278 + "buf_redux", 4279 + "httparse", 4280 + "log", 4281 + "mime", 4282 + "mime_guess", 4283 + "quick-error 1.2.3", 4284 + "rand 0.8.5", 4285 + "safemem", 4286 + "tempfile", 4287 + "twoway", 4288 + ] 4289 + 4290 + [[package]] 4291 + name = "mycelium-bitfield" 4292 + version = "0.1.5" 4293 + source = "registry+https://github.com/rust-lang/crates.io-index" 4294 + checksum = "24e0cc5e2c585acbd15c5ce911dff71e1f4d5313f43345873311c4f5efd741cc" 4295 + 4296 + [[package]] 4297 + name = "n0-future" 4298 + version = "0.1.3" 4299 + source = "registry+https://github.com/rust-lang/crates.io-index" 4300 + checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794" 4301 + dependencies = [ 4302 + "cfg_aliases", 4303 + "derive_more 1.0.0", 4304 + "futures-buffered", 4305 + "futures-lite", 4306 + "futures-util", 4307 + "js-sys", 4308 + "pin-project", 4309 + "send_wrapper", 4310 + "tokio", 4311 + "tokio-util", 4312 + "wasm-bindgen", 4313 + "wasm-bindgen-futures", 4314 + "web-time", 4315 + ] 4316 + 4317 + [[package]] 4318 + name = "native-tls" 4319 + version = "0.2.18" 4320 + source = "registry+https://github.com/rust-lang/crates.io-index" 4321 + checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" 4322 + dependencies = [ 4323 + "libc", 4324 + "log", 4325 + "openssl", 4326 + "openssl-probe", 4327 + "openssl-sys", 4328 + "schannel", 4329 + "security-framework", 4330 + "security-framework-sys", 4331 + "tempfile", 4332 + ] 4333 + 4334 + [[package]] 4335 + name = "ndarray" 4336 + version = "0.17.2" 4337 + source = "registry+https://github.com/rust-lang/crates.io-index" 4338 + checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d" 4339 + dependencies = [ 4340 + "matrixmultiply", 4341 + "num-complex", 4342 + "num-integer", 4343 + "num-traits", 4344 + "portable-atomic", 4345 + "portable-atomic-util", 4346 + "rawpointer", 4347 + ] 4348 + 4349 + [[package]] 2130 4350 name = "ndk" 2131 4351 version = "0.9.0" 2132 4352 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2169 4389 checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 2170 4390 2171 4391 [[package]] 4392 + name = "nom" 4393 + version = "7.1.3" 4394 + source = "registry+https://github.com/rust-lang/crates.io-index" 4395 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 4396 + dependencies = [ 4397 + "memchr", 4398 + "minimal-lexical", 4399 + ] 4400 + 4401 + [[package]] 4402 + name = "nom" 4403 + version = "8.0.0" 4404 + source = "registry+https://github.com/rust-lang/crates.io-index" 4405 + checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" 4406 + dependencies = [ 4407 + "memchr", 4408 + ] 4409 + 4410 + [[package]] 4411 + name = "noop_proc_macro" 4412 + version = "0.3.0" 4413 + source = "registry+https://github.com/rust-lang/crates.io-index" 4414 + checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" 4415 + 4416 + [[package]] 4417 + name = "notify-rust" 4418 + version = "4.12.0" 4419 + source = "registry+https://github.com/rust-lang/crates.io-index" 4420 + checksum = "21af20a1b50be5ac5861f74af1a863da53a11c38684d9818d82f1c42f7fdc6c2" 4421 + dependencies = [ 4422 + "futures-lite", 4423 + "log", 4424 + "mac-notification-sys", 4425 + "serde", 4426 + "tauri-winrt-notification", 4427 + "zbus", 4428 + ] 4429 + 4430 + [[package]] 4431 + name = "nu-ansi-term" 4432 + version = "0.50.3" 4433 + source = "registry+https://github.com/rust-lang/crates.io-index" 4434 + checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 4435 + dependencies = [ 4436 + "windows-sys 0.61.2", 4437 + ] 4438 + 4439 + [[package]] 4440 + name = "num-bigint" 4441 + version = "0.4.6" 4442 + source = "registry+https://github.com/rust-lang/crates.io-index" 4443 + checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 4444 + dependencies = [ 4445 + "num-integer", 4446 + "num-traits", 4447 + ] 4448 + 4449 + [[package]] 4450 + name = "num-bigint-dig" 4451 + version = "0.8.6" 4452 + source = "registry+https://github.com/rust-lang/crates.io-index" 4453 + checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 4454 + dependencies = [ 4455 + "lazy_static", 4456 + "libm", 4457 + "num-integer", 4458 + "num-iter", 4459 + "num-traits", 4460 + "rand 0.8.5", 4461 + "smallvec", 4462 + "zeroize", 4463 + ] 4464 + 4465 + [[package]] 4466 + name = "num-complex" 4467 + version = "0.4.6" 4468 + source = "registry+https://github.com/rust-lang/crates.io-index" 4469 + checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 4470 + dependencies = [ 4471 + "num-traits", 4472 + ] 4473 + 4474 + [[package]] 2172 4475 name = "num-conv" 2173 4476 version = "0.2.1" 2174 4477 source = "registry+https://github.com/rust-lang/crates.io-index" 2175 4478 checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967" 2176 4479 2177 4480 [[package]] 4481 + name = "num-derive" 4482 + version = "0.4.2" 4483 + source = "registry+https://github.com/rust-lang/crates.io-index" 4484 + checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" 4485 + dependencies = [ 4486 + "proc-macro2", 4487 + "quote", 4488 + "syn 2.0.117", 4489 + ] 4490 + 4491 + [[package]] 4492 + name = "num-integer" 4493 + version = "0.1.46" 4494 + source = "registry+https://github.com/rust-lang/crates.io-index" 4495 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 4496 + dependencies = [ 4497 + "num-traits", 4498 + ] 4499 + 4500 + [[package]] 4501 + name = "num-iter" 4502 + version = "0.1.45" 4503 + source = "registry+https://github.com/rust-lang/crates.io-index" 4504 + checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 4505 + dependencies = [ 4506 + "autocfg", 4507 + "num-integer", 4508 + "num-traits", 4509 + ] 4510 + 4511 + [[package]] 4512 + name = "num-rational" 4513 + version = "0.4.2" 4514 + source = "registry+https://github.com/rust-lang/crates.io-index" 4515 + checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 4516 + dependencies = [ 4517 + "num-bigint", 4518 + "num-integer", 4519 + "num-traits", 4520 + ] 4521 + 4522 + [[package]] 2178 4523 name = "num-traits" 2179 4524 version = "0.2.19" 2180 4525 source = "registry+https://github.com/rust-lang/crates.io-index" 2181 4526 checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2182 4527 dependencies = [ 2183 4528 "autocfg", 4529 + "libm", 4530 + ] 4531 + 4532 + [[package]] 4533 + name = "num_cpus" 4534 + version = "1.17.0" 4535 + source = "registry+https://github.com/rust-lang/crates.io-index" 4536 + checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 4537 + dependencies = [ 4538 + "hermit-abi", 4539 + "libc", 2184 4540 ] 2185 4541 2186 4542 [[package]] ··· 2206 4562 ] 2207 4563 2208 4564 [[package]] 4565 + name = "num_threads" 4566 + version = "0.1.7" 4567 + source = "registry+https://github.com/rust-lang/crates.io-index" 4568 + checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 4569 + dependencies = [ 4570 + "libc", 4571 + ] 4572 + 4573 + [[package]] 4574 + name = "number_prefix" 4575 + version = "0.4.0" 4576 + source = "registry+https://github.com/rust-lang/crates.io-index" 4577 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 4578 + 4579 + [[package]] 2209 4580 name = "objc2" 2210 4581 version = "0.6.4" 2211 4582 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2275 4646 dependencies = [ 2276 4647 "bitflags 2.11.0", 2277 4648 "block2", 4649 + "libc", 2278 4650 "objc2", 2279 4651 "objc2-core-foundation", 2280 4652 ] ··· 2291 4663 ] 2292 4664 2293 4665 [[package]] 4666 + name = "objc2-osa-kit" 4667 + version = "0.3.2" 4668 + source = "registry+https://github.com/rust-lang/crates.io-index" 4669 + checksum = "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0" 4670 + dependencies = [ 4671 + "bitflags 2.11.0", 4672 + "objc2", 4673 + "objc2-app-kit", 4674 + "objc2-foundation", 4675 + ] 4676 + 4677 + [[package]] 2294 4678 name = "objc2-quartz-core" 2295 4679 version = "0.3.2" 2296 4680 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2335 4719 checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 2336 4720 2337 4721 [[package]] 4722 + name = "onig" 4723 + version = "6.5.1" 4724 + source = "registry+https://github.com/rust-lang/crates.io-index" 4725 + checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0" 4726 + dependencies = [ 4727 + "bitflags 2.11.0", 4728 + "libc", 4729 + "once_cell", 4730 + "onig_sys", 4731 + ] 4732 + 4733 + [[package]] 4734 + name = "onig_sys" 4735 + version = "69.9.1" 4736 + source = "registry+https://github.com/rust-lang/crates.io-index" 4737 + checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc" 4738 + dependencies = [ 4739 + "cc", 4740 + "pkg-config", 4741 + ] 4742 + 4743 + [[package]] 2338 4744 name = "open" 2339 4745 version = "5.3.3" 2340 4746 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2347 4753 ] 2348 4754 2349 4755 [[package]] 4756 + name = "openssl" 4757 + version = "0.10.76" 4758 + source = "registry+https://github.com/rust-lang/crates.io-index" 4759 + checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf" 4760 + dependencies = [ 4761 + "bitflags 2.11.0", 4762 + "cfg-if", 4763 + "foreign-types 0.3.2", 4764 + "libc", 4765 + "once_cell", 4766 + "openssl-macros", 4767 + "openssl-sys", 4768 + ] 4769 + 4770 + [[package]] 4771 + name = "openssl-macros" 4772 + version = "0.1.1" 4773 + source = "registry+https://github.com/rust-lang/crates.io-index" 4774 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 4775 + dependencies = [ 4776 + "proc-macro2", 4777 + "quote", 4778 + "syn 2.0.117", 4779 + ] 4780 + 4781 + [[package]] 4782 + name = "openssl-probe" 4783 + version = "0.2.1" 4784 + source = "registry+https://github.com/rust-lang/crates.io-index" 4785 + checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 4786 + 4787 + [[package]] 4788 + name = "openssl-sys" 4789 + version = "0.9.112" 4790 + source = "registry+https://github.com/rust-lang/crates.io-index" 4791 + checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb" 4792 + dependencies = [ 4793 + "cc", 4794 + "libc", 4795 + "pkg-config", 4796 + "vcpkg", 4797 + ] 4798 + 4799 + [[package]] 2350 4800 name = "option-ext" 2351 4801 version = "0.2.0" 2352 4802 source = "registry+https://github.com/rust-lang/crates.io-index" 2353 4803 checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 2354 4804 2355 4805 [[package]] 4806 + name = "ordered-multimap" 4807 + version = "0.7.3" 4808 + source = "registry+https://github.com/rust-lang/crates.io-index" 4809 + checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" 4810 + dependencies = [ 4811 + "dlv-list", 4812 + "hashbrown 0.14.5", 4813 + ] 4814 + 4815 + [[package]] 2356 4816 name = "ordered-stream" 2357 4817 version = "0.2.0" 2358 4818 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2363 4823 ] 2364 4824 2365 4825 [[package]] 4826 + name = "ort" 4827 + version = "2.0.0-rc.11" 4828 + source = "registry+https://github.com/rust-lang/crates.io-index" 4829 + checksum = "4a5df903c0d2c07b56950f1058104ab0c8557159f2741782223704de9be73c3c" 4830 + dependencies = [ 4831 + "ndarray", 4832 + "ort-sys", 4833 + "smallvec", 4834 + "tracing", 4835 + "ureq 3.3.0", 4836 + ] 4837 + 4838 + [[package]] 4839 + name = "ort-sys" 4840 + version = "2.0.0-rc.11" 4841 + source = "registry+https://github.com/rust-lang/crates.io-index" 4842 + checksum = "06503bb33f294c5f1ba484011e053bfa6ae227074bdb841e9863492dc5960d4b" 4843 + dependencies = [ 4844 + "hmac-sha256", 4845 + "lzma-rust2", 4846 + "ureq 3.3.0", 4847 + ] 4848 + 4849 + [[package]] 4850 + name = "osakit" 4851 + version = "0.3.1" 4852 + source = "registry+https://github.com/rust-lang/crates.io-index" 4853 + checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b" 4854 + dependencies = [ 4855 + "objc2", 4856 + "objc2-foundation", 4857 + "objc2-osa-kit", 4858 + "serde", 4859 + "serde_json", 4860 + "thiserror 2.0.18", 4861 + ] 4862 + 4863 + [[package]] 4864 + name = "ouroboros" 4865 + version = "0.18.5" 4866 + source = "registry+https://github.com/rust-lang/crates.io-index" 4867 + checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 4868 + dependencies = [ 4869 + "aliasable", 4870 + "ouroboros_macro", 4871 + "static_assertions", 4872 + ] 4873 + 4874 + [[package]] 4875 + name = "ouroboros_macro" 4876 + version = "0.18.5" 4877 + source = "registry+https://github.com/rust-lang/crates.io-index" 4878 + checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 4879 + dependencies = [ 4880 + "heck 0.4.1", 4881 + "proc-macro2", 4882 + "proc-macro2-diagnostics", 4883 + "quote", 4884 + "syn 2.0.117", 4885 + ] 4886 + 4887 + [[package]] 4888 + name = "oxilangtag" 4889 + version = "0.1.5" 4890 + source = "registry+https://github.com/rust-lang/crates.io-index" 4891 + checksum = "23f3f87617a86af77fa3691e6350483e7154c2ead9f1261b75130e21ca0f8acb" 4892 + dependencies = [ 4893 + "serde", 4894 + ] 4895 + 4896 + [[package]] 4897 + name = "p256" 4898 + version = "0.13.2" 4899 + source = "registry+https://github.com/rust-lang/crates.io-index" 4900 + checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 4901 + dependencies = [ 4902 + "ecdsa", 4903 + "elliptic-curve", 4904 + "primeorder", 4905 + "sha2", 4906 + ] 4907 + 4908 + [[package]] 4909 + name = "p384" 4910 + version = "0.13.1" 4911 + source = "registry+https://github.com/rust-lang/crates.io-index" 4912 + checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 4913 + dependencies = [ 4914 + "ecdsa", 4915 + "elliptic-curve", 4916 + "primeorder", 4917 + "sha2", 4918 + ] 4919 + 4920 + [[package]] 2366 4921 name = "pango" 2367 4922 version = "0.18.3" 2368 4923 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2411 4966 dependencies = [ 2412 4967 "cfg-if", 2413 4968 "libc", 2414 - "redox_syscall", 4969 + "redox_syscall 0.5.18", 2415 4970 "smallvec", 2416 4971 "windows-link 0.2.1", 2417 4972 ] 2418 4973 2419 4974 [[package]] 4975 + name = "paste" 4976 + version = "1.0.15" 4977 + source = "registry+https://github.com/rust-lang/crates.io-index" 4978 + checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 4979 + 4980 + [[package]] 4981 + name = "pastey" 4982 + version = "0.1.1" 4983 + source = "registry+https://github.com/rust-lang/crates.io-index" 4984 + checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec" 4985 + 4986 + [[package]] 2420 4987 name = "pathdiff" 2421 4988 version = "0.2.3" 2422 4989 source = "registry+https://github.com/rust-lang/crates.io-index" 2423 4990 checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 4991 + 4992 + [[package]] 4993 + name = "pem-rfc7468" 4994 + version = "0.7.0" 4995 + source = "registry+https://github.com/rust-lang/crates.io-index" 4996 + checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 4997 + dependencies = [ 4998 + "base64ct", 4999 + ] 5000 + 5001 + [[package]] 5002 + name = "pem-rfc7468" 5003 + version = "1.0.0" 5004 + source = "registry+https://github.com/rust-lang/crates.io-index" 5005 + checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9" 5006 + dependencies = [ 5007 + "base64ct", 5008 + ] 2424 5009 2425 5010 [[package]] 2426 5011 name = "percent-encoding" ··· 2616 5201 ] 2617 5202 2618 5203 [[package]] 5204 + name = "pin-project" 5205 + version = "1.1.11" 5206 + source = "registry+https://github.com/rust-lang/crates.io-index" 5207 + checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517" 5208 + dependencies = [ 5209 + "pin-project-internal", 5210 + ] 5211 + 5212 + [[package]] 5213 + name = "pin-project-internal" 5214 + version = "1.1.11" 5215 + source = "registry+https://github.com/rust-lang/crates.io-index" 5216 + checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" 5217 + dependencies = [ 5218 + "proc-macro2", 5219 + "quote", 5220 + "syn 2.0.117", 5221 + ] 5222 + 5223 + [[package]] 2619 5224 name = "pin-project-lite" 2620 5225 version = "0.2.17" 2621 5226 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2639 5244 ] 2640 5245 2641 5246 [[package]] 5247 + name = "pkcs1" 5248 + version = "0.7.5" 5249 + source = "registry+https://github.com/rust-lang/crates.io-index" 5250 + checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 5251 + dependencies = [ 5252 + "der 0.7.10", 5253 + "pkcs8", 5254 + "spki", 5255 + ] 5256 + 5257 + [[package]] 5258 + name = "pkcs8" 5259 + version = "0.10.2" 5260 + source = "registry+https://github.com/rust-lang/crates.io-index" 5261 + checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 5262 + dependencies = [ 5263 + "der 0.7.10", 5264 + "spki", 5265 + ] 5266 + 5267 + [[package]] 2642 5268 name = "pkg-config" 2643 5269 version = "0.3.32" 2644 5270 source = "registry+https://github.com/rust-lang/crates.io-index" 2645 5271 checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 2646 5272 2647 5273 [[package]] 5274 + name = "plain" 5275 + version = "0.2.3" 5276 + source = "registry+https://github.com/rust-lang/crates.io-index" 5277 + checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 5278 + 5279 + [[package]] 2648 5280 name = "plist" 2649 5281 version = "1.8.0" 2650 5282 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2652 5284 dependencies = [ 2653 5285 "base64 0.22.1", 2654 5286 "indexmap 2.13.0", 2655 - "quick-xml", 5287 + "quick-xml 0.38.4", 2656 5288 "serde", 2657 5289 "time", 2658 5290 ] ··· 2671 5303 ] 2672 5304 2673 5305 [[package]] 5306 + name = "png" 5307 + version = "0.18.1" 5308 + source = "registry+https://github.com/rust-lang/crates.io-index" 5309 + checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" 5310 + dependencies = [ 5311 + "bitflags 2.11.0", 5312 + "crc32fast", 5313 + "fdeflate", 5314 + "flate2", 5315 + "miniz_oxide", 5316 + ] 5317 + 5318 + [[package]] 2674 5319 name = "polling" 2675 5320 version = "3.11.0" 2676 5321 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2685 5330 ] 2686 5331 2687 5332 [[package]] 5333 + name = "portable-atomic" 5334 + version = "1.13.1" 5335 + source = "registry+https://github.com/rust-lang/crates.io-index" 5336 + checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 5337 + 5338 + [[package]] 5339 + name = "portable-atomic-util" 5340 + version = "0.2.6" 5341 + source = "registry+https://github.com/rust-lang/crates.io-index" 5342 + checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3" 5343 + dependencies = [ 5344 + "portable-atomic", 5345 + ] 5346 + 5347 + [[package]] 5348 + name = "postcard" 5349 + version = "1.1.3" 5350 + source = "registry+https://github.com/rust-lang/crates.io-index" 5351 + checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 5352 + dependencies = [ 5353 + "cobs", 5354 + "embedded-io 0.4.0", 5355 + "embedded-io 0.6.1", 5356 + "heapless", 5357 + "serde", 5358 + ] 5359 + 5360 + [[package]] 2688 5361 name = "potential_utf" 2689 5362 version = "0.1.4" 2690 5363 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2725 5398 ] 2726 5399 2727 5400 [[package]] 5401 + name = "primeorder" 5402 + version = "0.13.6" 5403 + source = "registry+https://github.com/rust-lang/crates.io-index" 5404 + checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 5405 + dependencies = [ 5406 + "elliptic-curve", 5407 + ] 5408 + 5409 + [[package]] 2728 5410 name = "proc-macro-crate" 2729 5411 version = "1.3.1" 2730 5412 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2793 5475 ] 2794 5476 2795 5477 [[package]] 5478 + name = "proc-macro2-diagnostics" 5479 + version = "0.10.1" 5480 + source = "registry+https://github.com/rust-lang/crates.io-index" 5481 + checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 5482 + dependencies = [ 5483 + "proc-macro2", 5484 + "quote", 5485 + "syn 2.0.117", 5486 + "version_check", 5487 + "yansi", 5488 + ] 5489 + 5490 + [[package]] 5491 + name = "profiling" 5492 + version = "1.0.17" 5493 + source = "registry+https://github.com/rust-lang/crates.io-index" 5494 + checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773" 5495 + dependencies = [ 5496 + "profiling-procmacros", 5497 + ] 5498 + 5499 + [[package]] 5500 + name = "profiling-procmacros" 5501 + version = "1.0.17" 5502 + source = "registry+https://github.com/rust-lang/crates.io-index" 5503 + checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b" 5504 + dependencies = [ 5505 + "quote", 5506 + "syn 2.0.117", 5507 + ] 5508 + 5509 + [[package]] 5510 + name = "ptr_meta" 5511 + version = "0.1.4" 5512 + source = "registry+https://github.com/rust-lang/crates.io-index" 5513 + checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 5514 + dependencies = [ 5515 + "ptr_meta_derive", 5516 + ] 5517 + 5518 + [[package]] 5519 + name = "ptr_meta_derive" 5520 + version = "0.1.4" 5521 + source = "registry+https://github.com/rust-lang/crates.io-index" 5522 + checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 5523 + dependencies = [ 5524 + "proc-macro2", 5525 + "quote", 5526 + "syn 1.0.109", 5527 + ] 5528 + 5529 + [[package]] 5530 + name = "pxfm" 5531 + version = "0.1.28" 5532 + source = "registry+https://github.com/rust-lang/crates.io-index" 5533 + checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d" 5534 + 5535 + [[package]] 5536 + name = "qoi" 5537 + version = "0.4.1" 5538 + source = "registry+https://github.com/rust-lang/crates.io-index" 5539 + checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 5540 + dependencies = [ 5541 + "bytemuck", 5542 + ] 5543 + 5544 + [[package]] 5545 + name = "quick-error" 5546 + version = "1.2.3" 5547 + source = "registry+https://github.com/rust-lang/crates.io-index" 5548 + checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 5549 + 5550 + [[package]] 5551 + name = "quick-error" 5552 + version = "2.0.1" 5553 + source = "registry+https://github.com/rust-lang/crates.io-index" 5554 + checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 5555 + 5556 + [[package]] 5557 + name = "quick-xml" 5558 + version = "0.37.5" 5559 + source = "registry+https://github.com/rust-lang/crates.io-index" 5560 + checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 5561 + dependencies = [ 5562 + "memchr", 5563 + ] 5564 + 5565 + [[package]] 2796 5566 name = "quick-xml" 2797 5567 version = "0.38.4" 2798 5568 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2802 5572 ] 2803 5573 2804 5574 [[package]] 5575 + name = "quinn" 5576 + version = "0.11.9" 5577 + source = "registry+https://github.com/rust-lang/crates.io-index" 5578 + checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 5579 + dependencies = [ 5580 + "bytes", 5581 + "cfg_aliases", 5582 + "pin-project-lite", 5583 + "quinn-proto", 5584 + "quinn-udp", 5585 + "rustc-hash", 5586 + "rustls", 5587 + "socket2", 5588 + "thiserror 2.0.18", 5589 + "tokio", 5590 + "tracing", 5591 + "web-time", 5592 + ] 5593 + 5594 + [[package]] 5595 + name = "quinn-proto" 5596 + version = "0.11.14" 5597 + source = "registry+https://github.com/rust-lang/crates.io-index" 5598 + checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 5599 + dependencies = [ 5600 + "bytes", 5601 + "getrandom 0.3.4", 5602 + "lru-slab", 5603 + "rand 0.9.2", 5604 + "ring", 5605 + "rustc-hash", 5606 + "rustls", 5607 + "rustls-pki-types", 5608 + "slab", 5609 + "thiserror 2.0.18", 5610 + "tinyvec", 5611 + "tracing", 5612 + "web-time", 5613 + ] 5614 + 5615 + [[package]] 5616 + name = "quinn-udp" 5617 + version = "0.5.14" 5618 + source = "registry+https://github.com/rust-lang/crates.io-index" 5619 + checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 5620 + dependencies = [ 5621 + "cfg_aliases", 5622 + "libc", 5623 + "once_cell", 5624 + "socket2", 5625 + "tracing", 5626 + "windows-sys 0.60.2", 5627 + ] 5628 + 5629 + [[package]] 2805 5630 name = "quote" 2806 5631 version = "1.0.45" 2807 5632 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2823 5648 checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 2824 5649 2825 5650 [[package]] 5651 + name = "radium" 5652 + version = "0.7.0" 5653 + source = "registry+https://github.com/rust-lang/crates.io-index" 5654 + checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 5655 + 5656 + [[package]] 2826 5657 name = "rand" 2827 5658 version = "0.7.3" 2828 5659 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2845 5676 "libc", 2846 5677 "rand_chacha 0.3.1", 2847 5678 "rand_core 0.6.4", 5679 + ] 5680 + 5681 + [[package]] 5682 + name = "rand" 5683 + version = "0.9.2" 5684 + source = "registry+https://github.com/rust-lang/crates.io-index" 5685 + checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 5686 + dependencies = [ 5687 + "rand_chacha 0.9.0", 5688 + "rand_core 0.9.5", 2848 5689 ] 2849 5690 2850 5691 [[package]] ··· 2868 5709 ] 2869 5710 2870 5711 [[package]] 5712 + name = "rand_chacha" 5713 + version = "0.9.0" 5714 + source = "registry+https://github.com/rust-lang/crates.io-index" 5715 + checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 5716 + dependencies = [ 5717 + "ppv-lite86", 5718 + "rand_core 0.9.5", 5719 + ] 5720 + 5721 + [[package]] 2871 5722 name = "rand_core" 2872 5723 version = "0.5.1" 2873 5724 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2886 5737 ] 2887 5738 2888 5739 [[package]] 5740 + name = "rand_core" 5741 + version = "0.9.5" 5742 + source = "registry+https://github.com/rust-lang/crates.io-index" 5743 + checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 5744 + dependencies = [ 5745 + "getrandom 0.3.4", 5746 + ] 5747 + 5748 + [[package]] 2889 5749 name = "rand_hc" 2890 5750 version = "0.2.0" 2891 5751 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2904 5764 ] 2905 5765 2906 5766 [[package]] 5767 + name = "rav1e" 5768 + version = "0.8.1" 5769 + source = "registry+https://github.com/rust-lang/crates.io-index" 5770 + checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b" 5771 + dependencies = [ 5772 + "aligned-vec", 5773 + "arbitrary", 5774 + "arg_enum_proc_macro", 5775 + "arrayvec", 5776 + "av-scenechange", 5777 + "av1-grain", 5778 + "bitstream-io", 5779 + "built", 5780 + "cfg-if", 5781 + "interpolate_name", 5782 + "itertools", 5783 + "libc", 5784 + "libfuzzer-sys", 5785 + "log", 5786 + "maybe-rayon", 5787 + "new_debug_unreachable", 5788 + "noop_proc_macro", 5789 + "num-derive", 5790 + "num-traits", 5791 + "paste", 5792 + "profiling", 5793 + "rand 0.9.2", 5794 + "rand_chacha 0.9.0", 5795 + "simd_helpers", 5796 + "thiserror 2.0.18", 5797 + "v_frame", 5798 + "wasm-bindgen", 5799 + ] 5800 + 5801 + [[package]] 5802 + name = "ravif" 5803 + version = "0.13.0" 5804 + source = "registry+https://github.com/rust-lang/crates.io-index" 5805 + checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45" 5806 + dependencies = [ 5807 + "avif-serialize", 5808 + "imgref", 5809 + "loop9", 5810 + "quick-error 2.0.1", 5811 + "rav1e", 5812 + "rayon", 5813 + "rgb", 5814 + ] 5815 + 5816 + [[package]] 2907 5817 name = "raw-window-handle" 2908 5818 version = "0.6.2" 2909 5819 source = "registry+https://github.com/rust-lang/crates.io-index" 2910 5820 checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 2911 5821 2912 5822 [[package]] 5823 + name = "rawpointer" 5824 + version = "0.2.1" 5825 + source = "registry+https://github.com/rust-lang/crates.io-index" 5826 + checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" 5827 + 5828 + [[package]] 5829 + name = "rayon" 5830 + version = "1.11.0" 5831 + source = "registry+https://github.com/rust-lang/crates.io-index" 5832 + checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" 5833 + dependencies = [ 5834 + "either", 5835 + "rayon-core", 5836 + ] 5837 + 5838 + [[package]] 5839 + name = "rayon-cond" 5840 + version = "0.4.0" 5841 + source = "registry+https://github.com/rust-lang/crates.io-index" 5842 + checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f" 5843 + dependencies = [ 5844 + "either", 5845 + "itertools", 5846 + "rayon", 5847 + ] 5848 + 5849 + [[package]] 5850 + name = "rayon-core" 5851 + version = "1.13.0" 5852 + source = "registry+https://github.com/rust-lang/crates.io-index" 5853 + checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" 5854 + dependencies = [ 5855 + "crossbeam-deque", 5856 + "crossbeam-utils", 5857 + ] 5858 + 5859 + [[package]] 2913 5860 name = "redox_syscall" 2914 5861 version = "0.5.18" 2915 5862 source = "registry+https://github.com/rust-lang/crates.io-index" 2916 5863 checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 5864 + dependencies = [ 5865 + "bitflags 2.11.0", 5866 + ] 5867 + 5868 + [[package]] 5869 + name = "redox_syscall" 5870 + version = "0.7.3" 5871 + source = "registry+https://github.com/rust-lang/crates.io-index" 5872 + checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16" 2917 5873 dependencies = [ 2918 5874 "bitflags 2.11.0", 2919 5875 ] ··· 2973 5929 ] 2974 5930 2975 5931 [[package]] 5932 + name = "regex-lite" 5933 + version = "0.1.9" 5934 + source = "registry+https://github.com/rust-lang/crates.io-index" 5935 + checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" 5936 + 5937 + [[package]] 2976 5938 name = "regex-syntax" 2977 5939 version = "0.8.10" 2978 5940 source = "registry+https://github.com/rust-lang/crates.io-index" 2979 5941 checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" 2980 5942 2981 5943 [[package]] 5944 + name = "rend" 5945 + version = "0.4.2" 5946 + source = "registry+https://github.com/rust-lang/crates.io-index" 5947 + checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 5948 + dependencies = [ 5949 + "bytecheck", 5950 + ] 5951 + 5952 + [[package]] 5953 + name = "reqwest" 5954 + version = "0.12.28" 5955 + source = "registry+https://github.com/rust-lang/crates.io-index" 5956 + checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 5957 + dependencies = [ 5958 + "base64 0.22.1", 5959 + "bytes", 5960 + "encoding_rs", 5961 + "futures-core", 5962 + "futures-util", 5963 + "h2", 5964 + "http", 5965 + "http-body", 5966 + "http-body-util", 5967 + "hyper", 5968 + "hyper-rustls", 5969 + "hyper-tls", 5970 + "hyper-util", 5971 + "js-sys", 5972 + "log", 5973 + "mime", 5974 + "native-tls", 5975 + "percent-encoding", 5976 + "pin-project-lite", 5977 + "quinn", 5978 + "rustls", 5979 + "rustls-pki-types", 5980 + "serde", 5981 + "serde_json", 5982 + "serde_urlencoded", 5983 + "sync_wrapper", 5984 + "tokio", 5985 + "tokio-native-tls", 5986 + "tokio-rustls", 5987 + "tokio-util", 5988 + "tower", 5989 + "tower-http", 5990 + "tower-service", 5991 + "url", 5992 + "wasm-bindgen", 5993 + "wasm-bindgen-futures", 5994 + "wasm-streams 0.4.2", 5995 + "web-sys", 5996 + "webpki-roots 1.0.6", 5997 + ] 5998 + 5999 + [[package]] 2982 6000 name = "reqwest" 2983 6001 version = "0.13.2" 2984 6002 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2992 6010 "http-body", 2993 6011 "http-body-util", 2994 6012 "hyper", 6013 + "hyper-rustls", 2995 6014 "hyper-util", 2996 6015 "js-sys", 2997 6016 "log", 2998 6017 "percent-encoding", 2999 6018 "pin-project-lite", 6019 + "rustls", 6020 + "rustls-pki-types", 6021 + "rustls-platform-verifier", 3000 6022 "serde", 3001 6023 "serde_json", 3002 6024 "sync_wrapper", 3003 6025 "tokio", 6026 + "tokio-rustls", 3004 6027 "tokio-util", 3005 6028 "tower", 3006 6029 "tower-http", ··· 3008 6031 "url", 3009 6032 "wasm-bindgen", 3010 6033 "wasm-bindgen-futures", 3011 - "wasm-streams", 6034 + "wasm-streams 0.5.0", 3012 6035 "web-sys", 3013 6036 ] 3014 6037 3015 6038 [[package]] 6039 + name = "resolv-conf" 6040 + version = "0.7.6" 6041 + source = "registry+https://github.com/rust-lang/crates.io-index" 6042 + checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" 6043 + 6044 + [[package]] 6045 + name = "rfc6979" 6046 + version = "0.4.0" 6047 + source = "registry+https://github.com/rust-lang/crates.io-index" 6048 + checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 6049 + dependencies = [ 6050 + "hmac", 6051 + "subtle", 6052 + ] 6053 + 6054 + [[package]] 6055 + name = "rgb" 6056 + version = "0.8.53" 6057 + source = "registry+https://github.com/rust-lang/crates.io-index" 6058 + checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4" 6059 + 6060 + [[package]] 6061 + name = "ring" 6062 + version = "0.17.14" 6063 + source = "registry+https://github.com/rust-lang/crates.io-index" 6064 + checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 6065 + dependencies = [ 6066 + "cc", 6067 + "cfg-if", 6068 + "getrandom 0.2.17", 6069 + "libc", 6070 + "untrusted", 6071 + "windows-sys 0.52.0", 6072 + ] 6073 + 6074 + [[package]] 6075 + name = "rkyv" 6076 + version = "0.7.46" 6077 + source = "registry+https://github.com/rust-lang/crates.io-index" 6078 + checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" 6079 + dependencies = [ 6080 + "bitvec", 6081 + "bytecheck", 6082 + "bytes", 6083 + "hashbrown 0.12.3", 6084 + "ptr_meta", 6085 + "rend", 6086 + "rkyv_derive", 6087 + "seahash", 6088 + "tinyvec", 6089 + "uuid", 6090 + ] 6091 + 6092 + [[package]] 6093 + name = "rkyv_derive" 6094 + version = "0.7.46" 6095 + source = "registry+https://github.com/rust-lang/crates.io-index" 6096 + checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" 6097 + dependencies = [ 6098 + "proc-macro2", 6099 + "quote", 6100 + "syn 1.0.109", 6101 + ] 6102 + 6103 + [[package]] 6104 + name = "rouille" 6105 + version = "3.6.2" 6106 + source = "registry+https://github.com/rust-lang/crates.io-index" 6107 + checksum = "3716fbf57fc1084d7a706adf4e445298d123e4a44294c4e8213caf1b85fcc921" 6108 + dependencies = [ 6109 + "base64 0.13.1", 6110 + "brotli 3.5.0", 6111 + "chrono", 6112 + "deflate", 6113 + "filetime", 6114 + "multipart", 6115 + "percent-encoding", 6116 + "rand 0.8.5", 6117 + "serde", 6118 + "serde_derive", 6119 + "serde_json", 6120 + "sha1_smol", 6121 + "threadpool", 6122 + "time", 6123 + "tiny_http", 6124 + "url", 6125 + ] 6126 + 6127 + [[package]] 6128 + name = "rsa" 6129 + version = "0.9.10" 6130 + source = "registry+https://github.com/rust-lang/crates.io-index" 6131 + checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" 6132 + dependencies = [ 6133 + "const-oid", 6134 + "digest", 6135 + "num-bigint-dig", 6136 + "num-integer", 6137 + "num-traits", 6138 + "pkcs1", 6139 + "pkcs8", 6140 + "rand_core 0.6.4", 6141 + "signature", 6142 + "spki", 6143 + "subtle", 6144 + "zeroize", 6145 + ] 6146 + 6147 + [[package]] 6148 + name = "rsqlite-vfs" 6149 + version = "0.1.0" 6150 + source = "registry+https://github.com/rust-lang/crates.io-index" 6151 + checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d" 6152 + dependencies = [ 6153 + "hashbrown 0.16.1", 6154 + "thiserror 2.0.18", 6155 + ] 6156 + 6157 + [[package]] 6158 + name = "rusqlite" 6159 + version = "0.39.0" 6160 + source = "registry+https://github.com/rust-lang/crates.io-index" 6161 + checksum = "a0d2b0146dd9661bf67bb107c0bb2a55064d556eeb3fc314151b957f313bcd4e" 6162 + dependencies = [ 6163 + "bitflags 2.11.0", 6164 + "fallible-iterator", 6165 + "fallible-streaming-iterator", 6166 + "hashlink", 6167 + "libsqlite3-sys", 6168 + "smallvec", 6169 + "sqlite-wasm-rs", 6170 + ] 6171 + 6172 + [[package]] 6173 + name = "rust-ini" 6174 + version = "0.21.3" 6175 + source = "registry+https://github.com/rust-lang/crates.io-index" 6176 + checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7" 6177 + dependencies = [ 6178 + "cfg-if", 6179 + "ordered-multimap", 6180 + ] 6181 + 6182 + [[package]] 6183 + name = "rust_decimal" 6184 + version = "1.41.0" 6185 + source = "registry+https://github.com/rust-lang/crates.io-index" 6186 + checksum = "2ce901f9a19d251159075a4c37af514c3b8ef99c22e02dd8c19161cf397ee94a" 6187 + dependencies = [ 6188 + "arrayvec", 6189 + "borsh", 6190 + "bytes", 6191 + "num-traits", 6192 + "rand 0.8.5", 6193 + "rkyv", 6194 + "serde", 6195 + "serde_json", 6196 + "wasm-bindgen", 6197 + ] 6198 + 6199 + [[package]] 3016 6200 name = "rustc-hash" 3017 6201 version = "2.1.2" 3018 6202 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3041 6225 ] 3042 6226 3043 6227 [[package]] 6228 + name = "rustls" 6229 + version = "0.23.37" 6230 + source = "registry+https://github.com/rust-lang/crates.io-index" 6231 + checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" 6232 + dependencies = [ 6233 + "log", 6234 + "once_cell", 6235 + "ring", 6236 + "rustls-pki-types", 6237 + "rustls-webpki", 6238 + "subtle", 6239 + "zeroize", 6240 + ] 6241 + 6242 + [[package]] 6243 + name = "rustls-native-certs" 6244 + version = "0.8.3" 6245 + source = "registry+https://github.com/rust-lang/crates.io-index" 6246 + checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" 6247 + dependencies = [ 6248 + "openssl-probe", 6249 + "rustls-pki-types", 6250 + "schannel", 6251 + "security-framework", 6252 + ] 6253 + 6254 + [[package]] 6255 + name = "rustls-pki-types" 6256 + version = "1.14.0" 6257 + source = "registry+https://github.com/rust-lang/crates.io-index" 6258 + checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" 6259 + dependencies = [ 6260 + "web-time", 6261 + "zeroize", 6262 + ] 6263 + 6264 + [[package]] 6265 + name = "rustls-platform-verifier" 6266 + version = "0.6.2" 6267 + source = "registry+https://github.com/rust-lang/crates.io-index" 6268 + checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784" 6269 + dependencies = [ 6270 + "core-foundation 0.10.1", 6271 + "core-foundation-sys", 6272 + "jni 0.21.1", 6273 + "log", 6274 + "once_cell", 6275 + "rustls", 6276 + "rustls-native-certs", 6277 + "rustls-platform-verifier-android", 6278 + "rustls-webpki", 6279 + "security-framework", 6280 + "security-framework-sys", 6281 + "webpki-root-certs", 6282 + "windows-sys 0.61.2", 6283 + ] 6284 + 6285 + [[package]] 6286 + name = "rustls-platform-verifier-android" 6287 + version = "0.1.1" 6288 + source = "registry+https://github.com/rust-lang/crates.io-index" 6289 + checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" 6290 + 6291 + [[package]] 6292 + name = "rustls-webpki" 6293 + version = "0.103.10" 6294 + source = "registry+https://github.com/rust-lang/crates.io-index" 6295 + checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef" 6296 + dependencies = [ 6297 + "ring", 6298 + "rustls-pki-types", 6299 + "untrusted", 6300 + ] 6301 + 6302 + [[package]] 3044 6303 name = "rustversion" 3045 6304 version = "1.0.22" 3046 6305 source = "registry+https://github.com/rust-lang/crates.io-index" 3047 6306 checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 3048 6307 3049 6308 [[package]] 6309 + name = "ryu" 6310 + version = "1.0.23" 6311 + source = "registry+https://github.com/rust-lang/crates.io-index" 6312 + checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 6313 + 6314 + [[package]] 6315 + name = "safemem" 6316 + version = "0.3.3" 6317 + source = "registry+https://github.com/rust-lang/crates.io-index" 6318 + checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 6319 + 6320 + [[package]] 6321 + name = "safetensors" 6322 + version = "0.7.0" 6323 + source = "registry+https://github.com/rust-lang/crates.io-index" 6324 + checksum = "675656c1eabb620b921efea4f9199f97fc86e36dd6ffd1fbbe48d0f59a4987f5" 6325 + dependencies = [ 6326 + "hashbrown 0.16.1", 6327 + "serde", 6328 + "serde_json", 6329 + ] 6330 + 6331 + [[package]] 3050 6332 name = "same-file" 3051 6333 version = "1.0.6" 3052 6334 source = "registry+https://github.com/rust-lang/crates.io-index" 3053 6335 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3054 6336 dependencies = [ 3055 6337 "winapi-util", 6338 + ] 6339 + 6340 + [[package]] 6341 + name = "schannel" 6342 + version = "0.1.29" 6343 + source = "registry+https://github.com/rust-lang/crates.io-index" 6344 + checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 6345 + dependencies = [ 6346 + "windows-sys 0.61.2", 3056 6347 ] 3057 6348 3058 6349 [[package]] ··· 3107 6398 ] 3108 6399 3109 6400 [[package]] 6401 + name = "scoped-tls" 6402 + version = "1.0.1" 6403 + source = "registry+https://github.com/rust-lang/crates.io-index" 6404 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 6405 + 6406 + [[package]] 3110 6407 name = "scopeguard" 3111 6408 version = "1.2.0" 3112 6409 source = "registry+https://github.com/rust-lang/crates.io-index" 3113 6410 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3114 6411 3115 6412 [[package]] 6413 + name = "seahash" 6414 + version = "4.1.0" 6415 + source = "registry+https://github.com/rust-lang/crates.io-index" 6416 + checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 6417 + 6418 + [[package]] 6419 + name = "sec1" 6420 + version = "0.7.3" 6421 + source = "registry+https://github.com/rust-lang/crates.io-index" 6422 + checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 6423 + dependencies = [ 6424 + "base16ct", 6425 + "der 0.7.10", 6426 + "generic-array", 6427 + "pkcs8", 6428 + "subtle", 6429 + "zeroize", 6430 + ] 6431 + 6432 + [[package]] 6433 + name = "security-framework" 6434 + version = "3.7.0" 6435 + source = "registry+https://github.com/rust-lang/crates.io-index" 6436 + checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 6437 + dependencies = [ 6438 + "bitflags 2.11.0", 6439 + "core-foundation 0.10.1", 6440 + "core-foundation-sys", 6441 + "libc", 6442 + "security-framework-sys", 6443 + ] 6444 + 6445 + [[package]] 6446 + name = "security-framework-sys" 6447 + version = "2.17.0" 6448 + source = "registry+https://github.com/rust-lang/crates.io-index" 6449 + checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 6450 + dependencies = [ 6451 + "core-foundation-sys", 6452 + "libc", 6453 + ] 6454 + 6455 + [[package]] 3116 6456 name = "selectors" 3117 6457 version = "0.24.0" 3118 6458 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3160 6500 ] 3161 6501 3162 6502 [[package]] 6503 + name = "send_wrapper" 6504 + version = "0.6.0" 6505 + source = "registry+https://github.com/rust-lang/crates.io-index" 6506 + checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 6507 + 6508 + [[package]] 3163 6509 name = "serde" 3164 6510 version = "1.0.228" 3165 6511 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3182 6528 ] 3183 6529 3184 6530 [[package]] 6531 + name = "serde_bytes" 6532 + version = "0.11.19" 6533 + source = "registry+https://github.com/rust-lang/crates.io-index" 6534 + checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 6535 + dependencies = [ 6536 + "serde", 6537 + "serde_core", 6538 + ] 6539 + 6540 + [[package]] 3185 6541 name = "serde_core" 3186 6542 version = "1.0.228" 3187 6543 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3213 6569 ] 3214 6570 3215 6571 [[package]] 6572 + name = "serde_html_form" 6573 + version = "0.3.2" 6574 + source = "registry+https://github.com/rust-lang/crates.io-index" 6575 + checksum = "2acf96b1d9364968fce46ebb548f1c0e1d7eceae27bdff73865d42e6c7369d94" 6576 + dependencies = [ 6577 + "form_urlencoded", 6578 + "indexmap 2.13.0", 6579 + "itoa", 6580 + "serde_core", 6581 + ] 6582 + 6583 + [[package]] 6584 + name = "serde_ipld_dagcbor" 6585 + version = "0.6.4" 6586 + source = "registry+https://github.com/rust-lang/crates.io-index" 6587 + checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 6588 + dependencies = [ 6589 + "cbor4ii", 6590 + "ipld-core", 6591 + "scopeguard", 6592 + "serde", 6593 + ] 6594 + 6595 + [[package]] 3216 6596 name = "serde_json" 3217 6597 version = "1.0.149" 3218 6598 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3223 6603 "serde", 3224 6604 "serde_core", 3225 6605 "zmij", 6606 + ] 6607 + 6608 + [[package]] 6609 + name = "serde_path_to_error" 6610 + version = "0.1.20" 6611 + source = "registry+https://github.com/rust-lang/crates.io-index" 6612 + checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 6613 + dependencies = [ 6614 + "itoa", 6615 + "serde", 6616 + "serde_core", 3226 6617 ] 3227 6618 3228 6619 [[package]] ··· 3255 6646 ] 3256 6647 3257 6648 [[package]] 6649 + name = "serde_urlencoded" 6650 + version = "0.7.1" 6651 + source = "registry+https://github.com/rust-lang/crates.io-index" 6652 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 6653 + dependencies = [ 6654 + "form_urlencoded", 6655 + "itoa", 6656 + "ryu", 6657 + "serde", 6658 + ] 6659 + 6660 + [[package]] 3258 6661 name = "serde_with" 3259 6662 version = "3.18.0" 3260 6663 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3279 6682 source = "registry+https://github.com/rust-lang/crates.io-index" 3280 6683 checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65" 3281 6684 dependencies = [ 3282 - "darling", 6685 + "darling 0.23.0", 3283 6686 "proc-macro2", 3284 6687 "quote", 3285 6688 "syn 2.0.117", ··· 3327 6730 ] 3328 6731 3329 6732 [[package]] 6733 + name = "sha1_smol" 6734 + version = "1.0.1" 6735 + source = "registry+https://github.com/rust-lang/crates.io-index" 6736 + checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 6737 + 6738 + [[package]] 3330 6739 name = "sha2" 3331 6740 version = "0.10.9" 3332 6741 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3338 6747 ] 3339 6748 3340 6749 [[package]] 6750 + name = "sharded-slab" 6751 + version = "0.1.7" 6752 + source = "registry+https://github.com/rust-lang/crates.io-index" 6753 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 6754 + dependencies = [ 6755 + "lazy_static", 6756 + ] 6757 + 6758 + [[package]] 3341 6759 name = "shlex" 3342 6760 version = "1.3.0" 3343 6761 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3354 6772 ] 3355 6773 3356 6774 [[package]] 6775 + name = "signature" 6776 + version = "2.2.0" 6777 + source = "registry+https://github.com/rust-lang/crates.io-index" 6778 + checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 6779 + dependencies = [ 6780 + "digest", 6781 + "rand_core 0.6.4", 6782 + ] 6783 + 6784 + [[package]] 3357 6785 name = "simd-adler32" 3358 6786 version = "0.3.9" 3359 6787 source = "registry+https://github.com/rust-lang/crates.io-index" 3360 6788 checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" 3361 6789 3362 6790 [[package]] 6791 + name = "simd_cesu8" 6792 + version = "1.1.1" 6793 + source = "registry+https://github.com/rust-lang/crates.io-index" 6794 + checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33" 6795 + dependencies = [ 6796 + "rustc_version", 6797 + "simdutf8", 6798 + ] 6799 + 6800 + [[package]] 6801 + name = "simd_helpers" 6802 + version = "0.1.0" 6803 + source = "registry+https://github.com/rust-lang/crates.io-index" 6804 + checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" 6805 + dependencies = [ 6806 + "quote", 6807 + ] 6808 + 6809 + [[package]] 6810 + name = "simdutf8" 6811 + version = "0.1.5" 6812 + source = "registry+https://github.com/rust-lang/crates.io-index" 6813 + checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 6814 + 6815 + [[package]] 3363 6816 name = "siphasher" 3364 6817 version = "0.3.11" 3365 6818 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3384 6837 checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 3385 6838 3386 6839 [[package]] 6840 + name = "smol_str" 6841 + version = "0.3.6" 6842 + source = "registry+https://github.com/rust-lang/crates.io-index" 6843 + checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523" 6844 + dependencies = [ 6845 + "borsh", 6846 + "serde_core", 6847 + ] 6848 + 6849 + [[package]] 3387 6850 name = "socket2" 3388 6851 version = "0.6.3" 3389 6852 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3394 6857 ] 3395 6858 3396 6859 [[package]] 6860 + name = "socks" 6861 + version = "0.3.4" 6862 + source = "registry+https://github.com/rust-lang/crates.io-index" 6863 + checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b" 6864 + dependencies = [ 6865 + "byteorder", 6866 + "libc", 6867 + "winapi", 6868 + ] 6869 + 6870 + [[package]] 3397 6871 name = "softbuffer" 3398 6872 version = "0.4.8" 3399 6873 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3408 6882 "objc2-foundation", 3409 6883 "objc2-quartz-core", 3410 6884 "raw-window-handle", 3411 - "redox_syscall", 6885 + "redox_syscall 0.5.18", 3412 6886 "tracing", 3413 6887 "wasm-bindgen", 3414 6888 "web-sys", ··· 3442 6916 ] 3443 6917 3444 6918 [[package]] 6919 + name = "spin" 6920 + version = "0.9.8" 6921 + source = "registry+https://github.com/rust-lang/crates.io-index" 6922 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 6923 + dependencies = [ 6924 + "lock_api", 6925 + ] 6926 + 6927 + [[package]] 6928 + name = "spin" 6929 + version = "0.10.0" 6930 + source = "registry+https://github.com/rust-lang/crates.io-index" 6931 + checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 6932 + 6933 + [[package]] 6934 + name = "spki" 6935 + version = "0.7.3" 6936 + source = "registry+https://github.com/rust-lang/crates.io-index" 6937 + checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 6938 + dependencies = [ 6939 + "base64ct", 6940 + "der 0.7.10", 6941 + ] 6942 + 6943 + [[package]] 6944 + name = "spm_precompiled" 6945 + version = "0.1.4" 6946 + source = "registry+https://github.com/rust-lang/crates.io-index" 6947 + checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326" 6948 + dependencies = [ 6949 + "base64 0.13.1", 6950 + "nom 7.1.3", 6951 + "serde", 6952 + "unicode-segmentation", 6953 + ] 6954 + 6955 + [[package]] 6956 + name = "sqlite-vec" 6957 + version = "0.1.7" 6958 + source = "registry+https://github.com/rust-lang/crates.io-index" 6959 + checksum = "76b546e18bc6c1ee5154218bd9a7a8a6807b7cbe7d377923ff76a0b6b399c4d5" 6960 + dependencies = [ 6961 + "cc", 6962 + ] 6963 + 6964 + [[package]] 6965 + name = "sqlite-wasm-rs" 6966 + version = "0.5.2" 6967 + source = "registry+https://github.com/rust-lang/crates.io-index" 6968 + checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b" 6969 + dependencies = [ 6970 + "cc", 6971 + "js-sys", 6972 + "rsqlite-vfs", 6973 + "wasm-bindgen", 6974 + ] 6975 + 6976 + [[package]] 3445 6977 name = "stable_deref_trait" 3446 6978 version = "1.2.1" 3447 6979 source = "registry+https://github.com/rust-lang/crates.io-index" 3448 6980 checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 6981 + 6982 + [[package]] 6983 + name = "static_assertions" 6984 + version = "1.1.0" 6985 + source = "registry+https://github.com/rust-lang/crates.io-index" 6986 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3449 6987 3450 6988 [[package]] 3451 6989 name = "string_cache" ··· 3503 7041 checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3504 7042 3505 7043 [[package]] 7044 + name = "subtle" 7045 + version = "2.6.1" 7046 + source = "registry+https://github.com/rust-lang/crates.io-index" 7047 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 7048 + 7049 + [[package]] 3506 7050 name = "swift-rs" 3507 7051 version = "1.0.7" 3508 7052 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3556 7100 ] 3557 7101 3558 7102 [[package]] 7103 + name = "system-configuration" 7104 + version = "0.7.0" 7105 + source = "registry+https://github.com/rust-lang/crates.io-index" 7106 + checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" 7107 + dependencies = [ 7108 + "bitflags 2.11.0", 7109 + "core-foundation 0.9.4", 7110 + "system-configuration-sys", 7111 + ] 7112 + 7113 + [[package]] 7114 + name = "system-configuration-sys" 7115 + version = "0.6.0" 7116 + source = "registry+https://github.com/rust-lang/crates.io-index" 7117 + checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 7118 + dependencies = [ 7119 + "core-foundation-sys", 7120 + "libc", 7121 + ] 7122 + 7123 + [[package]] 3559 7124 name = "system-deps" 3560 7125 version = "6.2.2" 3561 7126 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3569 7134 ] 3570 7135 3571 7136 [[package]] 7137 + name = "tagptr" 7138 + version = "0.2.0" 7139 + source = "registry+https://github.com/rust-lang/crates.io-index" 7140 + checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 7141 + 7142 + [[package]] 3572 7143 name = "tao" 3573 7144 version = "0.34.8" 3574 7145 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3576 7147 dependencies = [ 3577 7148 "bitflags 2.11.0", 3578 7149 "block2", 3579 - "core-foundation", 7150 + "core-foundation 0.10.1", 3580 7151 "core-graphics", 3581 7152 "crossbeam-channel", 3582 7153 "dispatch2", ··· 3585 7156 "gdkwayland-sys", 3586 7157 "gdkx11-sys", 3587 7158 "gtk", 3588 - "jni", 7159 + "jni 0.21.1", 3589 7160 "libc", 3590 7161 "log", 3591 7162 "ndk", ··· 3618 7189 ] 3619 7190 3620 7191 [[package]] 7192 + name = "tap" 7193 + version = "1.0.1" 7194 + source = "registry+https://github.com/rust-lang/crates.io-index" 7195 + checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 7196 + 7197 + [[package]] 7198 + name = "tar" 7199 + version = "0.4.45" 7200 + source = "registry+https://github.com/rust-lang/crates.io-index" 7201 + checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973" 7202 + dependencies = [ 7203 + "filetime", 7204 + "libc", 7205 + "xattr", 7206 + ] 7207 + 7208 + [[package]] 3621 7209 name = "target-lexicon" 3622 7210 version = "0.12.16" 3623 7211 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3640 7228 "gtk", 3641 7229 "heck 0.5.0", 3642 7230 "http", 3643 - "jni", 7231 + "jni 0.21.1", 3644 7232 "libc", 3645 7233 "log", 3646 7234 "mime", ··· 3653 7241 "percent-encoding", 3654 7242 "plist", 3655 7243 "raw-window-handle", 3656 - "reqwest", 7244 + "reqwest 0.13.2", 3657 7245 "serde", 3658 7246 "serde_json", 3659 7247 "serde_repr", ··· 3703 7291 checksum = "d4a24476afd977c5d5d169f72425868613d82747916dd29e0a357c84c4bd6d29" 3704 7292 dependencies = [ 3705 7293 "base64 0.22.1", 3706 - "brotli", 7294 + "brotli 8.0.2", 3707 7295 "ico", 3708 7296 "json-patch", 3709 7297 "plist", 3710 - "png", 7298 + "png 0.17.16", 3711 7299 "proc-macro2", 3712 7300 "quote", 3713 7301 "semver", ··· 3755 7343 ] 3756 7344 3757 7345 [[package]] 7346 + name = "tauri-plugin-deep-link" 7347 + version = "2.4.7" 7348 + source = "registry+https://github.com/rust-lang/crates.io-index" 7349 + checksum = "94deb2e2e4641514ac496db2cddcfc850d6fc9d51ea17b82292a0490bd20ba5b" 7350 + dependencies = [ 7351 + "dunce", 7352 + "plist", 7353 + "rust-ini", 7354 + "serde", 7355 + "serde_json", 7356 + "tauri", 7357 + "tauri-plugin", 7358 + "tauri-utils", 7359 + "thiserror 2.0.18", 7360 + "tracing", 7361 + "url", 7362 + "windows-registry 0.5.3", 7363 + "windows-result 0.3.4", 7364 + ] 7365 + 7366 + [[package]] 7367 + name = "tauri-plugin-log" 7368 + version = "2.8.0" 7369 + source = "registry+https://github.com/rust-lang/crates.io-index" 7370 + checksum = "7545bd67f070a4500432c826e2e0682146a1d6712aee22a2786490156b574d93" 7371 + dependencies = [ 7372 + "android_logger", 7373 + "byte-unit", 7374 + "fern", 7375 + "log", 7376 + "objc2", 7377 + "objc2-foundation", 7378 + "serde", 7379 + "serde_json", 7380 + "serde_repr", 7381 + "swift-rs", 7382 + "tauri", 7383 + "tauri-plugin", 7384 + "thiserror 2.0.18", 7385 + "time", 7386 + ] 7387 + 7388 + [[package]] 7389 + name = "tauri-plugin-notification" 7390 + version = "2.3.3" 7391 + source = "registry+https://github.com/rust-lang/crates.io-index" 7392 + checksum = "01fc2c5ff41105bd1f7242d8201fdf3efd70749b82fa013a17f2126357d194cc" 7393 + dependencies = [ 7394 + "log", 7395 + "notify-rust", 7396 + "rand 0.9.2", 7397 + "serde", 7398 + "serde_json", 7399 + "serde_repr", 7400 + "tauri", 7401 + "tauri-plugin", 7402 + "thiserror 2.0.18", 7403 + "time", 7404 + "url", 7405 + ] 7406 + 7407 + [[package]] 3758 7408 name = "tauri-plugin-opener" 3759 7409 version = "2.5.3" 3760 7410 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3777 7427 ] 3778 7428 3779 7429 [[package]] 7430 + name = "tauri-plugin-updater" 7431 + version = "2.10.0" 7432 + source = "registry+https://github.com/rust-lang/crates.io-index" 7433 + checksum = "3fe8e9bebd88fc222938ffdfbdcfa0307081423bd01e3252fc337d8bde81fc61" 7434 + dependencies = [ 7435 + "base64 0.22.1", 7436 + "dirs", 7437 + "flate2", 7438 + "futures-util", 7439 + "http", 7440 + "infer", 7441 + "log", 7442 + "minisign-verify", 7443 + "osakit", 7444 + "percent-encoding", 7445 + "reqwest 0.13.2", 7446 + "rustls", 7447 + "semver", 7448 + "serde", 7449 + "serde_json", 7450 + "tar", 7451 + "tauri", 7452 + "tauri-plugin", 7453 + "tempfile", 7454 + "thiserror 2.0.18", 7455 + "time", 7456 + "tokio", 7457 + "url", 7458 + "windows-sys 0.60.2", 7459 + "zip", 7460 + ] 7461 + 7462 + [[package]] 3780 7463 name = "tauri-runtime" 3781 7464 version = "2.10.1" 3782 7465 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3786 7469 "dpi", 3787 7470 "gtk", 3788 7471 "http", 3789 - "jni", 7472 + "jni 0.21.1", 3790 7473 "objc2", 3791 7474 "objc2-ui-kit", 3792 7475 "objc2-web-kit", ··· 3809 7492 dependencies = [ 3810 7493 "gtk", 3811 7494 "http", 3812 - "jni", 7495 + "jni 0.21.1", 3813 7496 "log", 3814 7497 "objc2", 3815 7498 "objc2-app-kit", ··· 3834 7517 checksum = "219a1f983a2af3653f75b5747f76733b0da7ff03069c7a41901a5eb3ace4557d" 3835 7518 dependencies = [ 3836 7519 "anyhow", 3837 - "brotli", 7520 + "brotli 8.0.2", 3838 7521 "cargo_metadata", 3839 7522 "ctor", 3840 7523 "dunce", ··· 3877 7560 ] 3878 7561 3879 7562 [[package]] 7563 + name = "tauri-winrt-notification" 7564 + version = "0.7.2" 7565 + source = "registry+https://github.com/rust-lang/crates.io-index" 7566 + checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9" 7567 + dependencies = [ 7568 + "quick-xml 0.37.5", 7569 + "thiserror 2.0.18", 7570 + "windows", 7571 + "windows-version", 7572 + ] 7573 + 7574 + [[package]] 3880 7575 name = "tempfile" 3881 7576 version = "3.27.0" 3882 7577 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3951 7646 ] 3952 7647 3953 7648 [[package]] 7649 + name = "thread_local" 7650 + version = "1.1.9" 7651 + source = "registry+https://github.com/rust-lang/crates.io-index" 7652 + checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 7653 + dependencies = [ 7654 + "cfg-if", 7655 + ] 7656 + 7657 + [[package]] 7658 + name = "threadpool" 7659 + version = "1.8.1" 7660 + source = "registry+https://github.com/rust-lang/crates.io-index" 7661 + checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 7662 + dependencies = [ 7663 + "num_cpus", 7664 + ] 7665 + 7666 + [[package]] 7667 + name = "tiff" 7668 + version = "0.11.3" 7669 + source = "registry+https://github.com/rust-lang/crates.io-index" 7670 + checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52" 7671 + dependencies = [ 7672 + "fax", 7673 + "flate2", 7674 + "half", 7675 + "quick-error 2.0.1", 7676 + "weezl", 7677 + "zune-jpeg", 7678 + ] 7679 + 7680 + [[package]] 3954 7681 name = "time" 3955 7682 version = "0.3.47" 3956 7683 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3958 7685 dependencies = [ 3959 7686 "deranged", 3960 7687 "itoa", 7688 + "libc", 3961 7689 "num-conv", 7690 + "num_threads", 3962 7691 "powerfmt", 3963 7692 "serde_core", 3964 7693 "time-core", ··· 3982 7711 ] 3983 7712 3984 7713 [[package]] 7714 + name = "tiny-keccak" 7715 + version = "2.0.2" 7716 + source = "registry+https://github.com/rust-lang/crates.io-index" 7717 + checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 7718 + dependencies = [ 7719 + "crunchy", 7720 + ] 7721 + 7722 + [[package]] 7723 + name = "tiny_http" 7724 + version = "0.12.0" 7725 + source = "registry+https://github.com/rust-lang/crates.io-index" 7726 + checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82" 7727 + dependencies = [ 7728 + "ascii", 7729 + "chunked_transfer", 7730 + "httpdate", 7731 + "log", 7732 + ] 7733 + 7734 + [[package]] 3985 7735 name = "tinystr" 3986 7736 version = "0.8.2" 3987 7737 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3992 7742 ] 3993 7743 3994 7744 [[package]] 7745 + name = "tinyvec" 7746 + version = "1.11.0" 7747 + source = "registry+https://github.com/rust-lang/crates.io-index" 7748 + checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 7749 + dependencies = [ 7750 + "tinyvec_macros", 7751 + ] 7752 + 7753 + [[package]] 7754 + name = "tinyvec_macros" 7755 + version = "0.1.1" 7756 + source = "registry+https://github.com/rust-lang/crates.io-index" 7757 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 7758 + 7759 + [[package]] 7760 + name = "tokenizers" 7761 + version = "0.22.2" 7762 + source = "registry+https://github.com/rust-lang/crates.io-index" 7763 + checksum = "b238e22d44a15349529690fb07bd645cf58149a1b1e44d6cb5bd1641ff1a6223" 7764 + dependencies = [ 7765 + "ahash 0.8.12", 7766 + "aho-corasick", 7767 + "compact_str", 7768 + "dary_heap", 7769 + "derive_builder", 7770 + "esaxx-rs", 7771 + "getrandom 0.3.4", 7772 + "itertools", 7773 + "log", 7774 + "macro_rules_attribute", 7775 + "monostate", 7776 + "onig", 7777 + "paste", 7778 + "rand 0.9.2", 7779 + "rayon", 7780 + "rayon-cond", 7781 + "regex", 7782 + "regex-syntax", 7783 + "serde", 7784 + "serde_json", 7785 + "spm_precompiled", 7786 + "thiserror 2.0.18", 7787 + "unicode-normalization-alignments", 7788 + "unicode-segmentation", 7789 + "unicode_categories", 7790 + ] 7791 + 7792 + [[package]] 3995 7793 name = "tokio" 3996 7794 version = "1.50.0" 3997 7795 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4002 7800 "mio", 4003 7801 "pin-project-lite", 4004 7802 "socket2", 7803 + "tokio-macros", 4005 7804 "windows-sys 0.61.2", 4006 7805 ] 4007 7806 4008 7807 [[package]] 7808 + name = "tokio-macros" 7809 + version = "2.6.1" 7810 + source = "registry+https://github.com/rust-lang/crates.io-index" 7811 + checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" 7812 + dependencies = [ 7813 + "proc-macro2", 7814 + "quote", 7815 + "syn 2.0.117", 7816 + ] 7817 + 7818 + [[package]] 7819 + name = "tokio-native-tls" 7820 + version = "0.3.1" 7821 + source = "registry+https://github.com/rust-lang/crates.io-index" 7822 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 7823 + dependencies = [ 7824 + "native-tls", 7825 + "tokio", 7826 + ] 7827 + 7828 + [[package]] 7829 + name = "tokio-rustls" 7830 + version = "0.26.4" 7831 + source = "registry+https://github.com/rust-lang/crates.io-index" 7832 + checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 7833 + dependencies = [ 7834 + "rustls", 7835 + "tokio", 7836 + ] 7837 + 7838 + [[package]] 4009 7839 name = "tokio-util" 4010 7840 version = "0.7.18" 4011 7841 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4014 7844 "bytes", 4015 7845 "futures-core", 4016 7846 "futures-sink", 7847 + "futures-util", 4017 7848 "pin-project-lite", 4018 7849 "tokio", 4019 7850 ] ··· 4144 7975 source = "registry+https://github.com/rust-lang/crates.io-index" 4145 7976 checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 4146 7977 dependencies = [ 7978 + "async-compression", 4147 7979 "bitflags 2.11.0", 4148 7980 "bytes", 7981 + "futures-core", 4149 7982 "futures-util", 4150 7983 "http", 4151 7984 "http-body", 7985 + "http-body-util", 4152 7986 "iri-string", 4153 7987 "pin-project-lite", 7988 + "tokio", 7989 + "tokio-util", 4154 7990 "tower", 4155 7991 "tower-layer", 4156 7992 "tower-service", ··· 4197 8033 checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 4198 8034 dependencies = [ 4199 8035 "once_cell", 8036 + "valuable", 8037 + ] 8038 + 8039 + [[package]] 8040 + name = "tracing-log" 8041 + version = "0.2.0" 8042 + source = "registry+https://github.com/rust-lang/crates.io-index" 8043 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 8044 + dependencies = [ 8045 + "log", 8046 + "once_cell", 8047 + "tracing-core", 8048 + ] 8049 + 8050 + [[package]] 8051 + name = "tracing-subscriber" 8052 + version = "0.3.23" 8053 + source = "registry+https://github.com/rust-lang/crates.io-index" 8054 + checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 8055 + dependencies = [ 8056 + "matchers", 8057 + "nu-ansi-term", 8058 + "once_cell", 8059 + "regex-automata", 8060 + "sharded-slab", 8061 + "smallvec", 8062 + "thread_local", 8063 + "tracing", 8064 + "tracing-core", 8065 + "tracing-log", 8066 + ] 8067 + 8068 + [[package]] 8069 + name = "trait-variant" 8070 + version = "0.1.2" 8071 + source = "registry+https://github.com/rust-lang/crates.io-index" 8072 + checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 8073 + dependencies = [ 8074 + "proc-macro2", 8075 + "quote", 8076 + "syn 2.0.117", 4200 8077 ] 4201 8078 4202 8079 [[package]] ··· 4215 8092 "objc2-core-graphics", 4216 8093 "objc2-foundation", 4217 8094 "once_cell", 4218 - "png", 8095 + "png 0.17.16", 4219 8096 "serde", 4220 8097 "thiserror 2.0.18", 4221 8098 "windows-sys 0.60.2", 4222 8099 ] 4223 8100 4224 8101 [[package]] 8102 + name = "triomphe" 8103 + version = "0.1.15" 8104 + source = "registry+https://github.com/rust-lang/crates.io-index" 8105 + checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39" 8106 + 8107 + [[package]] 4225 8108 name = "try-lock" 4226 8109 version = "0.2.5" 4227 8110 source = "registry+https://github.com/rust-lang/crates.io-index" 4228 8111 checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 8112 + 8113 + [[package]] 8114 + name = "twoway" 8115 + version = "0.1.8" 8116 + source = "registry+https://github.com/rust-lang/crates.io-index" 8117 + checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1" 8118 + dependencies = [ 8119 + "memchr", 8120 + ] 4229 8121 4230 8122 [[package]] 4231 8123 name = "typeid" ··· 4292 8184 ] 4293 8185 4294 8186 [[package]] 8187 + name = "unicase" 8188 + version = "2.9.0" 8189 + source = "registry+https://github.com/rust-lang/crates.io-index" 8190 + checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" 8191 + 8192 + [[package]] 4295 8193 name = "unicode-ident" 4296 8194 version = "1.0.24" 4297 8195 source = "registry+https://github.com/rust-lang/crates.io-index" 4298 8196 checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 4299 8197 4300 8198 [[package]] 8199 + name = "unicode-normalization-alignments" 8200 + version = "0.1.12" 8201 + source = "registry+https://github.com/rust-lang/crates.io-index" 8202 + checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de" 8203 + dependencies = [ 8204 + "smallvec", 8205 + ] 8206 + 8207 + [[package]] 4301 8208 name = "unicode-segmentation" 4302 8209 version = "1.13.2" 4303 8210 source = "registry+https://github.com/rust-lang/crates.io-index" 4304 8211 checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" 4305 8212 4306 8213 [[package]] 8214 + name = "unicode-width" 8215 + version = "0.1.14" 8216 + source = "registry+https://github.com/rust-lang/crates.io-index" 8217 + checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 8218 + 8219 + [[package]] 8220 + name = "unicode-width" 8221 + version = "0.2.2" 8222 + source = "registry+https://github.com/rust-lang/crates.io-index" 8223 + checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" 8224 + 8225 + [[package]] 4307 8226 name = "unicode-xid" 4308 8227 version = "0.2.6" 4309 8228 source = "registry+https://github.com/rust-lang/crates.io-index" 4310 8229 checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 4311 8230 4312 8231 [[package]] 8232 + name = "unicode_categories" 8233 + version = "0.1.1" 8234 + source = "registry+https://github.com/rust-lang/crates.io-index" 8235 + checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 8236 + 8237 + [[package]] 8238 + name = "unsigned-varint" 8239 + version = "0.8.0" 8240 + source = "registry+https://github.com/rust-lang/crates.io-index" 8241 + checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 8242 + 8243 + [[package]] 8244 + name = "untrusted" 8245 + version = "0.9.0" 8246 + source = "registry+https://github.com/rust-lang/crates.io-index" 8247 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 8248 + 8249 + [[package]] 8250 + name = "ureq" 8251 + version = "2.12.1" 8252 + source = "registry+https://github.com/rust-lang/crates.io-index" 8253 + checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d" 8254 + dependencies = [ 8255 + "base64 0.22.1", 8256 + "flate2", 8257 + "log", 8258 + "native-tls", 8259 + "once_cell", 8260 + "rustls", 8261 + "rustls-pki-types", 8262 + "serde", 8263 + "serde_json", 8264 + "socks", 8265 + "url", 8266 + "webpki-roots 0.26.11", 8267 + ] 8268 + 8269 + [[package]] 8270 + name = "ureq" 8271 + version = "3.3.0" 8272 + source = "registry+https://github.com/rust-lang/crates.io-index" 8273 + checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0" 8274 + dependencies = [ 8275 + "base64 0.22.1", 8276 + "der 0.8.0", 8277 + "log", 8278 + "native-tls", 8279 + "percent-encoding", 8280 + "rustls-pki-types", 8281 + "socks", 8282 + "ureq-proto", 8283 + "utf8-zero", 8284 + "webpki-root-certs", 8285 + ] 8286 + 8287 + [[package]] 8288 + name = "ureq-proto" 8289 + version = "0.6.0" 8290 + source = "registry+https://github.com/rust-lang/crates.io-index" 8291 + checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c" 8292 + dependencies = [ 8293 + "base64 0.22.1", 8294 + "http", 8295 + "httparse", 8296 + "log", 8297 + ] 8298 + 8299 + [[package]] 4313 8300 name = "url" 4314 8301 version = "2.5.8" 4315 8302 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4339 8326 version = "0.7.6" 4340 8327 source = "registry+https://github.com/rust-lang/crates.io-index" 4341 8328 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 8329 + 8330 + [[package]] 8331 + name = "utf8-width" 8332 + version = "0.1.8" 8333 + source = "registry+https://github.com/rust-lang/crates.io-index" 8334 + checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" 8335 + 8336 + [[package]] 8337 + name = "utf8-zero" 8338 + version = "0.8.1" 8339 + source = "registry+https://github.com/rust-lang/crates.io-index" 8340 + checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e" 4342 8341 4343 8342 [[package]] 4344 8343 name = "utf8_iter" ··· 4357 8356 "serde_core", 4358 8357 "wasm-bindgen", 4359 8358 ] 8359 + 8360 + [[package]] 8361 + name = "v_frame" 8362 + version = "0.3.9" 8363 + source = "registry+https://github.com/rust-lang/crates.io-index" 8364 + checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2" 8365 + dependencies = [ 8366 + "aligned-vec", 8367 + "num-traits", 8368 + "wasm-bindgen", 8369 + ] 8370 + 8371 + [[package]] 8372 + name = "valuable" 8373 + version = "0.1.1" 8374 + source = "registry+https://github.com/rust-lang/crates.io-index" 8375 + checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 8376 + 8377 + [[package]] 8378 + name = "value-bag" 8379 + version = "1.12.0" 8380 + source = "registry+https://github.com/rust-lang/crates.io-index" 8381 + checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" 8382 + 8383 + [[package]] 8384 + name = "vcpkg" 8385 + version = "0.2.15" 8386 + source = "registry+https://github.com/rust-lang/crates.io-index" 8387 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4360 8388 4361 8389 [[package]] 4362 8390 name = "version-compare" ··· 4518 8546 4519 8547 [[package]] 4520 8548 name = "wasm-streams" 8549 + version = "0.4.2" 8550 + source = "registry+https://github.com/rust-lang/crates.io-index" 8551 + checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 8552 + dependencies = [ 8553 + "futures-util", 8554 + "js-sys", 8555 + "wasm-bindgen", 8556 + "wasm-bindgen-futures", 8557 + "web-sys", 8558 + ] 8559 + 8560 + [[package]] 8561 + name = "wasm-streams" 4521 8562 version = "0.5.0" 4522 8563 source = "registry+https://github.com/rust-lang/crates.io-index" 4523 8564 checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" ··· 4552 8593 ] 4553 8594 4554 8595 [[package]] 8596 + name = "web-time" 8597 + version = "1.1.0" 8598 + source = "registry+https://github.com/rust-lang/crates.io-index" 8599 + checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 8600 + dependencies = [ 8601 + "js-sys", 8602 + "wasm-bindgen", 8603 + ] 8604 + 8605 + [[package]] 4555 8606 name = "web_atoms" 4556 8607 version = "0.2.3" 4557 8608 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4564 8615 ] 4565 8616 4566 8617 [[package]] 8618 + name = "webbrowser" 8619 + version = "1.2.0" 8620 + source = "registry+https://github.com/rust-lang/crates.io-index" 8621 + checksum = "fe985f41e291eecef5e5c0770a18d28390addb03331c043964d9e916453d6f16" 8622 + dependencies = [ 8623 + "core-foundation 0.10.1", 8624 + "jni 0.22.4", 8625 + "log", 8626 + "ndk-context", 8627 + "objc2", 8628 + "objc2-foundation", 8629 + "url", 8630 + "web-sys", 8631 + ] 8632 + 8633 + [[package]] 4567 8634 name = "webkit2gtk" 4568 8635 version = "2.0.2" 4569 8636 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4608 8675 ] 4609 8676 4610 8677 [[package]] 8678 + name = "webpage" 8679 + version = "2.0.1" 8680 + source = "registry+https://github.com/rust-lang/crates.io-index" 8681 + checksum = "70862efc041d46e6bbaa82bb9c34ae0596d090e86cbd14bd9e93b36ee6802eac" 8682 + dependencies = [ 8683 + "html5ever 0.27.0", 8684 + "markup5ever_rcdom", 8685 + "serde_json", 8686 + "url", 8687 + ] 8688 + 8689 + [[package]] 8690 + name = "webpki-root-certs" 8691 + version = "1.0.6" 8692 + source = "registry+https://github.com/rust-lang/crates.io-index" 8693 + checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca" 8694 + dependencies = [ 8695 + "rustls-pki-types", 8696 + ] 8697 + 8698 + [[package]] 8699 + name = "webpki-roots" 8700 + version = "0.26.11" 8701 + source = "registry+https://github.com/rust-lang/crates.io-index" 8702 + checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 8703 + dependencies = [ 8704 + "webpki-roots 1.0.6", 8705 + ] 8706 + 8707 + [[package]] 8708 + name = "webpki-roots" 8709 + version = "1.0.6" 8710 + source = "registry+https://github.com/rust-lang/crates.io-index" 8711 + checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" 8712 + dependencies = [ 8713 + "rustls-pki-types", 8714 + ] 8715 + 8716 + [[package]] 4611 8717 name = "webview2-com" 4612 8718 version = "0.38.2" 4613 8719 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4642 8748 "windows", 4643 8749 "windows-core 0.61.2", 4644 8750 ] 8751 + 8752 + [[package]] 8753 + name = "weezl" 8754 + version = "0.1.12" 8755 + source = "registry+https://github.com/rust-lang/crates.io-index" 8756 + checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" 8757 + 8758 + [[package]] 8759 + name = "widestring" 8760 + version = "1.2.1" 8761 + source = "registry+https://github.com/rust-lang/crates.io-index" 8762 + checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 4645 8763 4646 8764 [[package]] 4647 8765 name = "winapi" ··· 4793 8911 ] 4794 8912 4795 8913 [[package]] 8914 + name = "windows-registry" 8915 + version = "0.5.3" 8916 + source = "registry+https://github.com/rust-lang/crates.io-index" 8917 + checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 8918 + dependencies = [ 8919 + "windows-link 0.1.3", 8920 + "windows-result 0.3.4", 8921 + "windows-strings 0.4.2", 8922 + ] 8923 + 8924 + [[package]] 8925 + name = "windows-registry" 8926 + version = "0.6.1" 8927 + source = "registry+https://github.com/rust-lang/crates.io-index" 8928 + checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 8929 + dependencies = [ 8930 + "windows-link 0.2.1", 8931 + "windows-result 0.4.1", 8932 + "windows-strings 0.5.1", 8933 + ] 8934 + 8935 + [[package]] 4796 8936 name = "windows-result" 4797 8937 version = "0.3.4" 4798 8938 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4835 8975 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4836 8976 dependencies = [ 4837 8977 "windows-targets 0.42.2", 8978 + ] 8979 + 8980 + [[package]] 8981 + name = "windows-sys" 8982 + version = "0.52.0" 8983 + source = "registry+https://github.com/rust-lang/crates.io-index" 8984 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 8985 + dependencies = [ 8986 + "windows-targets 0.52.6", 4838 8987 ] 4839 8988 4840 8989 [[package]] ··· 5217 9366 "gtk", 5218 9367 "http", 5219 9368 "javascriptcore-rs", 5220 - "jni", 9369 + "jni 0.21.1", 5221 9370 "libc", 5222 9371 "ndk", 5223 9372 "objc2", ··· 5241 9390 "windows-core 0.61.2", 5242 9391 "windows-version", 5243 9392 "x11-dl", 9393 + ] 9394 + 9395 + [[package]] 9396 + name = "wyz" 9397 + version = "0.5.1" 9398 + source = "registry+https://github.com/rust-lang/crates.io-index" 9399 + checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 9400 + dependencies = [ 9401 + "tap", 5244 9402 ] 5245 9403 5246 9404 [[package]] ··· 5265 9423 ] 5266 9424 5267 9425 [[package]] 9426 + name = "xattr" 9427 + version = "1.6.1" 9428 + source = "registry+https://github.com/rust-lang/crates.io-index" 9429 + checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" 9430 + dependencies = [ 9431 + "libc", 9432 + "rustix", 9433 + ] 9434 + 9435 + [[package]] 9436 + name = "xml5ever" 9437 + version = "0.18.1" 9438 + source = "registry+https://github.com/rust-lang/crates.io-index" 9439 + checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69" 9440 + dependencies = [ 9441 + "log", 9442 + "mac", 9443 + "markup5ever 0.12.1", 9444 + ] 9445 + 9446 + [[package]] 9447 + name = "y4m" 9448 + version = "0.8.0" 9449 + source = "registry+https://github.com/rust-lang/crates.io-index" 9450 + checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448" 9451 + 9452 + [[package]] 9453 + name = "yansi" 9454 + version = "1.0.1" 9455 + source = "registry+https://github.com/rust-lang/crates.io-index" 9456 + checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 9457 + 9458 + [[package]] 5268 9459 name = "yoke" 5269 9460 version = "0.8.1" 5270 9461 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5390 9581 ] 5391 9582 5392 9583 [[package]] 9584 + name = "zeroize" 9585 + version = "1.8.2" 9586 + source = "registry+https://github.com/rust-lang/crates.io-index" 9587 + checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 9588 + dependencies = [ 9589 + "serde", 9590 + ] 9591 + 9592 + [[package]] 5393 9593 name = "zerotrie" 5394 9594 version = "0.2.3" 5395 9595 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5423 9623 ] 5424 9624 5425 9625 [[package]] 9626 + name = "zip" 9627 + version = "4.6.1" 9628 + source = "registry+https://github.com/rust-lang/crates.io-index" 9629 + checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1" 9630 + dependencies = [ 9631 + "arbitrary", 9632 + "crc32fast", 9633 + "indexmap 2.13.0", 9634 + "memchr", 9635 + ] 9636 + 9637 + [[package]] 5426 9638 name = "zmij" 5427 9639 version = "1.0.21" 5428 9640 source = "registry+https://github.com/rust-lang/crates.io-index" 5429 9641 checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 9642 + 9643 + [[package]] 9644 + name = "zune-core" 9645 + version = "0.5.1" 9646 + source = "registry+https://github.com/rust-lang/crates.io-index" 9647 + checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9" 9648 + 9649 + [[package]] 9650 + name = "zune-inflate" 9651 + version = "0.2.54" 9652 + source = "registry+https://github.com/rust-lang/crates.io-index" 9653 + checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 9654 + dependencies = [ 9655 + "simd-adler32", 9656 + ] 9657 + 9658 + [[package]] 9659 + name = "zune-jpeg" 9660 + version = "0.5.15" 9661 + source = "registry+https://github.com/rust-lang/crates.io-index" 9662 + checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296" 9663 + dependencies = [ 9664 + "zune-core", 9665 + ] 5430 9666 5431 9667 [[package]] 5432 9668 name = "zvariant"
+12
src-tauri/Cargo.toml
··· 22 22 tauri-plugin-opener = "2" 23 23 serde = { version = "1", features = ["derive"] } 24 24 serde_json = "1" 25 + rusqlite = "0.39.0" 26 + jacquard = "0.11.0" 27 + sqlite-vec = "0.1.7" 28 + fastembed = "5.13.0" 29 + tokio = "1.50.0" 30 + tauri-plugin-deep-link = "2" 31 + tauri-plugin-log = "2" 32 + tauri-plugin-notification = "2" 33 + thiserror = "2.0.18" 34 + 35 + [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] 36 + tauri-plugin-updater = "2" 25 37
+8 -3
src-tauri/capabilities/default.json
··· 2 2 "$schema": "../gen/schemas/desktop-schema.json", 3 3 "identifier": "default", 4 4 "description": "Capability for the main window", 5 - "windows": ["main"], 5 + "windows": [ 6 + "main" 7 + ], 6 8 "permissions": [ 7 9 "core:default", 8 - "opener:default" 10 + "opener:default", 11 + "deep-link:default", 12 + "log:default", 13 + "notification:default" 9 14 ] 10 - } 15 + }
+14
src-tauri/capabilities/desktop.json
··· 1 + { 2 + "identifier": "desktop-capability", 3 + "platforms": [ 4 + "macOS", 5 + "windows", 6 + "linux" 7 + ], 8 + "windows": [ 9 + "main" 10 + ], 11 + "permissions": [ 12 + "updater:default" 13 + ] 14 + }
+8
src-tauri/src/lib.rs
··· 7 7 #[cfg_attr(mobile, tauri::mobile_entry_point)] 8 8 pub fn run() { 9 9 tauri::Builder::default() 10 + .plugin(tauri_plugin_updater::Builder::new().build()) 11 + .plugin(tauri_plugin_notification::init()) 12 + .plugin( 13 + tauri_plugin_log::Builder::new() 14 + .level(tauri_plugin_log::log::LevelFilter::Info) 15 + .build(), 16 + ) 17 + .plugin(tauri_plugin_deep_link::init()) 10 18 .plugin(tauri_plugin_opener::init()) 11 19 .invoke_handler(tauri::generate_handler![greet]) 12 20 .run(tauri::generate_context!())