This repository has no description
0

Configure Feed

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

1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "addr2line" 7version = "0.25.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 20[[package]] 21name = "aho-corasick" 22version = "1.1.4" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "android_system_properties" 31version = "0.1.5" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 34dependencies = [ 35 "libc", 36] 37 38[[package]] 39name = "anstream" 40version = "0.6.21" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 43dependencies = [ 44 "anstyle", 45 "anstyle-parse", 46 "anstyle-query", 47 "anstyle-wincon", 48 "colorchoice", 49 "is_terminal_polyfill", 50 "utf8parse", 51] 52 53[[package]] 54name = "anstyle" 55version = "1.0.13" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 58 59[[package]] 60name = "anstyle-parse" 61version = "0.2.7" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 64dependencies = [ 65 "utf8parse", 66] 67 68[[package]] 69name = "anstyle-query" 70version = "1.1.4" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 73dependencies = [ 74 "windows-sys 0.60.2", 75] 76 77[[package]] 78name = "anstyle-wincon" 79version = "3.0.10" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 82dependencies = [ 83 "anstyle", 84 "once_cell_polyfill", 85 "windows-sys 0.60.2", 86] 87 88[[package]] 89name = "anyhow" 90version = "1.0.100" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 93 94[[package]] 95name = "anymap3" 96version = "1.0.1" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "170433209e817da6aae2c51aa0dd443009a613425dd041ebfb2492d1c4c11a25" 99 100[[package]] 101name = "arrayref" 102version = "0.3.9" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" 105 106[[package]] 107name = "arrayvec" 108version = "0.7.6" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 111 112[[package]] 113name = "ascii" 114version = "1.1.0" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16" 117 118[[package]] 119name = "assert_no_alloc" 120version = "1.1.2" 121source = "git+https://github.com/robbert-vdh/rust-assert-no-alloc.git?branch=feature%2Fnested-permit-forbid#a6fb4f62b9624715291e320ea5f0f70e73b035cf" 122dependencies = [ 123 "backtrace", 124 "log", 125] 126 127[[package]] 128name = "async-broadcast" 129version = "0.7.2" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 132dependencies = [ 133 "event-listener", 134 "event-listener-strategy", 135 "futures-core", 136 "pin-project-lite", 137] 138 139[[package]] 140name = "async-channel" 141version = "2.5.0" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 144dependencies = [ 145 "concurrent-queue", 146 "event-listener-strategy", 147 "futures-core", 148 "pin-project-lite", 149] 150 151[[package]] 152name = "async-executor" 153version = "1.13.3" 154source = "registry+https://github.com/rust-lang/crates.io-index" 155checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" 156dependencies = [ 157 "async-task", 158 "concurrent-queue", 159 "fastrand", 160 "futures-lite", 161 "pin-project-lite", 162 "slab", 163] 164 165[[package]] 166name = "async-io" 167version = "2.6.0" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 170dependencies = [ 171 "autocfg", 172 "cfg-if 1.0.4", 173 "concurrent-queue", 174 "futures-io", 175 "futures-lite", 176 "parking", 177 "polling", 178 "rustix", 179 "slab", 180 "windows-sys 0.61.2", 181] 182 183[[package]] 184name = "async-lock" 185version = "3.4.1" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" 188dependencies = [ 189 "event-listener", 190 "event-listener-strategy", 191 "pin-project-lite", 192] 193 194[[package]] 195name = "async-process" 196version = "2.5.0" 197source = "registry+https://github.com/rust-lang/crates.io-index" 198checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" 199dependencies = [ 200 "async-channel", 201 "async-io", 202 "async-lock", 203 "async-signal", 204 "async-task", 205 "blocking", 206 "cfg-if 1.0.4", 207 "event-listener", 208 "futures-lite", 209 "rustix", 210] 211 212[[package]] 213name = "async-recursion" 214version = "1.1.1" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 217dependencies = [ 218 "proc-macro2", 219 "quote", 220 "syn 2.0.110", 221] 222 223[[package]] 224name = "async-signal" 225version = "0.2.13" 226source = "registry+https://github.com/rust-lang/crates.io-index" 227checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" 228dependencies = [ 229 "async-io", 230 "async-lock", 231 "atomic-waker", 232 "cfg-if 1.0.4", 233 "futures-core", 234 "futures-io", 235 "rustix", 236 "signal-hook-registry", 237 "slab", 238 "windows-sys 0.61.2", 239] 240 241[[package]] 242name = "async-task" 243version = "4.7.1" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 246 247[[package]] 248name = "async-trait" 249version = "0.1.89" 250source = "registry+https://github.com/rust-lang/crates.io-index" 251checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 252dependencies = [ 253 "proc-macro2", 254 "quote", 255 "syn 2.0.110", 256] 257 258[[package]] 259name = "atomic-waker" 260version = "1.1.2" 261source = "registry+https://github.com/rust-lang/crates.io-index" 262checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 263 264[[package]] 265name = "atomic_float" 266version = "0.1.0" 267source = "registry+https://github.com/rust-lang/crates.io-index" 268checksum = "62af46d040ba9df09edc6528dae9d8e49f5f3e82f55b7d2ec31a733c38dbc49d" 269 270[[package]] 271name = "atomic_refcell" 272version = "0.1.13" 273source = "registry+https://github.com/rust-lang/crates.io-index" 274checksum = "41e67cd8309bbd06cd603a9e693a784ac2e5d1e955f11286e355089fcab3047c" 275 276[[package]] 277name = "atty" 278version = "0.2.14" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 281dependencies = [ 282 "hermit-abi 0.1.19", 283 "libc", 284 "winapi 0.3.9", 285] 286 287[[package]] 288name = "autocfg" 289version = "1.5.0" 290source = "registry+https://github.com/rust-lang/crates.io-index" 291checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 292 293[[package]] 294name = "axum" 295version = "0.8.6" 296source = "registry+https://github.com/rust-lang/crates.io-index" 297checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871" 298dependencies = [ 299 "axum-core", 300 "bytes 1.10.1", 301 "form_urlencoded", 302 "futures-util", 303 "http", 304 "http-body", 305 "http-body-util", 306 "hyper", 307 "hyper-util", 308 "itoa", 309 "matchit", 310 "memchr", 311 "mime", 312 "percent-encoding", 313 "pin-project-lite", 314 "serde_core", 315 "serde_json", 316 "serde_path_to_error", 317 "serde_urlencoded", 318 "sync_wrapper", 319 "tokio", 320 "tower", 321 "tower-layer", 322 "tower-service", 323 "tracing", 324] 325 326[[package]] 327name = "axum-core" 328version = "0.5.5" 329source = "registry+https://github.com/rust-lang/crates.io-index" 330checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" 331dependencies = [ 332 "bytes 1.10.1", 333 "futures-core", 334 "http", 335 "http-body", 336 "http-body-util", 337 "mime", 338 "pin-project-lite", 339 "sync_wrapper", 340 "tower-layer", 341 "tower-service", 342 "tracing", 343] 344 345[[package]] 346name = "backtrace" 347version = "0.3.76" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" 350dependencies = [ 351 "addr2line", 352 "cfg-if 1.0.4", 353 "libc", 354 "miniz_oxide", 355 "object", 356 "rustc-demangle", 357 "windows-link 0.2.1", 358] 359 360[[package]] 361name = "base64" 362version = "0.22.1" 363source = "registry+https://github.com/rust-lang/crates.io-index" 364checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 365 366[[package]] 367name = "bitflags" 368version = "1.3.2" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 371 372[[package]] 373name = "bitflags" 374version = "2.10.0" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 377 378[[package]] 379name = "block-buffer" 380version = "0.7.3" 381source = "registry+https://github.com/rust-lang/crates.io-index" 382checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 383dependencies = [ 384 "block-padding", 385 "byte-tools", 386 "byteorder", 387 "generic-array 0.12.4", 388] 389 390[[package]] 391name = "block-buffer" 392version = "0.10.4" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 395dependencies = [ 396 "generic-array 0.14.9", 397] 398 399[[package]] 400name = "block-padding" 401version = "0.1.5" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 404dependencies = [ 405 "byte-tools", 406] 407 408[[package]] 409name = "block2" 410version = "0.6.2" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" 413dependencies = [ 414 "objc2", 415] 416 417[[package]] 418name = "blocking" 419version = "1.6.2" 420source = "registry+https://github.com/rust-lang/crates.io-index" 421checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 422dependencies = [ 423 "async-channel", 424 "async-task", 425 "futures-io", 426 "futures-lite", 427 "piper", 428] 429 430[[package]] 431name = "bumpalo" 432version = "3.19.0" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 435 436[[package]] 437name = "byte-tools" 438version = "0.3.1" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 441 442[[package]] 443name = "bytemuck" 444version = "1.24.0" 445source = "registry+https://github.com/rust-lang/crates.io-index" 446checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" 447 448[[package]] 449name = "byteorder" 450version = "1.5.0" 451source = "registry+https://github.com/rust-lang/crates.io-index" 452checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 453 454[[package]] 455name = "byteorder-lite" 456version = "0.1.0" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 459 460[[package]] 461name = "bytes" 462version = "0.4.12" 463source = "registry+https://github.com/rust-lang/crates.io-index" 464checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" 465dependencies = [ 466 "byteorder", 467 "iovec", 468] 469 470[[package]] 471name = "bytes" 472version = "1.10.1" 473source = "registry+https://github.com/rust-lang/crates.io-index" 474checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 475 476[[package]] 477name = "camino" 478version = "1.2.1" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" 481dependencies = [ 482 "serde_core", 483] 484 485[[package]] 486name = "cargo-platform" 487version = "0.1.9" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 490dependencies = [ 491 "serde", 492] 493 494[[package]] 495name = "cargo_metadata" 496version = "0.18.1" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" 499dependencies = [ 500 "camino", 501 "cargo-platform", 502 "semver", 503 "serde", 504 "serde_json", 505 "thiserror 1.0.69", 506] 507 508[[package]] 509name = "cc" 510version = "1.2.45" 511source = "registry+https://github.com/rust-lang/crates.io-index" 512checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe" 513dependencies = [ 514 "find-msvc-tools", 515 "shlex", 516] 517 518[[package]] 519name = "cfg-if" 520version = "0.1.10" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 523 524[[package]] 525name = "cfg-if" 526version = "1.0.4" 527source = "registry+https://github.com/rust-lang/crates.io-index" 528checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 529 530[[package]] 531name = "cfg_aliases" 532version = "0.2.1" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 535 536[[package]] 537name = "channels-console" 538version = "0.3.1" 539source = "registry+https://github.com/rust-lang/crates.io-index" 540checksum = "3e0dd3082cea05e3d0bda6db8f68bcb1ed6601f628cfa6e4626e21b7cd578707" 541dependencies = [ 542 "cfg-if 1.0.4", 543 "crossbeam-channel", 544 "eyre", 545 "futures-util", 546 "prettytable-rs", 547 "serde", 548 "serde_json", 549 "tiny_http", 550] 551 552[[package]] 553name = "chrono" 554version = "0.4.42" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 557dependencies = [ 558 "iana-time-zone", 559 "js-sys", 560 "num-traits", 561 "wasm-bindgen", 562 "windows-link 0.2.1", 563] 564 565[[package]] 566name = "chunked_transfer" 567version = "1.5.0" 568source = "registry+https://github.com/rust-lang/crates.io-index" 569checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901" 570 571[[package]] 572name = "clap-sys" 573version = "0.5.0" 574source = "git+https://github.com/micahrj/clap-sys.git?rev=25d7f53fdb6363ad63fbd80049cb7a42a97ac156#25d7f53fdb6363ad63fbd80049cb7a42a97ac156" 575 576[[package]] 577name = "color_quant" 578version = "1.1.0" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 581 582[[package]] 583name = "colorchoice" 584version = "1.0.4" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 587 588[[package]] 589name = "concurrent-queue" 590version = "2.5.0" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 593dependencies = [ 594 "crossbeam-utils", 595] 596 597[[package]] 598name = "console" 599version = "0.15.11" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" 602dependencies = [ 603 "encode_unicode", 604 "libc", 605 "once_cell", 606 "windows-sys 0.59.0", 607] 608 609[[package]] 610name = "console" 611version = "0.16.1" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4" 614dependencies = [ 615 "encode_unicode", 616 "libc", 617 "once_cell", 618 "unicode-width 0.2.2", 619 "windows-sys 0.61.2", 620] 621 622[[package]] 623name = "core-foundation" 624version = "0.9.4" 625source = "registry+https://github.com/rust-lang/crates.io-index" 626checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 627dependencies = [ 628 "core-foundation-sys", 629 "libc", 630] 631 632[[package]] 633name = "core-foundation-sys" 634version = "0.8.7" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 637 638[[package]] 639name = "core_maths" 640version = "0.1.1" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30" 643dependencies = [ 644 "libm", 645] 646 647[[package]] 648name = "cpufeatures" 649version = "0.2.17" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 652dependencies = [ 653 "libc", 654] 655 656[[package]] 657name = "crc32fast" 658version = "1.5.0" 659source = "registry+https://github.com/rust-lang/crates.io-index" 660checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 661dependencies = [ 662 "cfg-if 1.0.4", 663] 664 665[[package]] 666name = "crossbeam" 667version = "0.8.4" 668source = "registry+https://github.com/rust-lang/crates.io-index" 669checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 670dependencies = [ 671 "crossbeam-channel", 672 "crossbeam-deque", 673 "crossbeam-epoch", 674 "crossbeam-queue", 675 "crossbeam-utils", 676] 677 678[[package]] 679name = "crossbeam-channel" 680version = "0.5.15" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 683dependencies = [ 684 "crossbeam-utils", 685] 686 687[[package]] 688name = "crossbeam-deque" 689version = "0.8.6" 690source = "registry+https://github.com/rust-lang/crates.io-index" 691checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 692dependencies = [ 693 "crossbeam-epoch", 694 "crossbeam-utils", 695] 696 697[[package]] 698name = "crossbeam-epoch" 699version = "0.9.18" 700source = "registry+https://github.com/rust-lang/crates.io-index" 701checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 702dependencies = [ 703 "crossbeam-utils", 704] 705 706[[package]] 707name = "crossbeam-queue" 708version = "0.3.12" 709source = "registry+https://github.com/rust-lang/crates.io-index" 710checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 711dependencies = [ 712 "crossbeam-utils", 713] 714 715[[package]] 716name = "crossbeam-utils" 717version = "0.8.21" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 720 721[[package]] 722name = "crypto-common" 723version = "0.1.6" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 726dependencies = [ 727 "generic-array 0.14.9", 728 "typenum", 729] 730 731[[package]] 732name = "data-encoding" 733version = "2.9.0" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 736 737[[package]] 738name = "data-url" 739version = "0.3.2" 740source = "registry+https://github.com/rust-lang/crates.io-index" 741checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376" 742 743[[package]] 744name = "deranged" 745version = "0.5.5" 746source = "registry+https://github.com/rust-lang/crates.io-index" 747checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 748dependencies = [ 749 "powerfmt", 750] 751 752[[package]] 753name = "deunicode" 754version = "1.6.2" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04" 757 758[[package]] 759name = "diff-match-patch-rs" 760version = "0.5.1" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "f1e836eb966678daed8789e698dbdb1016a260c3cdaca6172585e13580c4e4be" 763dependencies = [ 764 "chrono", 765 "percent-encoding", 766] 767 768[[package]] 769name = "digest" 770version = "0.8.1" 771source = "registry+https://github.com/rust-lang/crates.io-index" 772checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 773dependencies = [ 774 "generic-array 0.12.4", 775] 776 777[[package]] 778name = "digest" 779version = "0.10.7" 780source = "registry+https://github.com/rust-lang/crates.io-index" 781checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 782dependencies = [ 783 "block-buffer 0.10.4", 784 "crypto-common", 785] 786 787[[package]] 788name = "dirs-next" 789version = "2.0.0" 790source = "registry+https://github.com/rust-lang/crates.io-index" 791checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 792dependencies = [ 793 "cfg-if 1.0.4", 794 "dirs-sys-next", 795] 796 797[[package]] 798name = "dirs-sys-next" 799version = "0.1.2" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 802dependencies = [ 803 "libc", 804 "redox_users", 805 "winapi 0.3.9", 806] 807 808[[package]] 809name = "dispatch2" 810version = "0.3.0" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 813dependencies = [ 814 "bitflags 2.10.0", 815 "objc2", 816] 817 818[[package]] 819name = "displaydoc" 820version = "0.2.5" 821source = "registry+https://github.com/rust-lang/crates.io-index" 822checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 823dependencies = [ 824 "proc-macro2", 825 "quote", 826 "syn 2.0.110", 827] 828 829[[package]] 830name = "dna-analysis-machine" 831version = "0.1.0" 832dependencies = [ 833 "insta", 834 "itertools 0.12.1", 835 "rand 0.9.2", 836 "shapemaker", 837] 838 839[[package]] 840name = "easing-function" 841version = "0.1.1" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "1ff18235504129e34c411871066cfa4ad108ed6a28d5fb2417057aff7f99bee4" 844 845[[package]] 846name = "either" 847version = "1.15.0" 848source = "registry+https://github.com/rust-lang/crates.io-index" 849checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 850 851[[package]] 852name = "encode_unicode" 853version = "1.0.0" 854source = "registry+https://github.com/rust-lang/crates.io-index" 855checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 856 857[[package]] 858name = "endi" 859version = "1.1.0" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 862 863[[package]] 864name = "enumflags2" 865version = "0.7.12" 866source = "registry+https://github.com/rust-lang/crates.io-index" 867checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 868dependencies = [ 869 "enumflags2_derive", 870 "serde", 871] 872 873[[package]] 874name = "enumflags2_derive" 875version = "0.7.12" 876source = "registry+https://github.com/rust-lang/crates.io-index" 877checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 878dependencies = [ 879 "proc-macro2", 880 "quote", 881 "syn 2.0.110", 882] 883 884[[package]] 885name = "env_filter" 886version = "0.1.4" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" 889dependencies = [ 890 "log", 891 "regex", 892] 893 894[[package]] 895name = "env_logger" 896version = "0.11.8" 897source = "registry+https://github.com/rust-lang/crates.io-index" 898checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" 899dependencies = [ 900 "anstream", 901 "anstyle", 902 "env_filter", 903 "jiff", 904 "log", 905] 906 907[[package]] 908name = "equivalent" 909version = "1.0.2" 910source = "registry+https://github.com/rust-lang/crates.io-index" 911checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 912 913[[package]] 914name = "errno" 915version = "0.3.14" 916source = "registry+https://github.com/rust-lang/crates.io-index" 917checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 918dependencies = [ 919 "libc", 920 "windows-sys 0.61.2", 921] 922 923[[package]] 924name = "euclid" 925version = "0.22.11" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48" 928dependencies = [ 929 "num-traits", 930] 931 932[[package]] 933name = "event-listener" 934version = "5.4.1" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 937dependencies = [ 938 "concurrent-queue", 939 "parking", 940 "pin-project-lite", 941] 942 943[[package]] 944name = "event-listener-strategy" 945version = "0.5.4" 946source = "registry+https://github.com/rust-lang/crates.io-index" 947checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 948dependencies = [ 949 "event-listener", 950 "pin-project-lite", 951] 952 953[[package]] 954name = "eyre" 955version = "0.6.12" 956source = "registry+https://github.com/rust-lang/crates.io-index" 957checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" 958dependencies = [ 959 "indenter", 960 "once_cell", 961] 962 963[[package]] 964name = "fake-simd" 965version = "0.1.2" 966source = "registry+https://github.com/rust-lang/crates.io-index" 967checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 968 969[[package]] 970name = "fastrand" 971version = "2.3.0" 972source = "registry+https://github.com/rust-lang/crates.io-index" 973checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 974 975[[package]] 976name = "fdeflate" 977version = "0.3.7" 978source = "registry+https://github.com/rust-lang/crates.io-index" 979checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 980dependencies = [ 981 "simd-adler32", 982] 983 984[[package]] 985name = "find-msvc-tools" 986version = "0.1.4" 987source = "registry+https://github.com/rust-lang/crates.io-index" 988checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" 989 990[[package]] 991name = "flate2" 992version = "1.1.5" 993source = "registry+https://github.com/rust-lang/crates.io-index" 994checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" 995dependencies = [ 996 "crc32fast", 997 "miniz_oxide", 998] 999 1000[[package]] 1001name = "float-cmp" 1002version = "0.9.0" 1003source = "registry+https://github.com/rust-lang/crates.io-index" 1004checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 1005 1006[[package]] 1007name = "fnv" 1008version = "1.0.7" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1011 1012[[package]] 1013name = "fontconfig-parser" 1014version = "0.5.8" 1015source = "registry+https://github.com/rust-lang/crates.io-index" 1016checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646" 1017dependencies = [ 1018 "roxmltree 0.20.0", 1019] 1020 1021[[package]] 1022name = "fontdb" 1023version = "0.23.0" 1024source = "registry+https://github.com/rust-lang/crates.io-index" 1025checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905" 1026dependencies = [ 1027 "fontconfig-parser", 1028 "log", 1029 "memmap2", 1030 "slotmap", 1031 "tinyvec", 1032 "ttf-parser", 1033] 1034 1035[[package]] 1036name = "form_urlencoded" 1037version = "1.2.2" 1038source = "registry+https://github.com/rust-lang/crates.io-index" 1039checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 1040dependencies = [ 1041 "percent-encoding", 1042] 1043 1044[[package]] 1045name = "fuchsia-zircon" 1046version = "0.3.3" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 1049dependencies = [ 1050 "bitflags 1.3.2", 1051 "fuchsia-zircon-sys", 1052] 1053 1054[[package]] 1055name = "fuchsia-zircon-sys" 1056version = "0.3.3" 1057source = "registry+https://github.com/rust-lang/crates.io-index" 1058checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 1059 1060[[package]] 1061name = "futures-channel" 1062version = "0.3.31" 1063source = "registry+https://github.com/rust-lang/crates.io-index" 1064checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1065dependencies = [ 1066 "futures-core", 1067] 1068 1069[[package]] 1070name = "futures-core" 1071version = "0.3.31" 1072source = "registry+https://github.com/rust-lang/crates.io-index" 1073checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1074 1075[[package]] 1076name = "futures-io" 1077version = "0.3.31" 1078source = "registry+https://github.com/rust-lang/crates.io-index" 1079checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1080 1081[[package]] 1082name = "futures-lite" 1083version = "2.6.1" 1084source = "registry+https://github.com/rust-lang/crates.io-index" 1085checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1086dependencies = [ 1087 "fastrand", 1088 "futures-core", 1089 "futures-io", 1090 "parking", 1091 "pin-project-lite", 1092] 1093 1094[[package]] 1095name = "futures-macro" 1096version = "0.3.31" 1097source = "registry+https://github.com/rust-lang/crates.io-index" 1098checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1099dependencies = [ 1100 "proc-macro2", 1101 "quote", 1102 "syn 2.0.110", 1103] 1104 1105[[package]] 1106name = "futures-task" 1107version = "0.3.31" 1108source = "registry+https://github.com/rust-lang/crates.io-index" 1109checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1110 1111[[package]] 1112name = "futures-util" 1113version = "0.3.31" 1114source = "registry+https://github.com/rust-lang/crates.io-index" 1115checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1116dependencies = [ 1117 "futures-core", 1118 "futures-macro", 1119 "futures-task", 1120 "pin-project-lite", 1121 "pin-utils", 1122 "slab", 1123] 1124 1125[[package]] 1126name = "generic-array" 1127version = "0.12.4" 1128source = "registry+https://github.com/rust-lang/crates.io-index" 1129checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 1130dependencies = [ 1131 "typenum", 1132] 1133 1134[[package]] 1135name = "generic-array" 1136version = "0.14.9" 1137source = "registry+https://github.com/rust-lang/crates.io-index" 1138checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" 1139dependencies = [ 1140 "typenum", 1141 "version_check", 1142] 1143 1144[[package]] 1145name = "getrandom" 1146version = "0.1.16" 1147source = "registry+https://github.com/rust-lang/crates.io-index" 1148checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1149dependencies = [ 1150 "cfg-if 1.0.4", 1151 "libc", 1152 "wasi 0.9.0+wasi-snapshot-preview1", 1153] 1154 1155[[package]] 1156name = "getrandom" 1157version = "0.2.16" 1158source = "registry+https://github.com/rust-lang/crates.io-index" 1159checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 1160dependencies = [ 1161 "cfg-if 1.0.4", 1162 "js-sys", 1163 "libc", 1164 "wasi 0.11.1+wasi-snapshot-preview1", 1165 "wasm-bindgen", 1166] 1167 1168[[package]] 1169name = "getrandom" 1170version = "0.3.4" 1171source = "registry+https://github.com/rust-lang/crates.io-index" 1172checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1173dependencies = [ 1174 "cfg-if 1.0.4", 1175 "libc", 1176 "r-efi", 1177 "wasip2", 1178] 1179 1180[[package]] 1181name = "gif" 1182version = "0.13.3" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b" 1185dependencies = [ 1186 "color_quant", 1187 "weezl", 1188] 1189 1190[[package]] 1191name = "gimli" 1192version = "0.32.3" 1193source = "registry+https://github.com/rust-lang/crates.io-index" 1194checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" 1195 1196[[package]] 1197name = "goblin" 1198version = "0.6.1" 1199source = "registry+https://github.com/rust-lang/crates.io-index" 1200checksum = "0d6b4de4a8eb6c46a8c77e1d3be942cb9a8bf073c22374578e5ba4b08ed0ff68" 1201dependencies = [ 1202 "log", 1203 "plain", 1204 "scroll", 1205] 1206 1207[[package]] 1208name = "half" 1209version = "1.8.3" 1210source = "registry+https://github.com/rust-lang/crates.io-index" 1211checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" 1212 1213[[package]] 1214name = "hashbrown" 1215version = "0.16.0" 1216source = "registry+https://github.com/rust-lang/crates.io-index" 1217checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 1218 1219[[package]] 1220name = "heck" 1221version = "0.5.0" 1222source = "registry+https://github.com/rust-lang/crates.io-index" 1223checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1224 1225[[package]] 1226name = "hermit-abi" 1227version = "0.1.19" 1228source = "registry+https://github.com/rust-lang/crates.io-index" 1229checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1230dependencies = [ 1231 "libc", 1232] 1233 1234[[package]] 1235name = "hermit-abi" 1236version = "0.5.2" 1237source = "registry+https://github.com/rust-lang/crates.io-index" 1238checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1239 1240[[package]] 1241name = "hex" 1242version = "0.4.3" 1243source = "registry+https://github.com/rust-lang/crates.io-index" 1244checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1245 1246[[package]] 1247name = "http" 1248version = "1.3.1" 1249source = "registry+https://github.com/rust-lang/crates.io-index" 1250checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1251dependencies = [ 1252 "bytes 1.10.1", 1253 "fnv", 1254 "itoa", 1255] 1256 1257[[package]] 1258name = "http-body" 1259version = "1.0.1" 1260source = "registry+https://github.com/rust-lang/crates.io-index" 1261checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1262dependencies = [ 1263 "bytes 1.10.1", 1264 "http", 1265] 1266 1267[[package]] 1268name = "http-body-util" 1269version = "0.1.3" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1272dependencies = [ 1273 "bytes 1.10.1", 1274 "futures-core", 1275 "http", 1276 "http-body", 1277 "pin-project-lite", 1278] 1279 1280[[package]] 1281name = "httparse" 1282version = "1.10.1" 1283source = "registry+https://github.com/rust-lang/crates.io-index" 1284checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1285 1286[[package]] 1287name = "httpdate" 1288version = "1.0.3" 1289source = "registry+https://github.com/rust-lang/crates.io-index" 1290checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1291 1292[[package]] 1293name = "hyper" 1294version = "1.7.0" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" 1297dependencies = [ 1298 "atomic-waker", 1299 "bytes 1.10.1", 1300 "futures-channel", 1301 "futures-core", 1302 "http", 1303 "http-body", 1304 "httparse", 1305 "httpdate", 1306 "itoa", 1307 "pin-project-lite", 1308 "pin-utils", 1309 "smallvec", 1310 "tokio", 1311] 1312 1313[[package]] 1314name = "hyper-util" 1315version = "0.1.17" 1316source = "registry+https://github.com/rust-lang/crates.io-index" 1317checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" 1318dependencies = [ 1319 "bytes 1.10.1", 1320 "futures-core", 1321 "http", 1322 "http-body", 1323 "hyper", 1324 "pin-project-lite", 1325 "tokio", 1326 "tower-service", 1327] 1328 1329[[package]] 1330name = "iana-time-zone" 1331version = "0.1.64" 1332source = "registry+https://github.com/rust-lang/crates.io-index" 1333checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 1334dependencies = [ 1335 "android_system_properties", 1336 "core-foundation-sys", 1337 "iana-time-zone-haiku", 1338 "js-sys", 1339 "log", 1340 "wasm-bindgen", 1341 "windows-core 0.62.2", 1342] 1343 1344[[package]] 1345name = "iana-time-zone-haiku" 1346version = "0.1.2" 1347source = "registry+https://github.com/rust-lang/crates.io-index" 1348checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1349dependencies = [ 1350 "cc", 1351] 1352 1353[[package]] 1354name = "icu_collections" 1355version = "2.1.1" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 1358dependencies = [ 1359 "displaydoc", 1360 "potential_utf", 1361 "yoke", 1362 "zerofrom", 1363 "zerovec", 1364] 1365 1366[[package]] 1367name = "icu_locale_core" 1368version = "2.1.1" 1369source = "registry+https://github.com/rust-lang/crates.io-index" 1370checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 1371dependencies = [ 1372 "displaydoc", 1373 "litemap", 1374 "tinystr", 1375 "writeable", 1376 "zerovec", 1377] 1378 1379[[package]] 1380name = "icu_normalizer" 1381version = "2.1.1" 1382source = "registry+https://github.com/rust-lang/crates.io-index" 1383checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 1384dependencies = [ 1385 "icu_collections", 1386 "icu_normalizer_data", 1387 "icu_properties", 1388 "icu_provider", 1389 "smallvec", 1390 "zerovec", 1391] 1392 1393[[package]] 1394name = "icu_normalizer_data" 1395version = "2.1.1" 1396source = "registry+https://github.com/rust-lang/crates.io-index" 1397checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 1398 1399[[package]] 1400name = "icu_properties" 1401version = "2.1.1" 1402source = "registry+https://github.com/rust-lang/crates.io-index" 1403checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" 1404dependencies = [ 1405 "icu_collections", 1406 "icu_locale_core", 1407 "icu_properties_data", 1408 "icu_provider", 1409 "zerotrie", 1410 "zerovec", 1411] 1412 1413[[package]] 1414name = "icu_properties_data" 1415version = "2.1.1" 1416source = "registry+https://github.com/rust-lang/crates.io-index" 1417checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" 1418 1419[[package]] 1420name = "icu_provider" 1421version = "2.1.1" 1422source = "registry+https://github.com/rust-lang/crates.io-index" 1423checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 1424dependencies = [ 1425 "displaydoc", 1426 "icu_locale_core", 1427 "writeable", 1428 "yoke", 1429 "zerofrom", 1430 "zerotrie", 1431 "zerovec", 1432] 1433 1434[[package]] 1435name = "idna" 1436version = "1.1.0" 1437source = "registry+https://github.com/rust-lang/crates.io-index" 1438checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1439dependencies = [ 1440 "idna_adapter", 1441 "smallvec", 1442 "utf8_iter", 1443] 1444 1445[[package]] 1446name = "idna_adapter" 1447version = "1.2.1" 1448source = "registry+https://github.com/rust-lang/crates.io-index" 1449checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1450dependencies = [ 1451 "icu_normalizer", 1452 "icu_properties", 1453] 1454 1455[[package]] 1456name = "image-webp" 1457version = "0.2.4" 1458source = "registry+https://github.com/rust-lang/crates.io-index" 1459checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" 1460dependencies = [ 1461 "byteorder-lite", 1462 "quick-error", 1463] 1464 1465[[package]] 1466name = "imagesize" 1467version = "0.13.0" 1468source = "registry+https://github.com/rust-lang/crates.io-index" 1469checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285" 1470 1471[[package]] 1472name = "indenter" 1473version = "0.3.4" 1474source = "registry+https://github.com/rust-lang/crates.io-index" 1475checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5" 1476 1477[[package]] 1478name = "indexmap" 1479version = "2.12.0" 1480source = "registry+https://github.com/rust-lang/crates.io-index" 1481checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" 1482dependencies = [ 1483 "equivalent", 1484 "hashbrown", 1485] 1486 1487[[package]] 1488name = "indicatif" 1489version = "0.18.2" 1490source = "registry+https://github.com/rust-lang/crates.io-index" 1491checksum = "ade6dfcba0dfb62ad59e59e7241ec8912af34fd29e0e743e3db992bd278e8b65" 1492dependencies = [ 1493 "console 0.16.1", 1494 "portable-atomic", 1495 "unicode-width 0.2.2", 1496 "unit-prefix", 1497 "web-time", 1498] 1499 1500[[package]] 1501name = "insta" 1502version = "1.43.2" 1503source = "registry+https://github.com/rust-lang/crates.io-index" 1504checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0" 1505dependencies = [ 1506 "console 0.15.11", 1507 "once_cell", 1508 "similar", 1509] 1510 1511[[package]] 1512name = "iovec" 1513version = "0.1.4" 1514source = "registry+https://github.com/rust-lang/crates.io-index" 1515checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 1516dependencies = [ 1517 "libc", 1518] 1519 1520[[package]] 1521name = "is-terminal" 1522version = "0.4.17" 1523source = "registry+https://github.com/rust-lang/crates.io-index" 1524checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" 1525dependencies = [ 1526 "hermit-abi 0.5.2", 1527 "libc", 1528 "windows-sys 0.61.2", 1529] 1530 1531[[package]] 1532name = "is_terminal_polyfill" 1533version = "1.70.2" 1534source = "registry+https://github.com/rust-lang/crates.io-index" 1535checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 1536 1537[[package]] 1538name = "itertools" 1539version = "0.12.1" 1540source = "registry+https://github.com/rust-lang/crates.io-index" 1541checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1542dependencies = [ 1543 "either", 1544] 1545 1546[[package]] 1547name = "itertools" 1548version = "0.14.0" 1549source = "registry+https://github.com/rust-lang/crates.io-index" 1550checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 1551dependencies = [ 1552 "either", 1553] 1554 1555[[package]] 1556name = "itoa" 1557version = "1.0.15" 1558source = "registry+https://github.com/rust-lang/crates.io-index" 1559checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1560 1561[[package]] 1562name = "jiff" 1563version = "0.2.16" 1564source = "registry+https://github.com/rust-lang/crates.io-index" 1565checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35" 1566dependencies = [ 1567 "jiff-static", 1568 "log", 1569 "portable-atomic", 1570 "portable-atomic-util", 1571 "serde_core", 1572] 1573 1574[[package]] 1575name = "jiff-static" 1576version = "0.2.16" 1577source = "registry+https://github.com/rust-lang/crates.io-index" 1578checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69" 1579dependencies = [ 1580 "proc-macro2", 1581 "quote", 1582 "syn 2.0.110", 1583] 1584 1585[[package]] 1586name = "js-sys" 1587version = "0.3.82" 1588source = "registry+https://github.com/rust-lang/crates.io-index" 1589checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" 1590dependencies = [ 1591 "once_cell", 1592 "wasm-bindgen", 1593] 1594 1595[[package]] 1596name = "kernel32-sys" 1597version = "0.2.2" 1598source = "registry+https://github.com/rust-lang/crates.io-index" 1599checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1600dependencies = [ 1601 "winapi 0.2.8", 1602 "winapi-build", 1603] 1604 1605[[package]] 1606name = "kurbo" 1607version = "0.11.3" 1608source = "registry+https://github.com/rust-lang/crates.io-index" 1609checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62" 1610dependencies = [ 1611 "arrayvec", 1612 "euclid", 1613 "smallvec", 1614] 1615 1616[[package]] 1617name = "lazy_static" 1618version = "1.5.0" 1619source = "registry+https://github.com/rust-lang/crates.io-index" 1620checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1621 1622[[package]] 1623name = "lazycell" 1624version = "1.3.0" 1625source = "registry+https://github.com/rust-lang/crates.io-index" 1626checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 1627 1628[[package]] 1629name = "libc" 1630version = "0.2.177" 1631source = "registry+https://github.com/rust-lang/crates.io-index" 1632checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 1633 1634[[package]] 1635name = "libm" 1636version = "0.2.15" 1637source = "registry+https://github.com/rust-lang/crates.io-index" 1638checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 1639 1640[[package]] 1641name = "libredox" 1642version = "0.1.10" 1643source = "registry+https://github.com/rust-lang/crates.io-index" 1644checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" 1645dependencies = [ 1646 "bitflags 2.10.0", 1647 "libc", 1648] 1649 1650[[package]] 1651name = "linux-raw-sys" 1652version = "0.11.0" 1653source = "registry+https://github.com/rust-lang/crates.io-index" 1654checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 1655 1656[[package]] 1657name = "litemap" 1658version = "0.8.1" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 1661 1662[[package]] 1663name = "lock_api" 1664version = "0.4.14" 1665source = "registry+https://github.com/rust-lang/crates.io-index" 1666checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1667dependencies = [ 1668 "scopeguard", 1669] 1670 1671[[package]] 1672name = "log" 1673version = "0.4.28" 1674source = "registry+https://github.com/rust-lang/crates.io-index" 1675checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 1676 1677[[package]] 1678name = "mac-notification-sys" 1679version = "0.6.8" 1680source = "registry+https://github.com/rust-lang/crates.io-index" 1681checksum = "4ee70bb2bba058d58e252d2944582d634fc884fc9c489a966d428dedcf653e97" 1682dependencies = [ 1683 "cc", 1684 "objc2", 1685 "objc2-foundation", 1686 "time", 1687] 1688 1689[[package]] 1690name = "malloc_buf" 1691version = "0.0.6" 1692source = "registry+https://github.com/rust-lang/crates.io-index" 1693checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1694dependencies = [ 1695 "libc", 1696] 1697 1698[[package]] 1699name = "matchit" 1700version = "0.8.4" 1701source = "registry+https://github.com/rust-lang/crates.io-index" 1702checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 1703 1704[[package]] 1705name = "measure_time" 1706version = "0.9.0" 1707source = "registry+https://github.com/rust-lang/crates.io-index" 1708checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e" 1709dependencies = [ 1710 "log", 1711] 1712 1713[[package]] 1714name = "memchr" 1715version = "2.7.6" 1716source = "registry+https://github.com/rust-lang/crates.io-index" 1717checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 1718 1719[[package]] 1720name = "memmap2" 1721version = "0.9.9" 1722source = "registry+https://github.com/rust-lang/crates.io-index" 1723checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" 1724dependencies = [ 1725 "libc", 1726] 1727 1728[[package]] 1729name = "memoffset" 1730version = "0.9.1" 1731source = "registry+https://github.com/rust-lang/crates.io-index" 1732checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 1733dependencies = [ 1734 "autocfg", 1735] 1736 1737[[package]] 1738name = "midi-consts" 1739version = "0.1.0" 1740source = "registry+https://github.com/rust-lang/crates.io-index" 1741checksum = "6f2dd5c7f8aaf48a76e389068ab25ed80bdbc226b887f9013844c415698c9952" 1742 1743[[package]] 1744name = "midly" 1745version = "0.5.3" 1746source = "registry+https://github.com/rust-lang/crates.io-index" 1747checksum = "207d755f4cb882d20c4da58d707ca9130a0c9bc5061f657a4f299b8e36362b7a" 1748dependencies = [ 1749 "rayon", 1750] 1751 1752[[package]] 1753name = "mime" 1754version = "0.3.17" 1755source = "registry+https://github.com/rust-lang/crates.io-index" 1756checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1757 1758[[package]] 1759name = "miniz_oxide" 1760version = "0.8.9" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 1763dependencies = [ 1764 "adler2", 1765 "simd-adler32", 1766] 1767 1768[[package]] 1769name = "mio" 1770version = "0.6.23" 1771source = "registry+https://github.com/rust-lang/crates.io-index" 1772checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 1773dependencies = [ 1774 "cfg-if 0.1.10", 1775 "fuchsia-zircon", 1776 "fuchsia-zircon-sys", 1777 "iovec", 1778 "kernel32-sys", 1779 "libc", 1780 "log", 1781 "miow", 1782 "net2", 1783 "slab", 1784 "winapi 0.2.8", 1785] 1786 1787[[package]] 1788name = "mio" 1789version = "1.1.0" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" 1792dependencies = [ 1793 "libc", 1794 "wasi 0.11.1+wasi-snapshot-preview1", 1795 "windows-sys 0.61.2", 1796] 1797 1798[[package]] 1799name = "mio-extras" 1800version = "2.0.6" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" 1803dependencies = [ 1804 "lazycell", 1805 "log", 1806 "mio 0.6.23", 1807 "slab", 1808] 1809 1810[[package]] 1811name = "miow" 1812version = "0.2.2" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 1815dependencies = [ 1816 "kernel32-sys", 1817 "net2", 1818 "winapi 0.2.8", 1819 "ws2_32-sys", 1820] 1821 1822[[package]] 1823name = "nanoid" 1824version = "0.4.0" 1825source = "registry+https://github.com/rust-lang/crates.io-index" 1826checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8" 1827dependencies = [ 1828 "rand 0.8.5", 1829] 1830 1831[[package]] 1832name = "net2" 1833version = "0.2.39" 1834source = "registry+https://github.com/rust-lang/crates.io-index" 1835checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac" 1836dependencies = [ 1837 "cfg-if 0.1.10", 1838 "libc", 1839 "winapi 0.3.9", 1840] 1841 1842[[package]] 1843name = "nih_log" 1844version = "0.3.1" 1845source = "registry+https://github.com/rust-lang/crates.io-index" 1846checksum = "d0cdb52ef79af48ae110401c883bdb9c15e0306a99ab6ecf18bc52068b668e54" 1847dependencies = [ 1848 "atty", 1849 "log", 1850 "once_cell", 1851 "termcolor", 1852 "time", 1853 "windows 0.44.0", 1854] 1855 1856[[package]] 1857name = "nih_plug" 1858version = "0.0.0" 1859source = "git+https://github.com/robbert-vdh/nih-plug.git#28b149ec4d62757d0b448809148a0c3ca6e09a95" 1860dependencies = [ 1861 "anyhow", 1862 "anymap3", 1863 "assert_no_alloc", 1864 "atomic_float", 1865 "atomic_refcell", 1866 "backtrace", 1867 "bitflags 1.3.2", 1868 "cfg-if 1.0.4", 1869 "clap-sys", 1870 "core-foundation", 1871 "crossbeam", 1872 "libc", 1873 "log", 1874 "midi-consts", 1875 "nih_log", 1876 "nih_plug_derive", 1877 "objc", 1878 "parking_lot", 1879 "raw-window-handle", 1880 "serde", 1881 "serde_json", 1882 "vst3-sys", 1883 "widestring", 1884 "windows 0.44.0", 1885] 1886 1887[[package]] 1888name = "nih_plug_derive" 1889version = "0.1.0" 1890source = "git+https://github.com/robbert-vdh/nih-plug.git#28b149ec4d62757d0b448809148a0c3ca6e09a95" 1891dependencies = [ 1892 "proc-macro2", 1893 "quote", 1894 "syn 1.0.109", 1895] 1896 1897[[package]] 1898name = "nih_plug_xtask" 1899version = "0.1.0" 1900source = "git+https://github.com/robbert-vdh/nih-plug.git#28b149ec4d62757d0b448809148a0c3ca6e09a95" 1901dependencies = [ 1902 "anyhow", 1903 "cargo_metadata", 1904 "goblin", 1905 "reflink", 1906 "serde", 1907 "toml 0.7.8", 1908] 1909 1910[[package]] 1911name = "nix" 1912version = "0.30.1" 1913source = "registry+https://github.com/rust-lang/crates.io-index" 1914checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 1915dependencies = [ 1916 "bitflags 2.10.0", 1917 "cfg-if 1.0.4", 1918 "cfg_aliases", 1919 "libc", 1920 "memoffset", 1921] 1922 1923[[package]] 1924name = "notify-rust" 1925version = "4.11.7" 1926source = "registry+https://github.com/rust-lang/crates.io-index" 1927checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400" 1928dependencies = [ 1929 "futures-lite", 1930 "log", 1931 "mac-notification-sys", 1932 "serde", 1933 "tauri-winrt-notification", 1934 "zbus", 1935] 1936 1937[[package]] 1938name = "num" 1939version = "0.4.3" 1940source = "registry+https://github.com/rust-lang/crates.io-index" 1941checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 1942dependencies = [ 1943 "num-bigint", 1944 "num-complex", 1945 "num-integer", 1946 "num-iter", 1947 "num-rational", 1948 "num-traits", 1949] 1950 1951[[package]] 1952name = "num-bigint" 1953version = "0.4.6" 1954source = "registry+https://github.com/rust-lang/crates.io-index" 1955checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 1956dependencies = [ 1957 "num-integer", 1958 "num-traits", 1959] 1960 1961[[package]] 1962name = "num-complex" 1963version = "0.4.6" 1964source = "registry+https://github.com/rust-lang/crates.io-index" 1965checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 1966dependencies = [ 1967 "num-traits", 1968] 1969 1970[[package]] 1971name = "num-conv" 1972version = "0.1.0" 1973source = "registry+https://github.com/rust-lang/crates.io-index" 1974checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1975 1976[[package]] 1977name = "num-integer" 1978version = "0.1.46" 1979source = "registry+https://github.com/rust-lang/crates.io-index" 1980checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1981dependencies = [ 1982 "num-traits", 1983] 1984 1985[[package]] 1986name = "num-iter" 1987version = "0.1.45" 1988source = "registry+https://github.com/rust-lang/crates.io-index" 1989checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 1990dependencies = [ 1991 "autocfg", 1992 "num-integer", 1993 "num-traits", 1994] 1995 1996[[package]] 1997name = "num-rational" 1998version = "0.4.2" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 2001dependencies = [ 2002 "num-bigint", 2003 "num-integer", 2004 "num-traits", 2005] 2006 2007[[package]] 2008name = "num-traits" 2009version = "0.2.19" 2010source = "registry+https://github.com/rust-lang/crates.io-index" 2011checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2012dependencies = [ 2013 "autocfg", 2014] 2015 2016[[package]] 2017name = "num_threads" 2018version = "0.1.7" 2019source = "registry+https://github.com/rust-lang/crates.io-index" 2020checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 2021dependencies = [ 2022 "libc", 2023] 2024 2025[[package]] 2026name = "objc" 2027version = "0.2.7" 2028source = "registry+https://github.com/rust-lang/crates.io-index" 2029checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2030dependencies = [ 2031 "malloc_buf", 2032] 2033 2034[[package]] 2035name = "objc2" 2036version = "0.6.3" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" 2039dependencies = [ 2040 "objc2-encode", 2041] 2042 2043[[package]] 2044name = "objc2-core-foundation" 2045version = "0.3.2" 2046source = "registry+https://github.com/rust-lang/crates.io-index" 2047checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" 2048dependencies = [ 2049 "bitflags 2.10.0", 2050 "dispatch2", 2051 "objc2", 2052] 2053 2054[[package]] 2055name = "objc2-encode" 2056version = "4.1.0" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 2059 2060[[package]] 2061name = "objc2-foundation" 2062version = "0.3.2" 2063source = "registry+https://github.com/rust-lang/crates.io-index" 2064checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" 2065dependencies = [ 2066 "bitflags 2.10.0", 2067 "block2", 2068 "libc", 2069 "objc2", 2070 "objc2-core-foundation", 2071] 2072 2073[[package]] 2074name = "object" 2075version = "0.37.3" 2076source = "registry+https://github.com/rust-lang/crates.io-index" 2077checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" 2078dependencies = [ 2079 "memchr", 2080] 2081 2082[[package]] 2083name = "once_cell" 2084version = "1.21.3" 2085source = "registry+https://github.com/rust-lang/crates.io-index" 2086checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2087 2088[[package]] 2089name = "once_cell_polyfill" 2090version = "1.70.2" 2091source = "registry+https://github.com/rust-lang/crates.io-index" 2092checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 2093 2094[[package]] 2095name = "opaque-debug" 2096version = "0.2.3" 2097source = "registry+https://github.com/rust-lang/crates.io-index" 2098checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 2099 2100[[package]] 2101name = "ordered-float" 2102version = "2.10.1" 2103source = "registry+https://github.com/rust-lang/crates.io-index" 2104checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 2105dependencies = [ 2106 "num-traits", 2107] 2108 2109[[package]] 2110name = "ordered-stream" 2111version = "0.2.0" 2112source = "registry+https://github.com/rust-lang/crates.io-index" 2113checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 2114dependencies = [ 2115 "futures-core", 2116 "pin-project-lite", 2117] 2118 2119[[package]] 2120name = "parking" 2121version = "2.2.1" 2122source = "registry+https://github.com/rust-lang/crates.io-index" 2123checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2124 2125[[package]] 2126name = "parking_lot" 2127version = "0.12.5" 2128source = "registry+https://github.com/rust-lang/crates.io-index" 2129checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 2130dependencies = [ 2131 "lock_api", 2132 "parking_lot_core", 2133] 2134 2135[[package]] 2136name = "parking_lot_core" 2137version = "0.9.12" 2138source = "registry+https://github.com/rust-lang/crates.io-index" 2139checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2140dependencies = [ 2141 "cfg-if 1.0.4", 2142 "libc", 2143 "redox_syscall", 2144 "smallvec", 2145 "windows-link 0.2.1", 2146] 2147 2148[[package]] 2149name = "percent-encoding" 2150version = "2.3.2" 2151source = "registry+https://github.com/rust-lang/crates.io-index" 2152checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2153 2154[[package]] 2155name = "pico-args" 2156version = "0.5.0" 2157source = "registry+https://github.com/rust-lang/crates.io-index" 2158checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" 2159 2160[[package]] 2161name = "pin-project-lite" 2162version = "0.2.16" 2163source = "registry+https://github.com/rust-lang/crates.io-index" 2164checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2165 2166[[package]] 2167name = "pin-utils" 2168version = "0.1.0" 2169source = "registry+https://github.com/rust-lang/crates.io-index" 2170checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2171 2172[[package]] 2173name = "piper" 2174version = "0.2.4" 2175source = "registry+https://github.com/rust-lang/crates.io-index" 2176checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2177dependencies = [ 2178 "atomic-waker", 2179 "fastrand", 2180 "futures-io", 2181] 2182 2183[[package]] 2184name = "plain" 2185version = "0.2.3" 2186source = "registry+https://github.com/rust-lang/crates.io-index" 2187checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 2188 2189[[package]] 2190name = "playground" 2191version = "0.1.0" 2192dependencies = [ 2193 "itertools 0.14.0", 2194 "rand 0.9.2", 2195 "schedule-hell", 2196 "shapemaker", 2197] 2198 2199[[package]] 2200name = "png" 2201version = "0.17.16" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 2204dependencies = [ 2205 "bitflags 1.3.2", 2206 "crc32fast", 2207 "fdeflate", 2208 "flate2", 2209 "miniz_oxide", 2210] 2211 2212[[package]] 2213name = "polling" 2214version = "3.11.0" 2215source = "registry+https://github.com/rust-lang/crates.io-index" 2216checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 2217dependencies = [ 2218 "cfg-if 1.0.4", 2219 "concurrent-queue", 2220 "hermit-abi 0.5.2", 2221 "pin-project-lite", 2222 "rustix", 2223 "windows-sys 0.61.2", 2224] 2225 2226[[package]] 2227name = "portable-atomic" 2228version = "1.11.1" 2229source = "registry+https://github.com/rust-lang/crates.io-index" 2230checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 2231 2232[[package]] 2233name = "portable-atomic-util" 2234version = "0.2.4" 2235source = "registry+https://github.com/rust-lang/crates.io-index" 2236checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" 2237dependencies = [ 2238 "portable-atomic", 2239] 2240 2241[[package]] 2242name = "potential_utf" 2243version = "0.1.4" 2244source = "registry+https://github.com/rust-lang/crates.io-index" 2245checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 2246dependencies = [ 2247 "zerovec", 2248] 2249 2250[[package]] 2251name = "powerfmt" 2252version = "0.2.0" 2253source = "registry+https://github.com/rust-lang/crates.io-index" 2254checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2255 2256[[package]] 2257name = "ppv-lite86" 2258version = "0.2.21" 2259source = "registry+https://github.com/rust-lang/crates.io-index" 2260checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2261dependencies = [ 2262 "zerocopy", 2263] 2264 2265[[package]] 2266name = "prettytable-rs" 2267version = "0.10.0" 2268source = "registry+https://github.com/rust-lang/crates.io-index" 2269checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a" 2270dependencies = [ 2271 "encode_unicode", 2272 "is-terminal", 2273 "lazy_static", 2274 "term", 2275 "unicode-width 0.1.14", 2276] 2277 2278[[package]] 2279name = "proc-macro-crate" 2280version = "3.4.0" 2281source = "registry+https://github.com/rust-lang/crates.io-index" 2282checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" 2283dependencies = [ 2284 "toml_edit 0.23.7", 2285] 2286 2287[[package]] 2288name = "proc-macro2" 2289version = "1.0.103" 2290source = "registry+https://github.com/rust-lang/crates.io-index" 2291checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 2292dependencies = [ 2293 "unicode-ident", 2294] 2295 2296[[package]] 2297name = "quick-error" 2298version = "2.0.1" 2299source = "registry+https://github.com/rust-lang/crates.io-index" 2300checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 2301 2302[[package]] 2303name = "quick-xml" 2304version = "0.37.5" 2305source = "registry+https://github.com/rust-lang/crates.io-index" 2306checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 2307dependencies = [ 2308 "memchr", 2309] 2310 2311[[package]] 2312name = "quick-xml" 2313version = "0.38.3" 2314source = "registry+https://github.com/rust-lang/crates.io-index" 2315checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89" 2316dependencies = [ 2317 "memchr", 2318] 2319 2320[[package]] 2321name = "quote" 2322version = "1.0.42" 2323source = "registry+https://github.com/rust-lang/crates.io-index" 2324checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 2325dependencies = [ 2326 "proc-macro2", 2327] 2328 2329[[package]] 2330name = "r-efi" 2331version = "5.3.0" 2332source = "registry+https://github.com/rust-lang/crates.io-index" 2333checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2334 2335[[package]] 2336name = "rand" 2337version = "0.7.3" 2338source = "registry+https://github.com/rust-lang/crates.io-index" 2339checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2340dependencies = [ 2341 "getrandom 0.1.16", 2342 "libc", 2343 "rand_chacha 0.2.2", 2344 "rand_core 0.5.1", 2345 "rand_hc", 2346] 2347 2348[[package]] 2349name = "rand" 2350version = "0.8.5" 2351source = "registry+https://github.com/rust-lang/crates.io-index" 2352checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2353dependencies = [ 2354 "libc", 2355 "rand_chacha 0.3.1", 2356 "rand_core 0.6.4", 2357] 2358 2359[[package]] 2360name = "rand" 2361version = "0.9.2" 2362source = "registry+https://github.com/rust-lang/crates.io-index" 2363checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2364dependencies = [ 2365 "rand_chacha 0.9.0", 2366 "rand_core 0.9.3", 2367] 2368 2369[[package]] 2370name = "rand_chacha" 2371version = "0.2.2" 2372source = "registry+https://github.com/rust-lang/crates.io-index" 2373checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2374dependencies = [ 2375 "ppv-lite86", 2376 "rand_core 0.5.1", 2377] 2378 2379[[package]] 2380name = "rand_chacha" 2381version = "0.3.1" 2382source = "registry+https://github.com/rust-lang/crates.io-index" 2383checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2384dependencies = [ 2385 "ppv-lite86", 2386 "rand_core 0.6.4", 2387] 2388 2389[[package]] 2390name = "rand_chacha" 2391version = "0.9.0" 2392source = "registry+https://github.com/rust-lang/crates.io-index" 2393checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2394dependencies = [ 2395 "ppv-lite86", 2396 "rand_core 0.9.3", 2397] 2398 2399[[package]] 2400name = "rand_core" 2401version = "0.5.1" 2402source = "registry+https://github.com/rust-lang/crates.io-index" 2403checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2404dependencies = [ 2405 "getrandom 0.1.16", 2406] 2407 2408[[package]] 2409name = "rand_core" 2410version = "0.6.4" 2411source = "registry+https://github.com/rust-lang/crates.io-index" 2412checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2413dependencies = [ 2414 "getrandom 0.2.16", 2415] 2416 2417[[package]] 2418name = "rand_core" 2419version = "0.9.3" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2422dependencies = [ 2423 "getrandom 0.3.4", 2424] 2425 2426[[package]] 2427name = "rand_hc" 2428version = "0.2.0" 2429source = "registry+https://github.com/rust-lang/crates.io-index" 2430checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2431dependencies = [ 2432 "rand_core 0.5.1", 2433] 2434 2435[[package]] 2436name = "raw-window-handle" 2437version = "0.5.2" 2438source = "registry+https://github.com/rust-lang/crates.io-index" 2439checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 2440 2441[[package]] 2442name = "rayon" 2443version = "1.11.0" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" 2446dependencies = [ 2447 "either", 2448 "rayon-core", 2449] 2450 2451[[package]] 2452name = "rayon-core" 2453version = "1.13.0" 2454source = "registry+https://github.com/rust-lang/crates.io-index" 2455checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" 2456dependencies = [ 2457 "crossbeam-deque", 2458 "crossbeam-utils", 2459] 2460 2461[[package]] 2462name = "redox_syscall" 2463version = "0.5.18" 2464source = "registry+https://github.com/rust-lang/crates.io-index" 2465checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2466dependencies = [ 2467 "bitflags 2.10.0", 2468] 2469 2470[[package]] 2471name = "redox_users" 2472version = "0.4.6" 2473source = "registry+https://github.com/rust-lang/crates.io-index" 2474checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 2475dependencies = [ 2476 "getrandom 0.2.16", 2477 "libredox", 2478 "thiserror 1.0.69", 2479] 2480 2481[[package]] 2482name = "reflink" 2483version = "0.1.3" 2484source = "git+https://github.com/nicokoch/reflink.git?rev=e8d93b465f5d9ad340cd052b64bbc77b8ee107e2#e8d93b465f5d9ad340cd052b64bbc77b8ee107e2" 2485dependencies = [ 2486 "libc", 2487 "winapi 0.3.9", 2488] 2489 2490[[package]] 2491name = "regex" 2492version = "1.12.2" 2493source = "registry+https://github.com/rust-lang/crates.io-index" 2494checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 2495dependencies = [ 2496 "aho-corasick", 2497 "memchr", 2498 "regex-automata", 2499 "regex-syntax", 2500] 2501 2502[[package]] 2503name = "regex-automata" 2504version = "0.4.13" 2505source = "registry+https://github.com/rust-lang/crates.io-index" 2506checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 2507dependencies = [ 2508 "aho-corasick", 2509 "memchr", 2510 "regex-syntax", 2511] 2512 2513[[package]] 2514name = "regex-syntax" 2515version = "0.8.8" 2516source = "registry+https://github.com/rust-lang/crates.io-index" 2517checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 2518 2519[[package]] 2520name = "resvg" 2521version = "0.45.1" 2522source = "registry+https://github.com/rust-lang/crates.io-index" 2523checksum = "a8928798c0a55e03c9ca6c4c6846f76377427d2c1e1f7e6de3c06ae57942df43" 2524dependencies = [ 2525 "gif", 2526 "image-webp", 2527 "log", 2528 "pico-args", 2529 "rgb", 2530 "svgtypes", 2531 "tiny-skia", 2532 "usvg", 2533 "zune-jpeg", 2534] 2535 2536[[package]] 2537name = "rgb" 2538version = "0.8.52" 2539source = "registry+https://github.com/rust-lang/crates.io-index" 2540checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce" 2541dependencies = [ 2542 "bytemuck", 2543] 2544 2545[[package]] 2546name = "roxmltree" 2547version = "0.20.0" 2548source = "registry+https://github.com/rust-lang/crates.io-index" 2549checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97" 2550 2551[[package]] 2552name = "roxmltree" 2553version = "0.21.1" 2554source = "registry+https://github.com/rust-lang/crates.io-index" 2555checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb" 2556dependencies = [ 2557 "memchr", 2558] 2559 2560[[package]] 2561name = "rust-analyzer" 2562version = "0.0.1" 2563source = "registry+https://github.com/rust-lang/crates.io-index" 2564checksum = "11707871ffa56ce568d4f15dd34c2f891a2aa5e4b3435b99b8f99938492525c3" 2565 2566[[package]] 2567name = "rustc-demangle" 2568version = "0.1.26" 2569source = "registry+https://github.com/rust-lang/crates.io-index" 2570checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 2571 2572[[package]] 2573name = "rustix" 2574version = "1.1.2" 2575source = "registry+https://github.com/rust-lang/crates.io-index" 2576checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 2577dependencies = [ 2578 "bitflags 2.10.0", 2579 "errno", 2580 "libc", 2581 "linux-raw-sys", 2582 "windows-sys 0.61.2", 2583] 2584 2585[[package]] 2586name = "rustversion" 2587version = "1.0.22" 2588source = "registry+https://github.com/rust-lang/crates.io-index" 2589checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2590 2591[[package]] 2592name = "rustybuzz" 2593version = "0.20.1" 2594source = "registry+https://github.com/rust-lang/crates.io-index" 2595checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702" 2596dependencies = [ 2597 "bitflags 2.10.0", 2598 "bytemuck", 2599 "core_maths", 2600 "log", 2601 "smallvec", 2602 "ttf-parser", 2603 "unicode-bidi-mirroring", 2604 "unicode-ccc", 2605 "unicode-properties", 2606 "unicode-script", 2607] 2608 2609[[package]] 2610name = "ryu" 2611version = "1.0.20" 2612source = "registry+https://github.com/rust-lang/crates.io-index" 2613checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 2614 2615[[package]] 2616name = "schedule-hell" 2617version = "0.1.0" 2618dependencies = [ 2619 "anyhow", 2620 "itertools 0.14.0", 2621 "notify-rust", 2622 "pico-args", 2623 "rand 0.9.2", 2624 "serde-aux", 2625 "shapemaker", 2626 "tokio", 2627] 2628 2629[[package]] 2630name = "scopeguard" 2631version = "1.2.0" 2632source = "registry+https://github.com/rust-lang/crates.io-index" 2633checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2634 2635[[package]] 2636name = "scroll" 2637version = "0.11.0" 2638source = "registry+https://github.com/rust-lang/crates.io-index" 2639checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da" 2640dependencies = [ 2641 "scroll_derive", 2642] 2643 2644[[package]] 2645name = "scroll_derive" 2646version = "0.11.1" 2647source = "registry+https://github.com/rust-lang/crates.io-index" 2648checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae" 2649dependencies = [ 2650 "proc-macro2", 2651 "quote", 2652 "syn 2.0.110", 2653] 2654 2655[[package]] 2656name = "semver" 2657version = "1.0.27" 2658source = "registry+https://github.com/rust-lang/crates.io-index" 2659checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 2660dependencies = [ 2661 "serde", 2662 "serde_core", 2663] 2664 2665[[package]] 2666name = "serde" 2667version = "1.0.228" 2668source = "registry+https://github.com/rust-lang/crates.io-index" 2669checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 2670dependencies = [ 2671 "serde_core", 2672 "serde_derive", 2673] 2674 2675[[package]] 2676name = "serde-aux" 2677version = "4.7.0" 2678source = "registry+https://github.com/rust-lang/crates.io-index" 2679checksum = "207f67b28fe90fb596503a9bf0bf1ea5e831e21307658e177c5dfcdfc3ab8a0a" 2680dependencies = [ 2681 "chrono", 2682 "serde", 2683 "serde-value", 2684 "serde_json", 2685] 2686 2687[[package]] 2688name = "serde-value" 2689version = "0.7.0" 2690source = "registry+https://github.com/rust-lang/crates.io-index" 2691checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 2692dependencies = [ 2693 "ordered-float", 2694 "serde", 2695] 2696 2697[[package]] 2698name = "serde-wasm-bindgen" 2699version = "0.6.5" 2700source = "registry+https://github.com/rust-lang/crates.io-index" 2701checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" 2702dependencies = [ 2703 "js-sys", 2704 "serde", 2705 "wasm-bindgen", 2706] 2707 2708[[package]] 2709name = "serde_cbor" 2710version = "0.11.2" 2711source = "registry+https://github.com/rust-lang/crates.io-index" 2712checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 2713dependencies = [ 2714 "half", 2715 "serde", 2716] 2717 2718[[package]] 2719name = "serde_core" 2720version = "1.0.228" 2721source = "registry+https://github.com/rust-lang/crates.io-index" 2722checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 2723dependencies = [ 2724 "serde_derive", 2725] 2726 2727[[package]] 2728name = "serde_derive" 2729version = "1.0.228" 2730source = "registry+https://github.com/rust-lang/crates.io-index" 2731checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 2732dependencies = [ 2733 "proc-macro2", 2734 "quote", 2735 "syn 2.0.110", 2736] 2737 2738[[package]] 2739name = "serde_json" 2740version = "1.0.145" 2741source = "registry+https://github.com/rust-lang/crates.io-index" 2742checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 2743dependencies = [ 2744 "itoa", 2745 "memchr", 2746 "ryu", 2747 "serde", 2748 "serde_core", 2749] 2750 2751[[package]] 2752name = "serde_path_to_error" 2753version = "0.1.20" 2754source = "registry+https://github.com/rust-lang/crates.io-index" 2755checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 2756dependencies = [ 2757 "itoa", 2758 "serde", 2759 "serde_core", 2760] 2761 2762[[package]] 2763name = "serde_repr" 2764version = "0.1.20" 2765source = "registry+https://github.com/rust-lang/crates.io-index" 2766checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 2767dependencies = [ 2768 "proc-macro2", 2769 "quote", 2770 "syn 2.0.110", 2771] 2772 2773[[package]] 2774name = "serde_spanned" 2775version = "0.6.9" 2776source = "registry+https://github.com/rust-lang/crates.io-index" 2777checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 2778dependencies = [ 2779 "serde", 2780] 2781 2782[[package]] 2783name = "serde_spanned" 2784version = "1.0.3" 2785source = "registry+https://github.com/rust-lang/crates.io-index" 2786checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392" 2787dependencies = [ 2788 "serde_core", 2789] 2790 2791[[package]] 2792name = "serde_urlencoded" 2793version = "0.7.1" 2794source = "registry+https://github.com/rust-lang/crates.io-index" 2795checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2796dependencies = [ 2797 "form_urlencoded", 2798 "itoa", 2799 "ryu", 2800 "serde", 2801] 2802 2803[[package]] 2804name = "sha-1" 2805version = "0.8.2" 2806source = "registry+https://github.com/rust-lang/crates.io-index" 2807checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" 2808dependencies = [ 2809 "block-buffer 0.7.3", 2810 "digest 0.8.1", 2811 "fake-simd", 2812 "opaque-debug", 2813] 2814 2815[[package]] 2816name = "sha1" 2817version = "0.10.6" 2818source = "registry+https://github.com/rust-lang/crates.io-index" 2819checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2820dependencies = [ 2821 "cfg-if 1.0.4", 2822 "cpufeatures", 2823 "digest 0.10.7", 2824] 2825 2826[[package]] 2827name = "shapemaker" 2828version = "1.2.2" 2829dependencies = [ 2830 "anyhow", 2831 "axum", 2832 "backtrace", 2833 "channels-console", 2834 "chrono", 2835 "console 0.16.1", 2836 "easing-function", 2837 "env_logger", 2838 "getrandom 0.2.16", 2839 "indicatif", 2840 "insta", 2841 "itertools 0.14.0", 2842 "log", 2843 "measure_time", 2844 "midly", 2845 "nanoid", 2846 "nih_plug", 2847 "notify-rust", 2848 "num", 2849 "once_cell", 2850 "quick-xml 0.38.3", 2851 "rand 0.9.2", 2852 "rayon", 2853 "resvg", 2854 "roxmltree 0.21.1", 2855 "rust-analyzer", 2856 "serde", 2857 "serde-aux", 2858 "serde-wasm-bindgen", 2859 "serde_cbor", 2860 "serde_json", 2861 "slug", 2862 "strum", 2863 "strum_macros", 2864 "tiny-skia", 2865 "tokio", 2866 "toml 0.9.8", 2867 "tungstenite", 2868 "url", 2869 "vgv", 2870 "wasm-bindgen", 2871 "web-sys", 2872 "ws", 2873] 2874 2875[[package]] 2876name = "shlex" 2877version = "1.3.0" 2878source = "registry+https://github.com/rust-lang/crates.io-index" 2879checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2880 2881[[package]] 2882name = "signal-hook-registry" 2883version = "1.4.6" 2884source = "registry+https://github.com/rust-lang/crates.io-index" 2885checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 2886dependencies = [ 2887 "libc", 2888] 2889 2890[[package]] 2891name = "simd-adler32" 2892version = "0.3.7" 2893source = "registry+https://github.com/rust-lang/crates.io-index" 2894checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2895 2896[[package]] 2897name = "similar" 2898version = "2.7.0" 2899source = "registry+https://github.com/rust-lang/crates.io-index" 2900checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" 2901 2902[[package]] 2903name = "simplecss" 2904version = "0.2.2" 2905source = "registry+https://github.com/rust-lang/crates.io-index" 2906checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c" 2907dependencies = [ 2908 "log", 2909] 2910 2911[[package]] 2912name = "siphasher" 2913version = "1.0.1" 2914source = "registry+https://github.com/rust-lang/crates.io-index" 2915checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 2916 2917[[package]] 2918name = "slab" 2919version = "0.4.11" 2920source = "registry+https://github.com/rust-lang/crates.io-index" 2921checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 2922 2923[[package]] 2924name = "slotmap" 2925version = "1.0.7" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 2928dependencies = [ 2929 "version_check", 2930] 2931 2932[[package]] 2933name = "slug" 2934version = "0.1.6" 2935source = "registry+https://github.com/rust-lang/crates.io-index" 2936checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724" 2937dependencies = [ 2938 "deunicode", 2939 "wasm-bindgen", 2940] 2941 2942[[package]] 2943name = "smallvec" 2944version = "1.15.1" 2945source = "registry+https://github.com/rust-lang/crates.io-index" 2946checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 2947 2948[[package]] 2949name = "socket2" 2950version = "0.6.1" 2951source = "registry+https://github.com/rust-lang/crates.io-index" 2952checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 2953dependencies = [ 2954 "libc", 2955 "windows-sys 0.60.2", 2956] 2957 2958[[package]] 2959name = "specimen" 2960version = "0.1.0" 2961dependencies = [ 2962 "insta", 2963 "rand 0.9.2", 2964 "shapemaker", 2965] 2966 2967[[package]] 2968name = "stable_deref_trait" 2969version = "1.2.1" 2970source = "registry+https://github.com/rust-lang/crates.io-index" 2971checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 2972 2973[[package]] 2974name = "static_assertions" 2975version = "1.1.0" 2976source = "registry+https://github.com/rust-lang/crates.io-index" 2977checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2978 2979[[package]] 2980name = "strict-num" 2981version = "0.1.1" 2982source = "registry+https://github.com/rust-lang/crates.io-index" 2983checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" 2984dependencies = [ 2985 "float-cmp", 2986] 2987 2988[[package]] 2989name = "strum" 2990version = "0.27.2" 2991source = "registry+https://github.com/rust-lang/crates.io-index" 2992checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" 2993dependencies = [ 2994 "strum_macros", 2995] 2996 2997[[package]] 2998name = "strum_macros" 2999version = "0.27.2" 3000source = "registry+https://github.com/rust-lang/crates.io-index" 3001checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" 3002dependencies = [ 3003 "heck", 3004 "proc-macro2", 3005 "quote", 3006 "syn 2.0.110", 3007] 3008 3009[[package]] 3010name = "svgtypes" 3011version = "0.15.3" 3012source = "registry+https://github.com/rust-lang/crates.io-index" 3013checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc" 3014dependencies = [ 3015 "kurbo", 3016 "siphasher", 3017] 3018 3019[[package]] 3020name = "syn" 3021version = "1.0.109" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3024dependencies = [ 3025 "proc-macro2", 3026 "quote", 3027 "unicode-ident", 3028] 3029 3030[[package]] 3031name = "syn" 3032version = "2.0.110" 3033source = "registry+https://github.com/rust-lang/crates.io-index" 3034checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" 3035dependencies = [ 3036 "proc-macro2", 3037 "quote", 3038 "unicode-ident", 3039] 3040 3041[[package]] 3042name = "sync_wrapper" 3043version = "1.0.2" 3044source = "registry+https://github.com/rust-lang/crates.io-index" 3045checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3046 3047[[package]] 3048name = "synstructure" 3049version = "0.13.2" 3050source = "registry+https://github.com/rust-lang/crates.io-index" 3051checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 3052dependencies = [ 3053 "proc-macro2", 3054 "quote", 3055 "syn 2.0.110", 3056] 3057 3058[[package]] 3059name = "tauri-winrt-notification" 3060version = "0.7.2" 3061source = "registry+https://github.com/rust-lang/crates.io-index" 3062checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9" 3063dependencies = [ 3064 "quick-xml 0.37.5", 3065 "thiserror 2.0.17", 3066 "windows 0.61.3", 3067 "windows-version", 3068] 3069 3070[[package]] 3071name = "tempfile" 3072version = "3.23.0" 3073source = "registry+https://github.com/rust-lang/crates.io-index" 3074checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 3075dependencies = [ 3076 "fastrand", 3077 "getrandom 0.3.4", 3078 "once_cell", 3079 "rustix", 3080 "windows-sys 0.61.2", 3081] 3082 3083[[package]] 3084name = "term" 3085version = "0.7.0" 3086source = "registry+https://github.com/rust-lang/crates.io-index" 3087checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 3088dependencies = [ 3089 "dirs-next", 3090 "rustversion", 3091 "winapi 0.3.9", 3092] 3093 3094[[package]] 3095name = "termcolor" 3096version = "1.4.1" 3097source = "registry+https://github.com/rust-lang/crates.io-index" 3098checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 3099dependencies = [ 3100 "winapi-util", 3101] 3102 3103[[package]] 3104name = "thiserror" 3105version = "1.0.69" 3106source = "registry+https://github.com/rust-lang/crates.io-index" 3107checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3108dependencies = [ 3109 "thiserror-impl 1.0.69", 3110] 3111 3112[[package]] 3113name = "thiserror" 3114version = "2.0.17" 3115source = "registry+https://github.com/rust-lang/crates.io-index" 3116checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 3117dependencies = [ 3118 "thiserror-impl 2.0.17", 3119] 3120 3121[[package]] 3122name = "thiserror-impl" 3123version = "1.0.69" 3124source = "registry+https://github.com/rust-lang/crates.io-index" 3125checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3126dependencies = [ 3127 "proc-macro2", 3128 "quote", 3129 "syn 2.0.110", 3130] 3131 3132[[package]] 3133name = "thiserror-impl" 3134version = "2.0.17" 3135source = "registry+https://github.com/rust-lang/crates.io-index" 3136checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 3137dependencies = [ 3138 "proc-macro2", 3139 "quote", 3140 "syn 2.0.110", 3141] 3142 3143[[package]] 3144name = "time" 3145version = "0.3.44" 3146source = "registry+https://github.com/rust-lang/crates.io-index" 3147checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 3148dependencies = [ 3149 "deranged", 3150 "itoa", 3151 "libc", 3152 "num-conv", 3153 "num_threads", 3154 "powerfmt", 3155 "serde", 3156 "time-core", 3157 "time-macros", 3158] 3159 3160[[package]] 3161name = "time-core" 3162version = "0.1.6" 3163source = "registry+https://github.com/rust-lang/crates.io-index" 3164checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 3165 3166[[package]] 3167name = "time-macros" 3168version = "0.2.24" 3169source = "registry+https://github.com/rust-lang/crates.io-index" 3170checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 3171dependencies = [ 3172 "num-conv", 3173 "time-core", 3174] 3175 3176[[package]] 3177name = "tiny-skia" 3178version = "0.11.4" 3179source = "registry+https://github.com/rust-lang/crates.io-index" 3180checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab" 3181dependencies = [ 3182 "arrayref", 3183 "arrayvec", 3184 "bytemuck", 3185 "cfg-if 1.0.4", 3186 "log", 3187 "png", 3188 "tiny-skia-path", 3189] 3190 3191[[package]] 3192name = "tiny-skia-path" 3193version = "0.11.4" 3194source = "registry+https://github.com/rust-lang/crates.io-index" 3195checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93" 3196dependencies = [ 3197 "arrayref", 3198 "bytemuck", 3199 "strict-num", 3200] 3201 3202[[package]] 3203name = "tiny_http" 3204version = "0.12.0" 3205source = "registry+https://github.com/rust-lang/crates.io-index" 3206checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82" 3207dependencies = [ 3208 "ascii", 3209 "chunked_transfer", 3210 "httpdate", 3211 "log", 3212] 3213 3214[[package]] 3215name = "tinystr" 3216version = "0.8.2" 3217source = "registry+https://github.com/rust-lang/crates.io-index" 3218checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 3219dependencies = [ 3220 "displaydoc", 3221 "zerovec", 3222] 3223 3224[[package]] 3225name = "tinyvec" 3226version = "1.10.0" 3227source = "registry+https://github.com/rust-lang/crates.io-index" 3228checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 3229dependencies = [ 3230 "tinyvec_macros", 3231] 3232 3233[[package]] 3234name = "tinyvec_macros" 3235version = "0.1.1" 3236source = "registry+https://github.com/rust-lang/crates.io-index" 3237checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3238 3239[[package]] 3240name = "tokio" 3241version = "1.48.0" 3242source = "registry+https://github.com/rust-lang/crates.io-index" 3243checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 3244dependencies = [ 3245 "libc", 3246 "mio 1.1.0", 3247 "pin-project-lite", 3248 "socket2", 3249 "tokio-macros", 3250 "windows-sys 0.61.2", 3251] 3252 3253[[package]] 3254name = "tokio-macros" 3255version = "2.6.0" 3256source = "registry+https://github.com/rust-lang/crates.io-index" 3257checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 3258dependencies = [ 3259 "proc-macro2", 3260 "quote", 3261 "syn 2.0.110", 3262] 3263 3264[[package]] 3265name = "toml" 3266version = "0.7.8" 3267source = "registry+https://github.com/rust-lang/crates.io-index" 3268checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" 3269dependencies = [ 3270 "serde", 3271 "serde_spanned 0.6.9", 3272 "toml_datetime 0.6.11", 3273 "toml_edit 0.19.15", 3274] 3275 3276[[package]] 3277name = "toml" 3278version = "0.9.8" 3279source = "registry+https://github.com/rust-lang/crates.io-index" 3280checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8" 3281dependencies = [ 3282 "indexmap", 3283 "serde_core", 3284 "serde_spanned 1.0.3", 3285 "toml_datetime 0.7.3", 3286 "toml_parser", 3287 "toml_writer", 3288 "winnow 0.7.13", 3289] 3290 3291[[package]] 3292name = "toml_datetime" 3293version = "0.6.11" 3294source = "registry+https://github.com/rust-lang/crates.io-index" 3295checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 3296dependencies = [ 3297 "serde", 3298] 3299 3300[[package]] 3301name = "toml_datetime" 3302version = "0.7.3" 3303source = "registry+https://github.com/rust-lang/crates.io-index" 3304checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" 3305dependencies = [ 3306 "serde_core", 3307] 3308 3309[[package]] 3310name = "toml_edit" 3311version = "0.19.15" 3312source = "registry+https://github.com/rust-lang/crates.io-index" 3313checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 3314dependencies = [ 3315 "indexmap", 3316 "serde", 3317 "serde_spanned 0.6.9", 3318 "toml_datetime 0.6.11", 3319 "winnow 0.5.40", 3320] 3321 3322[[package]] 3323name = "toml_edit" 3324version = "0.23.7" 3325source = "registry+https://github.com/rust-lang/crates.io-index" 3326checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" 3327dependencies = [ 3328 "indexmap", 3329 "toml_datetime 0.7.3", 3330 "toml_parser", 3331 "winnow 0.7.13", 3332] 3333 3334[[package]] 3335name = "toml_parser" 3336version = "1.0.4" 3337source = "registry+https://github.com/rust-lang/crates.io-index" 3338checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" 3339dependencies = [ 3340 "winnow 0.7.13", 3341] 3342 3343[[package]] 3344name = "toml_writer" 3345version = "1.0.4" 3346source = "registry+https://github.com/rust-lang/crates.io-index" 3347checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2" 3348 3349[[package]] 3350name = "tower" 3351version = "0.5.2" 3352source = "registry+https://github.com/rust-lang/crates.io-index" 3353checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 3354dependencies = [ 3355 "futures-core", 3356 "futures-util", 3357 "pin-project-lite", 3358 "sync_wrapper", 3359 "tokio", 3360 "tower-layer", 3361 "tower-service", 3362 "tracing", 3363] 3364 3365[[package]] 3366name = "tower-layer" 3367version = "0.3.3" 3368source = "registry+https://github.com/rust-lang/crates.io-index" 3369checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 3370 3371[[package]] 3372name = "tower-service" 3373version = "0.3.3" 3374source = "registry+https://github.com/rust-lang/crates.io-index" 3375checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3376 3377[[package]] 3378name = "tracing" 3379version = "0.1.41" 3380source = "registry+https://github.com/rust-lang/crates.io-index" 3381checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 3382dependencies = [ 3383 "log", 3384 "pin-project-lite", 3385 "tracing-attributes", 3386 "tracing-core", 3387] 3388 3389[[package]] 3390name = "tracing-attributes" 3391version = "0.1.30" 3392source = "registry+https://github.com/rust-lang/crates.io-index" 3393checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 3394dependencies = [ 3395 "proc-macro2", 3396 "quote", 3397 "syn 2.0.110", 3398] 3399 3400[[package]] 3401name = "tracing-core" 3402version = "0.1.34" 3403source = "registry+https://github.com/rust-lang/crates.io-index" 3404checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 3405dependencies = [ 3406 "once_cell", 3407] 3408 3409[[package]] 3410name = "ttf-parser" 3411version = "0.25.1" 3412source = "registry+https://github.com/rust-lang/crates.io-index" 3413checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31" 3414dependencies = [ 3415 "core_maths", 3416] 3417 3418[[package]] 3419name = "tungstenite" 3420version = "0.28.0" 3421source = "registry+https://github.com/rust-lang/crates.io-index" 3422checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442" 3423dependencies = [ 3424 "bytes 1.10.1", 3425 "data-encoding", 3426 "http", 3427 "httparse", 3428 "log", 3429 "rand 0.9.2", 3430 "sha1", 3431 "thiserror 2.0.17", 3432 "utf-8", 3433] 3434 3435[[package]] 3436name = "typenum" 3437version = "1.19.0" 3438source = "registry+https://github.com/rust-lang/crates.io-index" 3439checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 3440 3441[[package]] 3442name = "uds_windows" 3443version = "1.1.0" 3444source = "registry+https://github.com/rust-lang/crates.io-index" 3445checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 3446dependencies = [ 3447 "memoffset", 3448 "tempfile", 3449 "winapi 0.3.9", 3450] 3451 3452[[package]] 3453name = "unicode-bidi" 3454version = "0.3.18" 3455source = "registry+https://github.com/rust-lang/crates.io-index" 3456checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 3457 3458[[package]] 3459name = "unicode-bidi-mirroring" 3460version = "0.4.0" 3461source = "registry+https://github.com/rust-lang/crates.io-index" 3462checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe" 3463 3464[[package]] 3465name = "unicode-ccc" 3466version = "0.4.0" 3467source = "registry+https://github.com/rust-lang/crates.io-index" 3468checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e" 3469 3470[[package]] 3471name = "unicode-ident" 3472version = "1.0.22" 3473source = "registry+https://github.com/rust-lang/crates.io-index" 3474checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 3475 3476[[package]] 3477name = "unicode-properties" 3478version = "0.1.4" 3479source = "registry+https://github.com/rust-lang/crates.io-index" 3480checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" 3481 3482[[package]] 3483name = "unicode-script" 3484version = "0.5.7" 3485source = "registry+https://github.com/rust-lang/crates.io-index" 3486checksum = "9fb421b350c9aff471779e262955939f565ec18b86c15364e6bdf0d662ca7c1f" 3487 3488[[package]] 3489name = "unicode-vo" 3490version = "0.1.0" 3491source = "registry+https://github.com/rust-lang/crates.io-index" 3492checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" 3493 3494[[package]] 3495name = "unicode-width" 3496version = "0.1.14" 3497source = "registry+https://github.com/rust-lang/crates.io-index" 3498checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 3499 3500[[package]] 3501name = "unicode-width" 3502version = "0.2.2" 3503source = "registry+https://github.com/rust-lang/crates.io-index" 3504checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" 3505 3506[[package]] 3507name = "unit-prefix" 3508version = "0.5.1" 3509source = "registry+https://github.com/rust-lang/crates.io-index" 3510checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817" 3511 3512[[package]] 3513name = "url" 3514version = "2.5.7" 3515source = "registry+https://github.com/rust-lang/crates.io-index" 3516checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 3517dependencies = [ 3518 "form_urlencoded", 3519 "idna", 3520 "percent-encoding", 3521 "serde", 3522] 3523 3524[[package]] 3525name = "usvg" 3526version = "0.45.1" 3527source = "registry+https://github.com/rust-lang/crates.io-index" 3528checksum = "80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef" 3529dependencies = [ 3530 "base64", 3531 "data-url", 3532 "flate2", 3533 "fontdb", 3534 "imagesize", 3535 "kurbo", 3536 "log", 3537 "pico-args", 3538 "roxmltree 0.20.0", 3539 "rustybuzz", 3540 "simplecss", 3541 "siphasher", 3542 "strict-num", 3543 "svgtypes", 3544 "tiny-skia-path", 3545 "unicode-bidi", 3546 "unicode-script", 3547 "unicode-vo", 3548 "xmlwriter", 3549] 3550 3551[[package]] 3552name = "utf-8" 3553version = "0.7.6" 3554source = "registry+https://github.com/rust-lang/crates.io-index" 3555checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3556 3557[[package]] 3558name = "utf8_iter" 3559version = "1.0.4" 3560source = "registry+https://github.com/rust-lang/crates.io-index" 3561checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3562 3563[[package]] 3564name = "utf8parse" 3565version = "0.2.2" 3566source = "registry+https://github.com/rust-lang/crates.io-index" 3567checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3568 3569[[package]] 3570name = "uuid" 3571version = "1.18.1" 3572source = "registry+https://github.com/rust-lang/crates.io-index" 3573checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" 3574dependencies = [ 3575 "js-sys", 3576 "serde", 3577 "wasm-bindgen", 3578] 3579 3580[[package]] 3581name = "version_check" 3582version = "0.9.5" 3583source = "registry+https://github.com/rust-lang/crates.io-index" 3584checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3585 3586[[package]] 3587name = "vgv" 3588version = "0.1.0" 3589source = "git+https://github.com/gwennlbh/vgvf#96288225b98109f59ce5356edbd9024d6e74ed2b" 3590dependencies = [ 3591 "anyhow", 3592 "base64", 3593 "diff-match-patch-rs", 3594 "pico-args", 3595 "resvg", 3596 "serde", 3597 "serde_json", 3598 "tiny-skia", 3599 "usvg", 3600] 3601 3602[[package]] 3603name = "vst3-com" 3604version = "0.1.0" 3605source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix%2Fdrop-box-from-raw#b3ff4d775940f5b476b9d1cca02a90e07e1922a2" 3606dependencies = [ 3607 "vst3-com-macros", 3608] 3609 3610[[package]] 3611name = "vst3-com-macros" 3612version = "0.2.0" 3613source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix%2Fdrop-box-from-raw#b3ff4d775940f5b476b9d1cca02a90e07e1922a2" 3614dependencies = [ 3615 "proc-macro2", 3616 "quote", 3617 "syn 1.0.109", 3618 "vst3-com-macros-support", 3619] 3620 3621[[package]] 3622name = "vst3-com-macros-support" 3623version = "0.2.0" 3624source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix%2Fdrop-box-from-raw#b3ff4d775940f5b476b9d1cca02a90e07e1922a2" 3625dependencies = [ 3626 "proc-macro2", 3627 "quote", 3628 "syn 1.0.109", 3629] 3630 3631[[package]] 3632name = "vst3-sys" 3633version = "0.1.0" 3634source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix%2Fdrop-box-from-raw#b3ff4d775940f5b476b9d1cca02a90e07e1922a2" 3635dependencies = [ 3636 "vst3-com", 3637] 3638 3639[[package]] 3640name = "wasi" 3641version = "0.9.0+wasi-snapshot-preview1" 3642source = "registry+https://github.com/rust-lang/crates.io-index" 3643checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3644 3645[[package]] 3646name = "wasi" 3647version = "0.11.1+wasi-snapshot-preview1" 3648source = "registry+https://github.com/rust-lang/crates.io-index" 3649checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3650 3651[[package]] 3652name = "wasip2" 3653version = "1.0.1+wasi-0.2.4" 3654source = "registry+https://github.com/rust-lang/crates.io-index" 3655checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 3656dependencies = [ 3657 "wit-bindgen", 3658] 3659 3660[[package]] 3661name = "wasm-bindgen" 3662version = "0.2.105" 3663source = "registry+https://github.com/rust-lang/crates.io-index" 3664checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" 3665dependencies = [ 3666 "cfg-if 1.0.4", 3667 "once_cell", 3668 "rustversion", 3669 "wasm-bindgen-macro", 3670 "wasm-bindgen-shared", 3671] 3672 3673[[package]] 3674name = "wasm-bindgen-macro" 3675version = "0.2.105" 3676source = "registry+https://github.com/rust-lang/crates.io-index" 3677checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" 3678dependencies = [ 3679 "quote", 3680 "wasm-bindgen-macro-support", 3681] 3682 3683[[package]] 3684name = "wasm-bindgen-macro-support" 3685version = "0.2.105" 3686source = "registry+https://github.com/rust-lang/crates.io-index" 3687checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" 3688dependencies = [ 3689 "bumpalo", 3690 "proc-macro2", 3691 "quote", 3692 "syn 2.0.110", 3693 "wasm-bindgen-shared", 3694] 3695 3696[[package]] 3697name = "wasm-bindgen-shared" 3698version = "0.2.105" 3699source = "registry+https://github.com/rust-lang/crates.io-index" 3700checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" 3701dependencies = [ 3702 "unicode-ident", 3703] 3704 3705[[package]] 3706name = "web-sys" 3707version = "0.3.82" 3708source = "registry+https://github.com/rust-lang/crates.io-index" 3709checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" 3710dependencies = [ 3711 "js-sys", 3712 "wasm-bindgen", 3713] 3714 3715[[package]] 3716name = "web-time" 3717version = "1.1.0" 3718source = "registry+https://github.com/rust-lang/crates.io-index" 3719checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3720dependencies = [ 3721 "js-sys", 3722 "wasm-bindgen", 3723] 3724 3725[[package]] 3726name = "weezl" 3727version = "0.1.11" 3728source = "registry+https://github.com/rust-lang/crates.io-index" 3729checksum = "009936b22a61d342859b5f0ea64681cbb35a358ab548e2a44a8cf0dac2d980b8" 3730 3731[[package]] 3732name = "widestring" 3733version = "1.2.1" 3734source = "registry+https://github.com/rust-lang/crates.io-index" 3735checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 3736 3737[[package]] 3738name = "winapi" 3739version = "0.2.8" 3740source = "registry+https://github.com/rust-lang/crates.io-index" 3741checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 3742 3743[[package]] 3744name = "winapi" 3745version = "0.3.9" 3746source = "registry+https://github.com/rust-lang/crates.io-index" 3747checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3748dependencies = [ 3749 "winapi-i686-pc-windows-gnu", 3750 "winapi-x86_64-pc-windows-gnu", 3751] 3752 3753[[package]] 3754name = "winapi-build" 3755version = "0.1.1" 3756source = "registry+https://github.com/rust-lang/crates.io-index" 3757checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 3758 3759[[package]] 3760name = "winapi-i686-pc-windows-gnu" 3761version = "0.4.0" 3762source = "registry+https://github.com/rust-lang/crates.io-index" 3763checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3764 3765[[package]] 3766name = "winapi-util" 3767version = "0.1.11" 3768source = "registry+https://github.com/rust-lang/crates.io-index" 3769checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 3770dependencies = [ 3771 "windows-sys 0.61.2", 3772] 3773 3774[[package]] 3775name = "winapi-x86_64-pc-windows-gnu" 3776version = "0.4.0" 3777source = "registry+https://github.com/rust-lang/crates.io-index" 3778checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3779 3780[[package]] 3781name = "windows" 3782version = "0.44.0" 3783source = "registry+https://github.com/rust-lang/crates.io-index" 3784checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 3785dependencies = [ 3786 "windows-targets 0.42.2", 3787] 3788 3789[[package]] 3790name = "windows" 3791version = "0.61.3" 3792source = "registry+https://github.com/rust-lang/crates.io-index" 3793checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 3794dependencies = [ 3795 "windows-collections", 3796 "windows-core 0.61.2", 3797 "windows-future", 3798 "windows-link 0.1.3", 3799 "windows-numerics", 3800] 3801 3802[[package]] 3803name = "windows-collections" 3804version = "0.2.0" 3805source = "registry+https://github.com/rust-lang/crates.io-index" 3806checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 3807dependencies = [ 3808 "windows-core 0.61.2", 3809] 3810 3811[[package]] 3812name = "windows-core" 3813version = "0.61.2" 3814source = "registry+https://github.com/rust-lang/crates.io-index" 3815checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 3816dependencies = [ 3817 "windows-implement", 3818 "windows-interface", 3819 "windows-link 0.1.3", 3820 "windows-result 0.3.4", 3821 "windows-strings 0.4.2", 3822] 3823 3824[[package]] 3825name = "windows-core" 3826version = "0.62.2" 3827source = "registry+https://github.com/rust-lang/crates.io-index" 3828checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 3829dependencies = [ 3830 "windows-implement", 3831 "windows-interface", 3832 "windows-link 0.2.1", 3833 "windows-result 0.4.1", 3834 "windows-strings 0.5.1", 3835] 3836 3837[[package]] 3838name = "windows-future" 3839version = "0.2.1" 3840source = "registry+https://github.com/rust-lang/crates.io-index" 3841checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 3842dependencies = [ 3843 "windows-core 0.61.2", 3844 "windows-link 0.1.3", 3845 "windows-threading", 3846] 3847 3848[[package]] 3849name = "windows-implement" 3850version = "0.60.2" 3851source = "registry+https://github.com/rust-lang/crates.io-index" 3852checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 3853dependencies = [ 3854 "proc-macro2", 3855 "quote", 3856 "syn 2.0.110", 3857] 3858 3859[[package]] 3860name = "windows-interface" 3861version = "0.59.3" 3862source = "registry+https://github.com/rust-lang/crates.io-index" 3863checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 3864dependencies = [ 3865 "proc-macro2", 3866 "quote", 3867 "syn 2.0.110", 3868] 3869 3870[[package]] 3871name = "windows-link" 3872version = "0.1.3" 3873source = "registry+https://github.com/rust-lang/crates.io-index" 3874checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 3875 3876[[package]] 3877name = "windows-link" 3878version = "0.2.1" 3879source = "registry+https://github.com/rust-lang/crates.io-index" 3880checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 3881 3882[[package]] 3883name = "windows-numerics" 3884version = "0.2.0" 3885source = "registry+https://github.com/rust-lang/crates.io-index" 3886checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 3887dependencies = [ 3888 "windows-core 0.61.2", 3889 "windows-link 0.1.3", 3890] 3891 3892[[package]] 3893name = "windows-result" 3894version = "0.3.4" 3895source = "registry+https://github.com/rust-lang/crates.io-index" 3896checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 3897dependencies = [ 3898 "windows-link 0.1.3", 3899] 3900 3901[[package]] 3902name = "windows-result" 3903version = "0.4.1" 3904source = "registry+https://github.com/rust-lang/crates.io-index" 3905checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 3906dependencies = [ 3907 "windows-link 0.2.1", 3908] 3909 3910[[package]] 3911name = "windows-strings" 3912version = "0.4.2" 3913source = "registry+https://github.com/rust-lang/crates.io-index" 3914checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 3915dependencies = [ 3916 "windows-link 0.1.3", 3917] 3918 3919[[package]] 3920name = "windows-strings" 3921version = "0.5.1" 3922source = "registry+https://github.com/rust-lang/crates.io-index" 3923checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 3924dependencies = [ 3925 "windows-link 0.2.1", 3926] 3927 3928[[package]] 3929name = "windows-sys" 3930version = "0.59.0" 3931source = "registry+https://github.com/rust-lang/crates.io-index" 3932checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3933dependencies = [ 3934 "windows-targets 0.52.6", 3935] 3936 3937[[package]] 3938name = "windows-sys" 3939version = "0.60.2" 3940source = "registry+https://github.com/rust-lang/crates.io-index" 3941checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 3942dependencies = [ 3943 "windows-targets 0.53.5", 3944] 3945 3946[[package]] 3947name = "windows-sys" 3948version = "0.61.2" 3949source = "registry+https://github.com/rust-lang/crates.io-index" 3950checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 3951dependencies = [ 3952 "windows-link 0.2.1", 3953] 3954 3955[[package]] 3956name = "windows-targets" 3957version = "0.42.2" 3958source = "registry+https://github.com/rust-lang/crates.io-index" 3959checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3960dependencies = [ 3961 "windows_aarch64_gnullvm 0.42.2", 3962 "windows_aarch64_msvc 0.42.2", 3963 "windows_i686_gnu 0.42.2", 3964 "windows_i686_msvc 0.42.2", 3965 "windows_x86_64_gnu 0.42.2", 3966 "windows_x86_64_gnullvm 0.42.2", 3967 "windows_x86_64_msvc 0.42.2", 3968] 3969 3970[[package]] 3971name = "windows-targets" 3972version = "0.52.6" 3973source = "registry+https://github.com/rust-lang/crates.io-index" 3974checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3975dependencies = [ 3976 "windows_aarch64_gnullvm 0.52.6", 3977 "windows_aarch64_msvc 0.52.6", 3978 "windows_i686_gnu 0.52.6", 3979 "windows_i686_gnullvm 0.52.6", 3980 "windows_i686_msvc 0.52.6", 3981 "windows_x86_64_gnu 0.52.6", 3982 "windows_x86_64_gnullvm 0.52.6", 3983 "windows_x86_64_msvc 0.52.6", 3984] 3985 3986[[package]] 3987name = "windows-targets" 3988version = "0.53.5" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 3991dependencies = [ 3992 "windows-link 0.2.1", 3993 "windows_aarch64_gnullvm 0.53.1", 3994 "windows_aarch64_msvc 0.53.1", 3995 "windows_i686_gnu 0.53.1", 3996 "windows_i686_gnullvm 0.53.1", 3997 "windows_i686_msvc 0.53.1", 3998 "windows_x86_64_gnu 0.53.1", 3999 "windows_x86_64_gnullvm 0.53.1", 4000 "windows_x86_64_msvc 0.53.1", 4001] 4002 4003[[package]] 4004name = "windows-threading" 4005version = "0.1.0" 4006source = "registry+https://github.com/rust-lang/crates.io-index" 4007checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 4008dependencies = [ 4009 "windows-link 0.1.3", 4010] 4011 4012[[package]] 4013name = "windows-version" 4014version = "0.1.7" 4015source = "registry+https://github.com/rust-lang/crates.io-index" 4016checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" 4017dependencies = [ 4018 "windows-link 0.2.1", 4019] 4020 4021[[package]] 4022name = "windows_aarch64_gnullvm" 4023version = "0.42.2" 4024source = "registry+https://github.com/rust-lang/crates.io-index" 4025checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4026 4027[[package]] 4028name = "windows_aarch64_gnullvm" 4029version = "0.52.6" 4030source = "registry+https://github.com/rust-lang/crates.io-index" 4031checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4032 4033[[package]] 4034name = "windows_aarch64_gnullvm" 4035version = "0.53.1" 4036source = "registry+https://github.com/rust-lang/crates.io-index" 4037checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 4038 4039[[package]] 4040name = "windows_aarch64_msvc" 4041version = "0.42.2" 4042source = "registry+https://github.com/rust-lang/crates.io-index" 4043checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4044 4045[[package]] 4046name = "windows_aarch64_msvc" 4047version = "0.52.6" 4048source = "registry+https://github.com/rust-lang/crates.io-index" 4049checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4050 4051[[package]] 4052name = "windows_aarch64_msvc" 4053version = "0.53.1" 4054source = "registry+https://github.com/rust-lang/crates.io-index" 4055checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 4056 4057[[package]] 4058name = "windows_i686_gnu" 4059version = "0.42.2" 4060source = "registry+https://github.com/rust-lang/crates.io-index" 4061checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 4062 4063[[package]] 4064name = "windows_i686_gnu" 4065version = "0.52.6" 4066source = "registry+https://github.com/rust-lang/crates.io-index" 4067checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4068 4069[[package]] 4070name = "windows_i686_gnu" 4071version = "0.53.1" 4072source = "registry+https://github.com/rust-lang/crates.io-index" 4073checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 4074 4075[[package]] 4076name = "windows_i686_gnullvm" 4077version = "0.52.6" 4078source = "registry+https://github.com/rust-lang/crates.io-index" 4079checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4080 4081[[package]] 4082name = "windows_i686_gnullvm" 4083version = "0.53.1" 4084source = "registry+https://github.com/rust-lang/crates.io-index" 4085checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 4086 4087[[package]] 4088name = "windows_i686_msvc" 4089version = "0.42.2" 4090source = "registry+https://github.com/rust-lang/crates.io-index" 4091checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 4092 4093[[package]] 4094name = "windows_i686_msvc" 4095version = "0.52.6" 4096source = "registry+https://github.com/rust-lang/crates.io-index" 4097checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4098 4099[[package]] 4100name = "windows_i686_msvc" 4101version = "0.53.1" 4102source = "registry+https://github.com/rust-lang/crates.io-index" 4103checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 4104 4105[[package]] 4106name = "windows_x86_64_gnu" 4107version = "0.42.2" 4108source = "registry+https://github.com/rust-lang/crates.io-index" 4109checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 4110 4111[[package]] 4112name = "windows_x86_64_gnu" 4113version = "0.52.6" 4114source = "registry+https://github.com/rust-lang/crates.io-index" 4115checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4116 4117[[package]] 4118name = "windows_x86_64_gnu" 4119version = "0.53.1" 4120source = "registry+https://github.com/rust-lang/crates.io-index" 4121checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 4122 4123[[package]] 4124name = "windows_x86_64_gnullvm" 4125version = "0.42.2" 4126source = "registry+https://github.com/rust-lang/crates.io-index" 4127checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 4128 4129[[package]] 4130name = "windows_x86_64_gnullvm" 4131version = "0.52.6" 4132source = "registry+https://github.com/rust-lang/crates.io-index" 4133checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4134 4135[[package]] 4136name = "windows_x86_64_gnullvm" 4137version = "0.53.1" 4138source = "registry+https://github.com/rust-lang/crates.io-index" 4139checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 4140 4141[[package]] 4142name = "windows_x86_64_msvc" 4143version = "0.42.2" 4144source = "registry+https://github.com/rust-lang/crates.io-index" 4145checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 4146 4147[[package]] 4148name = "windows_x86_64_msvc" 4149version = "0.52.6" 4150source = "registry+https://github.com/rust-lang/crates.io-index" 4151checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4152 4153[[package]] 4154name = "windows_x86_64_msvc" 4155version = "0.53.1" 4156source = "registry+https://github.com/rust-lang/crates.io-index" 4157checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 4158 4159[[package]] 4160name = "winnow" 4161version = "0.5.40" 4162source = "registry+https://github.com/rust-lang/crates.io-index" 4163checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 4164dependencies = [ 4165 "memchr", 4166] 4167 4168[[package]] 4169name = "winnow" 4170version = "0.7.13" 4171source = "registry+https://github.com/rust-lang/crates.io-index" 4172checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" 4173dependencies = [ 4174 "memchr", 4175] 4176 4177[[package]] 4178name = "wit-bindgen" 4179version = "0.46.0" 4180source = "registry+https://github.com/rust-lang/crates.io-index" 4181checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 4182 4183[[package]] 4184name = "writeable" 4185version = "0.6.2" 4186source = "registry+https://github.com/rust-lang/crates.io-index" 4187checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 4188 4189[[package]] 4190name = "ws" 4191version = "0.9.2" 4192source = "registry+https://github.com/rust-lang/crates.io-index" 4193checksum = "25fe90c75f236a0a00247d5900226aea4f2d7b05ccc34da9e7a8880ff59b5848" 4194dependencies = [ 4195 "byteorder", 4196 "bytes 0.4.12", 4197 "httparse", 4198 "log", 4199 "mio 0.6.23", 4200 "mio-extras", 4201 "rand 0.7.3", 4202 "sha-1", 4203 "slab", 4204 "url", 4205] 4206 4207[[package]] 4208name = "ws2_32-sys" 4209version = "0.2.1" 4210source = "registry+https://github.com/rust-lang/crates.io-index" 4211checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 4212dependencies = [ 4213 "winapi 0.2.8", 4214 "winapi-build", 4215] 4216 4217[[package]] 4218name = "xmlwriter" 4219version = "0.1.0" 4220source = "registry+https://github.com/rust-lang/crates.io-index" 4221checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" 4222 4223[[package]] 4224name = "xtask" 4225version = "0.1.0" 4226dependencies = [ 4227 "nih_plug_xtask", 4228] 4229 4230[[package]] 4231name = "yoke" 4232version = "0.8.1" 4233source = "registry+https://github.com/rust-lang/crates.io-index" 4234checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 4235dependencies = [ 4236 "stable_deref_trait", 4237 "yoke-derive", 4238 "zerofrom", 4239] 4240 4241[[package]] 4242name = "yoke-derive" 4243version = "0.8.1" 4244source = "registry+https://github.com/rust-lang/crates.io-index" 4245checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 4246dependencies = [ 4247 "proc-macro2", 4248 "quote", 4249 "syn 2.0.110", 4250 "synstructure", 4251] 4252 4253[[package]] 4254name = "zbus" 4255version = "5.12.0" 4256source = "registry+https://github.com/rust-lang/crates.io-index" 4257checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91" 4258dependencies = [ 4259 "async-broadcast", 4260 "async-executor", 4261 "async-io", 4262 "async-lock", 4263 "async-process", 4264 "async-recursion", 4265 "async-task", 4266 "async-trait", 4267 "blocking", 4268 "enumflags2", 4269 "event-listener", 4270 "futures-core", 4271 "futures-lite", 4272 "hex", 4273 "nix", 4274 "ordered-stream", 4275 "serde", 4276 "serde_repr", 4277 "tracing", 4278 "uds_windows", 4279 "uuid", 4280 "windows-sys 0.61.2", 4281 "winnow 0.7.13", 4282 "zbus_macros", 4283 "zbus_names", 4284 "zvariant", 4285] 4286 4287[[package]] 4288name = "zbus_macros" 4289version = "5.12.0" 4290source = "registry+https://github.com/rust-lang/crates.io-index" 4291checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314" 4292dependencies = [ 4293 "proc-macro-crate", 4294 "proc-macro2", 4295 "quote", 4296 "syn 2.0.110", 4297 "zbus_names", 4298 "zvariant", 4299 "zvariant_utils", 4300] 4301 4302[[package]] 4303name = "zbus_names" 4304version = "4.2.0" 4305source = "registry+https://github.com/rust-lang/crates.io-index" 4306checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" 4307dependencies = [ 4308 "serde", 4309 "static_assertions", 4310 "winnow 0.7.13", 4311 "zvariant", 4312] 4313 4314[[package]] 4315name = "zerocopy" 4316version = "0.8.27" 4317source = "registry+https://github.com/rust-lang/crates.io-index" 4318checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" 4319dependencies = [ 4320 "zerocopy-derive", 4321] 4322 4323[[package]] 4324name = "zerocopy-derive" 4325version = "0.8.27" 4326source = "registry+https://github.com/rust-lang/crates.io-index" 4327checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" 4328dependencies = [ 4329 "proc-macro2", 4330 "quote", 4331 "syn 2.0.110", 4332] 4333 4334[[package]] 4335name = "zerofrom" 4336version = "0.1.6" 4337source = "registry+https://github.com/rust-lang/crates.io-index" 4338checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 4339dependencies = [ 4340 "zerofrom-derive", 4341] 4342 4343[[package]] 4344name = "zerofrom-derive" 4345version = "0.1.6" 4346source = "registry+https://github.com/rust-lang/crates.io-index" 4347checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 4348dependencies = [ 4349 "proc-macro2", 4350 "quote", 4351 "syn 2.0.110", 4352 "synstructure", 4353] 4354 4355[[package]] 4356name = "zerotrie" 4357version = "0.2.3" 4358source = "registry+https://github.com/rust-lang/crates.io-index" 4359checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 4360dependencies = [ 4361 "displaydoc", 4362 "yoke", 4363 "zerofrom", 4364] 4365 4366[[package]] 4367name = "zerovec" 4368version = "0.11.5" 4369source = "registry+https://github.com/rust-lang/crates.io-index" 4370checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 4371dependencies = [ 4372 "yoke", 4373 "zerofrom", 4374 "zerovec-derive", 4375] 4376 4377[[package]] 4378name = "zerovec-derive" 4379version = "0.11.2" 4380source = "registry+https://github.com/rust-lang/crates.io-index" 4381checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 4382dependencies = [ 4383 "proc-macro2", 4384 "quote", 4385 "syn 2.0.110", 4386] 4387 4388[[package]] 4389name = "zune-core" 4390version = "0.4.12" 4391source = "registry+https://github.com/rust-lang/crates.io-index" 4392checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" 4393 4394[[package]] 4395name = "zune-jpeg" 4396version = "0.4.21" 4397source = "registry+https://github.com/rust-lang/crates.io-index" 4398checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713" 4399dependencies = [ 4400 "zune-core", 4401] 4402 4403[[package]] 4404name = "zvariant" 4405version = "5.8.0" 4406source = "registry+https://github.com/rust-lang/crates.io-index" 4407checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c" 4408dependencies = [ 4409 "endi", 4410 "enumflags2", 4411 "serde", 4412 "winnow 0.7.13", 4413 "zvariant_derive", 4414 "zvariant_utils", 4415] 4416 4417[[package]] 4418name = "zvariant_derive" 4419version = "5.8.0" 4420source = "registry+https://github.com/rust-lang/crates.io-index" 4421checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006" 4422dependencies = [ 4423 "proc-macro-crate", 4424 "proc-macro2", 4425 "quote", 4426 "syn 2.0.110", 4427 "zvariant_utils", 4428] 4429 4430[[package]] 4431name = "zvariant_utils" 4432version = "3.2.1" 4433source = "registry+https://github.com/rust-lang/crates.io-index" 4434checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599" 4435dependencies = [ 4436 "proc-macro2", 4437 "quote", 4438 "serde", 4439 "syn 2.0.110", 4440 "winnow 0.7.13", 4441]