Live location tracking and playback for the game "manhunt"
at 6dc0e1e7148c9d84452e620e1b6cede01e367a2f 7397 lines 177 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "Inflector" 7version = "0.11.4" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 11[[package]] 12name = "addr2line" 13version = "0.24.2" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 16dependencies = [ 17 "gimli", 18] 19 20[[package]] 21name = "adler2" 22version = "2.0.1" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 25 26[[package]] 27name = "aead" 28version = "0.5.2" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 31dependencies = [ 32 "crypto-common", 33 "generic-array", 34] 35 36[[package]] 37name = "aes" 38version = "0.8.4" 39source = "registry+https://github.com/rust-lang/crates.io-index" 40checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 41dependencies = [ 42 "cfg-if", 43 "cipher", 44 "cpufeatures", 45] 46 47[[package]] 48name = "aes-gcm" 49version = "0.10.3" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 52dependencies = [ 53 "aead", 54 "aes", 55 "cipher", 56 "ctr", 57 "ghash", 58 "subtle", 59] 60 61[[package]] 62name = "ahash" 63version = "0.7.8" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 66dependencies = [ 67 "getrandom 0.2.16", 68 "once_cell", 69 "version_check", 70] 71 72[[package]] 73name = "aho-corasick" 74version = "1.1.3" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 77dependencies = [ 78 "memchr", 79] 80 81[[package]] 82name = "alloc-no-stdlib" 83version = "2.0.4" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 86 87[[package]] 88name = "alloc-stdlib" 89version = "0.2.2" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 92dependencies = [ 93 "alloc-no-stdlib", 94] 95 96[[package]] 97name = "android-tzdata" 98version = "0.1.1" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 101 102[[package]] 103name = "android_log-sys" 104version = "0.3.2" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d" 107 108[[package]] 109name = "android_logger" 110version = "0.15.0" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "f6f39be698127218cca460cb624878c9aa4e2b47dba3b277963d2bf00bad263b" 113dependencies = [ 114 "android_log-sys", 115 "env_filter", 116 "log", 117] 118 119[[package]] 120name = "android_system_properties" 121version = "0.1.5" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 124dependencies = [ 125 "libc", 126] 127 128[[package]] 129name = "anstream" 130version = "0.6.19" 131source = "registry+https://github.com/rust-lang/crates.io-index" 132checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933" 133dependencies = [ 134 "anstyle", 135 "anstyle-parse", 136 "anstyle-query", 137 "anstyle-wincon", 138 "colorchoice", 139 "is_terminal_polyfill", 140 "utf8parse", 141] 142 143[[package]] 144name = "anstyle" 145version = "1.0.11" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 148 149[[package]] 150name = "anstyle-parse" 151version = "0.2.7" 152source = "registry+https://github.com/rust-lang/crates.io-index" 153checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 154dependencies = [ 155 "utf8parse", 156] 157 158[[package]] 159name = "anstyle-query" 160version = "1.1.3" 161source = "registry+https://github.com/rust-lang/crates.io-index" 162checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9" 163dependencies = [ 164 "windows-sys 0.59.0", 165] 166 167[[package]] 168name = "anstyle-wincon" 169version = "3.0.9" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882" 172dependencies = [ 173 "anstyle", 174 "once_cell_polyfill", 175 "windows-sys 0.59.0", 176] 177 178[[package]] 179name = "anyhow" 180version = "1.0.98" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" 183 184[[package]] 185name = "arc-swap" 186version = "1.7.1" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 189 190[[package]] 191name = "arrayvec" 192version = "0.7.6" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 195 196[[package]] 197name = "asn1-rs" 198version = "0.6.2" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" 201dependencies = [ 202 "asn1-rs-derive", 203 "asn1-rs-impl", 204 "displaydoc", 205 "nom", 206 "num-traits", 207 "rusticata-macros", 208 "thiserror 1.0.69", 209 "time", 210] 211 212[[package]] 213name = "asn1-rs-derive" 214version = "0.5.1" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" 217dependencies = [ 218 "proc-macro2", 219 "quote", 220 "syn 2.0.103", 221 "synstructure", 222] 223 224[[package]] 225name = "asn1-rs-impl" 226version = "0.2.0" 227source = "registry+https://github.com/rust-lang/crates.io-index" 228checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" 229dependencies = [ 230 "proc-macro2", 231 "quote", 232 "syn 2.0.103", 233] 234 235[[package]] 236name = "async-broadcast" 237version = "0.7.2" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532" 240dependencies = [ 241 "event-listener 5.4.0", 242 "event-listener-strategy", 243 "futures-core", 244 "pin-project-lite", 245] 246 247[[package]] 248name = "async-channel" 249version = "1.9.0" 250source = "registry+https://github.com/rust-lang/crates.io-index" 251checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 252dependencies = [ 253 "concurrent-queue", 254 "event-listener 2.5.3", 255 "futures-core", 256] 257 258[[package]] 259name = "async-channel" 260version = "2.3.1" 261source = "registry+https://github.com/rust-lang/crates.io-index" 262checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" 263dependencies = [ 264 "concurrent-queue", 265 "event-listener-strategy", 266 "futures-core", 267 "pin-project-lite", 268] 269 270[[package]] 271name = "async-compat" 272version = "0.2.4" 273source = "registry+https://github.com/rust-lang/crates.io-index" 274checksum = "7bab94bde396a3f7b4962e396fdad640e241ed797d4d8d77fc8c237d14c58fc0" 275dependencies = [ 276 "futures-core", 277 "futures-io", 278 "once_cell", 279 "pin-project-lite", 280 "tokio", 281] 282 283[[package]] 284name = "async-executor" 285version = "1.13.2" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa" 288dependencies = [ 289 "async-task", 290 "concurrent-queue", 291 "fastrand", 292 "futures-lite", 293 "pin-project-lite", 294 "slab", 295] 296 297[[package]] 298name = "async-global-executor" 299version = "2.4.1" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 302dependencies = [ 303 "async-channel 2.3.1", 304 "async-executor", 305 "async-io", 306 "async-lock", 307 "blocking", 308 "futures-lite", 309 "once_cell", 310] 311 312[[package]] 313name = "async-io" 314version = "2.4.1" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "1237c0ae75a0f3765f58910ff9cdd0a12eeb39ab2f4c7de23262f337f0aacbb3" 317dependencies = [ 318 "async-lock", 319 "cfg-if", 320 "concurrent-queue", 321 "futures-io", 322 "futures-lite", 323 "parking", 324 "polling", 325 "rustix", 326 "slab", 327 "tracing", 328 "windows-sys 0.59.0", 329] 330 331[[package]] 332name = "async-lock" 333version = "3.4.0" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" 336dependencies = [ 337 "event-listener 5.4.0", 338 "event-listener-strategy", 339 "pin-project-lite", 340] 341 342[[package]] 343name = "async-process" 344version = "2.3.1" 345source = "registry+https://github.com/rust-lang/crates.io-index" 346checksum = "cde3f4e40e6021d7acffc90095cbd6dc54cb593903d1de5832f435eb274b85dc" 347dependencies = [ 348 "async-channel 2.3.1", 349 "async-io", 350 "async-lock", 351 "async-signal", 352 "async-task", 353 "blocking", 354 "cfg-if", 355 "event-listener 5.4.0", 356 "futures-lite", 357 "rustix", 358 "tracing", 359] 360 361[[package]] 362name = "async-recursion" 363version = "1.1.1" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 366dependencies = [ 367 "proc-macro2", 368 "quote", 369 "syn 2.0.103", 370] 371 372[[package]] 373name = "async-signal" 374version = "0.2.11" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "d7605a4e50d4b06df3898d5a70bf5fde51ed9059b0434b73105193bc27acce0d" 377dependencies = [ 378 "async-io", 379 "async-lock", 380 "atomic-waker", 381 "cfg-if", 382 "futures-core", 383 "futures-io", 384 "rustix", 385 "signal-hook-registry", 386 "slab", 387 "windows-sys 0.59.0", 388] 389 390[[package]] 391name = "async-std" 392version = "1.13.1" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "730294c1c08c2e0f85759590518f6333f0d5a0a766a27d519c1b244c3dfd8a24" 395dependencies = [ 396 "async-channel 1.9.0", 397 "async-global-executor", 398 "async-io", 399 "async-lock", 400 "crossbeam-utils", 401 "futures-channel", 402 "futures-core", 403 "futures-io", 404 "futures-lite", 405 "gloo-timers 0.3.0", 406 "kv-log-macro", 407 "log", 408 "memchr", 409 "once_cell", 410 "pin-project-lite", 411 "pin-utils", 412 "slab", 413 "wasm-bindgen-futures", 414] 415 416[[package]] 417name = "async-task" 418version = "4.7.1" 419source = "registry+https://github.com/rust-lang/crates.io-index" 420checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 421 422[[package]] 423name = "async-tls" 424version = "0.13.0" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "b2ae3c9eba89d472a0e4fe1dea433df78fbbe63d2b764addaf2ba3a6bde89a5e" 427dependencies = [ 428 "futures-core", 429 "futures-io", 430 "rustls 0.21.12", 431 "rustls-pemfile", 432 "webpki-roots", 433] 434 435[[package]] 436name = "async-trait" 437version = "0.1.88" 438source = "registry+https://github.com/rust-lang/crates.io-index" 439checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" 440dependencies = [ 441 "proc-macro2", 442 "quote", 443 "syn 2.0.103", 444] 445 446[[package]] 447name = "async-tungstenite" 448version = "0.29.1" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "ef0f7efedeac57d9b26170f72965ecfd31473ca52ca7a64e925b0b6f5f079886" 451dependencies = [ 452 "async-std", 453 "async-tls", 454 "atomic-waker", 455 "futures-core", 456 "futures-io", 457 "futures-task", 458 "log", 459 "pin-project-lite", 460 "tungstenite", 461] 462 463[[package]] 464name = "async_io_stream" 465version = "0.3.3" 466source = "registry+https://github.com/rust-lang/crates.io-index" 467checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" 468dependencies = [ 469 "futures", 470 "pharos", 471 "rustc_version", 472] 473 474[[package]] 475name = "atk" 476version = "0.18.2" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" 479dependencies = [ 480 "atk-sys", 481 "glib", 482 "libc", 483] 484 485[[package]] 486name = "atk-sys" 487version = "0.18.2" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" 490dependencies = [ 491 "glib-sys", 492 "gobject-sys", 493 "libc", 494 "system-deps", 495] 496 497[[package]] 498name = "atomic-waker" 499version = "1.1.2" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 502 503[[package]] 504name = "autocfg" 505version = "1.4.0" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 508 509[[package]] 510name = "axum" 511version = "0.8.4" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5" 514dependencies = [ 515 "axum-core", 516 "base64 0.22.1", 517 "bytes", 518 "form_urlencoded", 519 "futures-util", 520 "http", 521 "http-body", 522 "http-body-util", 523 "hyper", 524 "hyper-util", 525 "itoa 1.0.15", 526 "matchit", 527 "memchr", 528 "mime", 529 "percent-encoding", 530 "pin-project-lite", 531 "rustversion", 532 "serde", 533 "serde_json", 534 "serde_path_to_error", 535 "serde_urlencoded", 536 "sha1", 537 "sync_wrapper", 538 "tokio", 539 "tokio-tungstenite", 540 "tower", 541 "tower-layer", 542 "tower-service", 543 "tracing", 544] 545 546[[package]] 547name = "axum-core" 548version = "0.5.2" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" 551dependencies = [ 552 "bytes", 553 "futures-core", 554 "http", 555 "http-body", 556 "http-body-util", 557 "mime", 558 "pin-project-lite", 559 "rustversion", 560 "sync_wrapper", 561 "tower-layer", 562 "tower-service", 563 "tracing", 564] 565 566[[package]] 567name = "backtrace" 568version = "0.3.75" 569source = "registry+https://github.com/rust-lang/crates.io-index" 570checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 571dependencies = [ 572 "addr2line", 573 "cfg-if", 574 "libc", 575 "miniz_oxide", 576 "object", 577 "rustc-demangle", 578 "windows-targets 0.52.6", 579] 580 581[[package]] 582name = "base16ct" 583version = "0.2.0" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 586 587[[package]] 588name = "base64" 589version = "0.21.7" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 592 593[[package]] 594name = "base64" 595version = "0.22.1" 596source = "registry+https://github.com/rust-lang/crates.io-index" 597checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 598 599[[package]] 600name = "base64ct" 601version = "1.8.0" 602source = "registry+https://github.com/rust-lang/crates.io-index" 603checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" 604 605[[package]] 606name = "bincode" 607version = "1.3.3" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 610dependencies = [ 611 "serde", 612] 613 614[[package]] 615name = "bitflags" 616version = "1.3.2" 617source = "registry+https://github.com/rust-lang/crates.io-index" 618checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 619 620[[package]] 621name = "bitflags" 622version = "2.9.1" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 625dependencies = [ 626 "serde", 627] 628 629[[package]] 630name = "bitvec" 631version = "1.0.1" 632source = "registry+https://github.com/rust-lang/crates.io-index" 633checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 634dependencies = [ 635 "funty", 636 "radium", 637 "tap", 638 "wyz", 639] 640 641[[package]] 642name = "block-buffer" 643version = "0.10.4" 644source = "registry+https://github.com/rust-lang/crates.io-index" 645checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 646dependencies = [ 647 "generic-array", 648] 649 650[[package]] 651name = "block-padding" 652version = "0.3.3" 653source = "registry+https://github.com/rust-lang/crates.io-index" 654checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 655dependencies = [ 656 "generic-array", 657] 658 659[[package]] 660name = "block2" 661version = "0.5.1" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 664dependencies = [ 665 "objc2 0.5.2", 666] 667 668[[package]] 669name = "block2" 670version = "0.6.1" 671source = "registry+https://github.com/rust-lang/crates.io-index" 672checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" 673dependencies = [ 674 "objc2 0.6.1", 675] 676 677[[package]] 678name = "blocking" 679version = "1.6.1" 680source = "registry+https://github.com/rust-lang/crates.io-index" 681checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" 682dependencies = [ 683 "async-channel 2.3.1", 684 "async-task", 685 "futures-io", 686 "futures-lite", 687 "piper", 688] 689 690[[package]] 691name = "borsh" 692version = "1.5.7" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" 695dependencies = [ 696 "borsh-derive", 697 "cfg_aliases", 698] 699 700[[package]] 701name = "borsh-derive" 702version = "1.5.7" 703source = "registry+https://github.com/rust-lang/crates.io-index" 704checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3" 705dependencies = [ 706 "once_cell", 707 "proc-macro-crate 3.3.0", 708 "proc-macro2", 709 "quote", 710 "syn 2.0.103", 711] 712 713[[package]] 714name = "brotli" 715version = "7.0.0" 716source = "registry+https://github.com/rust-lang/crates.io-index" 717checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" 718dependencies = [ 719 "alloc-no-stdlib", 720 "alloc-stdlib", 721 "brotli-decompressor", 722] 723 724[[package]] 725name = "brotli-decompressor" 726version = "4.0.3" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd" 729dependencies = [ 730 "alloc-no-stdlib", 731 "alloc-stdlib", 732] 733 734[[package]] 735name = "bumpalo" 736version = "3.18.1" 737source = "registry+https://github.com/rust-lang/crates.io-index" 738checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee" 739 740[[package]] 741name = "byte-unit" 742version = "5.1.6" 743source = "registry+https://github.com/rust-lang/crates.io-index" 744checksum = "e1cd29c3c585209b0cbc7309bfe3ed7efd8c84c21b7af29c8bfae908f8777174" 745dependencies = [ 746 "rust_decimal", 747 "serde", 748 "utf8-width", 749] 750 751[[package]] 752name = "bytecheck" 753version = "0.6.12" 754source = "registry+https://github.com/rust-lang/crates.io-index" 755checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 756dependencies = [ 757 "bytecheck_derive", 758 "ptr_meta", 759 "simdutf8", 760] 761 762[[package]] 763name = "bytecheck_derive" 764version = "0.6.12" 765source = "registry+https://github.com/rust-lang/crates.io-index" 766checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 767dependencies = [ 768 "proc-macro2", 769 "quote", 770 "syn 1.0.109", 771] 772 773[[package]] 774name = "bytemuck" 775version = "1.23.1" 776source = "registry+https://github.com/rust-lang/crates.io-index" 777checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422" 778 779[[package]] 780name = "byteorder" 781version = "1.5.0" 782source = "registry+https://github.com/rust-lang/crates.io-index" 783checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 784 785[[package]] 786name = "bytes" 787version = "1.10.1" 788source = "registry+https://github.com/rust-lang/crates.io-index" 789checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 790dependencies = [ 791 "serde", 792] 793 794[[package]] 795name = "cairo-rs" 796version = "0.18.5" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 799dependencies = [ 800 "bitflags 2.9.1", 801 "cairo-sys-rs", 802 "glib", 803 "libc", 804 "once_cell", 805 "thiserror 1.0.69", 806] 807 808[[package]] 809name = "cairo-sys-rs" 810version = "0.18.2" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 813dependencies = [ 814 "glib-sys", 815 "libc", 816 "system-deps", 817] 818 819[[package]] 820name = "camino" 821version = "1.1.10" 822source = "registry+https://github.com/rust-lang/crates.io-index" 823checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab" 824dependencies = [ 825 "serde", 826] 827 828[[package]] 829name = "cargo-platform" 830version = "0.1.9" 831source = "registry+https://github.com/rust-lang/crates.io-index" 832checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 833dependencies = [ 834 "serde", 835] 836 837[[package]] 838name = "cargo_metadata" 839version = "0.19.2" 840source = "registry+https://github.com/rust-lang/crates.io-index" 841checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" 842dependencies = [ 843 "camino", 844 "cargo-platform", 845 "semver", 846 "serde", 847 "serde_json", 848 "thiserror 2.0.12", 849] 850 851[[package]] 852name = "cargo_toml" 853version = "0.22.1" 854source = "registry+https://github.com/rust-lang/crates.io-index" 855checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257" 856dependencies = [ 857 "serde", 858 "toml", 859] 860 861[[package]] 862name = "cbc" 863version = "0.1.2" 864source = "registry+https://github.com/rust-lang/crates.io-index" 865checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 866dependencies = [ 867 "cipher", 868] 869 870[[package]] 871name = "cc" 872version = "1.2.27" 873source = "registry+https://github.com/rust-lang/crates.io-index" 874checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc" 875dependencies = [ 876 "shlex", 877] 878 879[[package]] 880name = "ccm" 881version = "0.5.0" 882source = "registry+https://github.com/rust-lang/crates.io-index" 883checksum = "9ae3c82e4355234767756212c570e29833699ab63e6ffd161887314cc5b43847" 884dependencies = [ 885 "aead", 886 "cipher", 887 "ctr", 888 "subtle", 889] 890 891[[package]] 892name = "cesu8" 893version = "1.1.0" 894source = "registry+https://github.com/rust-lang/crates.io-index" 895checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 896 897[[package]] 898name = "cfb" 899version = "0.7.3" 900source = "registry+https://github.com/rust-lang/crates.io-index" 901checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 902dependencies = [ 903 "byteorder", 904 "fnv", 905 "uuid", 906] 907 908[[package]] 909name = "cfg-expr" 910version = "0.15.8" 911source = "registry+https://github.com/rust-lang/crates.io-index" 912checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 913dependencies = [ 914 "smallvec", 915 "target-lexicon", 916] 917 918[[package]] 919name = "cfg-if" 920version = "1.0.1" 921source = "registry+https://github.com/rust-lang/crates.io-index" 922checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" 923 924[[package]] 925name = "cfg_aliases" 926version = "0.2.1" 927source = "registry+https://github.com/rust-lang/crates.io-index" 928checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 929 930[[package]] 931name = "chrono" 932version = "0.4.41" 933source = "registry+https://github.com/rust-lang/crates.io-index" 934checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" 935dependencies = [ 936 "android-tzdata", 937 "iana-time-zone", 938 "js-sys", 939 "num-traits", 940 "serde", 941 "wasm-bindgen", 942 "windows-link", 943] 944 945[[package]] 946name = "cipher" 947version = "0.4.4" 948source = "registry+https://github.com/rust-lang/crates.io-index" 949checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 950dependencies = [ 951 "crypto-common", 952 "inout", 953] 954 955[[package]] 956name = "colog" 957version = "1.3.0" 958source = "registry+https://github.com/rust-lang/crates.io-index" 959checksum = "2c426b7af8d5e0ad79de6713996632ce31f0d68ba84068fb0d654b396e519df0" 960dependencies = [ 961 "colored", 962 "env_logger", 963 "log", 964] 965 966[[package]] 967name = "colorchoice" 968version = "1.0.4" 969source = "registry+https://github.com/rust-lang/crates.io-index" 970checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 971 972[[package]] 973name = "colored" 974version = "2.2.0" 975source = "registry+https://github.com/rust-lang/crates.io-index" 976checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" 977dependencies = [ 978 "lazy_static", 979 "windows-sys 0.59.0", 980] 981 982[[package]] 983name = "combine" 984version = "4.6.7" 985source = "registry+https://github.com/rust-lang/crates.io-index" 986checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 987dependencies = [ 988 "bytes", 989 "memchr", 990] 991 992[[package]] 993name = "concurrent-queue" 994version = "2.5.0" 995source = "registry+https://github.com/rust-lang/crates.io-index" 996checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 997dependencies = [ 998 "crossbeam-utils", 999] 1000 1001[[package]] 1002name = "const-oid" 1003version = "0.9.6" 1004source = "registry+https://github.com/rust-lang/crates.io-index" 1005checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1006 1007[[package]] 1008name = "convert_case" 1009version = "0.4.0" 1010source = "registry+https://github.com/rust-lang/crates.io-index" 1011checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1012 1013[[package]] 1014name = "cookie" 1015version = "0.18.1" 1016source = "registry+https://github.com/rust-lang/crates.io-index" 1017checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 1018dependencies = [ 1019 "time", 1020 "version_check", 1021] 1022 1023[[package]] 1024name = "core-foundation" 1025version = "0.10.1" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 1028dependencies = [ 1029 "core-foundation-sys", 1030 "libc", 1031] 1032 1033[[package]] 1034name = "core-foundation-sys" 1035version = "0.8.7" 1036source = "registry+https://github.com/rust-lang/crates.io-index" 1037checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 1038 1039[[package]] 1040name = "core-graphics" 1041version = "0.24.0" 1042source = "registry+https://github.com/rust-lang/crates.io-index" 1043checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" 1044dependencies = [ 1045 "bitflags 2.9.1", 1046 "core-foundation", 1047 "core-graphics-types", 1048 "foreign-types", 1049 "libc", 1050] 1051 1052[[package]] 1053name = "core-graphics-types" 1054version = "0.2.0" 1055source = "registry+https://github.com/rust-lang/crates.io-index" 1056checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" 1057dependencies = [ 1058 "bitflags 2.9.1", 1059 "core-foundation", 1060 "libc", 1061] 1062 1063[[package]] 1064name = "cpufeatures" 1065version = "0.2.17" 1066source = "registry+https://github.com/rust-lang/crates.io-index" 1067checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 1068dependencies = [ 1069 "libc", 1070] 1071 1072[[package]] 1073name = "crc" 1074version = "3.3.0" 1075source = "registry+https://github.com/rust-lang/crates.io-index" 1076checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" 1077dependencies = [ 1078 "crc-catalog", 1079] 1080 1081[[package]] 1082name = "crc-catalog" 1083version = "2.4.0" 1084source = "registry+https://github.com/rust-lang/crates.io-index" 1085checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1086 1087[[package]] 1088name = "crc32fast" 1089version = "1.4.2" 1090source = "registry+https://github.com/rust-lang/crates.io-index" 1091checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 1092dependencies = [ 1093 "cfg-if", 1094] 1095 1096[[package]] 1097name = "crossbeam-channel" 1098version = "0.5.15" 1099source = "registry+https://github.com/rust-lang/crates.io-index" 1100checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 1101dependencies = [ 1102 "crossbeam-utils", 1103] 1104 1105[[package]] 1106name = "crossbeam-utils" 1107version = "0.8.21" 1108source = "registry+https://github.com/rust-lang/crates.io-index" 1109checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 1110 1111[[package]] 1112name = "crypto-bigint" 1113version = "0.5.5" 1114source = "registry+https://github.com/rust-lang/crates.io-index" 1115checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1116dependencies = [ 1117 "generic-array", 1118 "rand_core 0.6.4", 1119 "subtle", 1120 "zeroize", 1121] 1122 1123[[package]] 1124name = "crypto-common" 1125version = "0.1.6" 1126source = "registry+https://github.com/rust-lang/crates.io-index" 1127checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1128dependencies = [ 1129 "generic-array", 1130 "rand_core 0.6.4", 1131 "typenum", 1132] 1133 1134[[package]] 1135name = "cssparser" 1136version = "0.27.2" 1137source = "registry+https://github.com/rust-lang/crates.io-index" 1138checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 1139dependencies = [ 1140 "cssparser-macros", 1141 "dtoa-short", 1142 "itoa 0.4.8", 1143 "matches", 1144 "phf 0.8.0", 1145 "proc-macro2", 1146 "quote", 1147 "smallvec", 1148 "syn 1.0.109", 1149] 1150 1151[[package]] 1152name = "cssparser-macros" 1153version = "0.6.1" 1154source = "registry+https://github.com/rust-lang/crates.io-index" 1155checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" 1156dependencies = [ 1157 "quote", 1158 "syn 2.0.103", 1159] 1160 1161[[package]] 1162name = "ctor" 1163version = "0.2.9" 1164source = "registry+https://github.com/rust-lang/crates.io-index" 1165checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" 1166dependencies = [ 1167 "quote", 1168 "syn 2.0.103", 1169] 1170 1171[[package]] 1172name = "ctr" 1173version = "0.9.2" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1176dependencies = [ 1177 "cipher", 1178] 1179 1180[[package]] 1181name = "curve25519-dalek" 1182version = "4.1.3" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1185dependencies = [ 1186 "cfg-if", 1187 "cpufeatures", 1188 "curve25519-dalek-derive", 1189 "fiat-crypto", 1190 "rustc_version", 1191 "subtle", 1192 "zeroize", 1193] 1194 1195[[package]] 1196name = "curve25519-dalek-derive" 1197version = "0.1.1" 1198source = "registry+https://github.com/rust-lang/crates.io-index" 1199checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1200dependencies = [ 1201 "proc-macro2", 1202 "quote", 1203 "syn 2.0.103", 1204] 1205 1206[[package]] 1207name = "darling" 1208version = "0.20.11" 1209source = "registry+https://github.com/rust-lang/crates.io-index" 1210checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 1211dependencies = [ 1212 "darling_core", 1213 "darling_macro", 1214] 1215 1216[[package]] 1217name = "darling_core" 1218version = "0.20.11" 1219source = "registry+https://github.com/rust-lang/crates.io-index" 1220checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 1221dependencies = [ 1222 "fnv", 1223 "ident_case", 1224 "proc-macro2", 1225 "quote", 1226 "strsim", 1227 "syn 2.0.103", 1228] 1229 1230[[package]] 1231name = "darling_macro" 1232version = "0.20.11" 1233source = "registry+https://github.com/rust-lang/crates.io-index" 1234checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 1235dependencies = [ 1236 "darling_core", 1237 "quote", 1238 "syn 2.0.103", 1239] 1240 1241[[package]] 1242name = "data-encoding" 1243version = "2.9.0" 1244source = "registry+https://github.com/rust-lang/crates.io-index" 1245checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 1246 1247[[package]] 1248name = "der" 1249version = "0.7.10" 1250source = "registry+https://github.com/rust-lang/crates.io-index" 1251checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1252dependencies = [ 1253 "const-oid", 1254 "pem-rfc7468", 1255 "zeroize", 1256] 1257 1258[[package]] 1259name = "der-parser" 1260version = "9.0.0" 1261source = "registry+https://github.com/rust-lang/crates.io-index" 1262checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" 1263dependencies = [ 1264 "asn1-rs", 1265 "displaydoc", 1266 "nom", 1267 "num-bigint", 1268 "num-traits", 1269 "rusticata-macros", 1270] 1271 1272[[package]] 1273name = "deranged" 1274version = "0.4.0" 1275source = "registry+https://github.com/rust-lang/crates.io-index" 1276checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" 1277dependencies = [ 1278 "powerfmt", 1279 "serde", 1280] 1281 1282[[package]] 1283name = "derive_more" 1284version = "0.99.20" 1285source = "registry+https://github.com/rust-lang/crates.io-index" 1286checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" 1287dependencies = [ 1288 "convert_case", 1289 "proc-macro2", 1290 "quote", 1291 "rustc_version", 1292 "syn 2.0.103", 1293] 1294 1295[[package]] 1296name = "derive_more" 1297version = "2.0.1" 1298source = "registry+https://github.com/rust-lang/crates.io-index" 1299checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" 1300dependencies = [ 1301 "derive_more-impl", 1302] 1303 1304[[package]] 1305name = "derive_more-impl" 1306version = "2.0.1" 1307source = "registry+https://github.com/rust-lang/crates.io-index" 1308checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" 1309dependencies = [ 1310 "proc-macro2", 1311 "quote", 1312 "syn 2.0.103", 1313 "unicode-xid", 1314] 1315 1316[[package]] 1317name = "digest" 1318version = "0.10.7" 1319source = "registry+https://github.com/rust-lang/crates.io-index" 1320checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1321dependencies = [ 1322 "block-buffer", 1323 "const-oid", 1324 "crypto-common", 1325 "subtle", 1326] 1327 1328[[package]] 1329name = "dirs" 1330version = "6.0.0" 1331source = "registry+https://github.com/rust-lang/crates.io-index" 1332checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" 1333dependencies = [ 1334 "dirs-sys", 1335] 1336 1337[[package]] 1338name = "dirs-sys" 1339version = "0.5.0" 1340source = "registry+https://github.com/rust-lang/crates.io-index" 1341checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" 1342dependencies = [ 1343 "libc", 1344 "option-ext", 1345 "redox_users", 1346 "windows-sys 0.60.2", 1347] 1348 1349[[package]] 1350name = "dispatch" 1351version = "0.2.0" 1352source = "registry+https://github.com/rust-lang/crates.io-index" 1353checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 1354 1355[[package]] 1356name = "dispatch2" 1357version = "0.3.0" 1358source = "registry+https://github.com/rust-lang/crates.io-index" 1359checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" 1360dependencies = [ 1361 "bitflags 2.9.1", 1362 "objc2 0.6.1", 1363] 1364 1365[[package]] 1366name = "displaydoc" 1367version = "0.2.5" 1368source = "registry+https://github.com/rust-lang/crates.io-index" 1369checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1370dependencies = [ 1371 "proc-macro2", 1372 "quote", 1373 "syn 2.0.103", 1374] 1375 1376[[package]] 1377name = "dlopen2" 1378version = "0.7.0" 1379source = "registry+https://github.com/rust-lang/crates.io-index" 1380checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" 1381dependencies = [ 1382 "dlopen2_derive", 1383 "libc", 1384 "once_cell", 1385 "winapi", 1386] 1387 1388[[package]] 1389name = "dlopen2_derive" 1390version = "0.4.1" 1391source = "registry+https://github.com/rust-lang/crates.io-index" 1392checksum = "788160fb30de9cdd857af31c6a2675904b16ece8fc2737b2c7127ba368c9d0f4" 1393dependencies = [ 1394 "proc-macro2", 1395 "quote", 1396 "syn 2.0.103", 1397] 1398 1399[[package]] 1400name = "dpi" 1401version = "0.1.2" 1402source = "registry+https://github.com/rust-lang/crates.io-index" 1403checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" 1404dependencies = [ 1405 "serde", 1406] 1407 1408[[package]] 1409name = "dtoa" 1410version = "1.0.10" 1411source = "registry+https://github.com/rust-lang/crates.io-index" 1412checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" 1413 1414[[package]] 1415name = "dtoa-short" 1416version = "0.3.5" 1417source = "registry+https://github.com/rust-lang/crates.io-index" 1418checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" 1419dependencies = [ 1420 "dtoa", 1421] 1422 1423[[package]] 1424name = "dunce" 1425version = "1.0.5" 1426source = "registry+https://github.com/rust-lang/crates.io-index" 1427checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 1428 1429[[package]] 1430name = "dyn-clone" 1431version = "1.0.19" 1432source = "registry+https://github.com/rust-lang/crates.io-index" 1433checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" 1434 1435[[package]] 1436name = "ecdsa" 1437version = "0.16.9" 1438source = "registry+https://github.com/rust-lang/crates.io-index" 1439checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1440dependencies = [ 1441 "der", 1442 "digest", 1443 "elliptic-curve", 1444 "rfc6979", 1445 "signature", 1446 "spki", 1447] 1448 1449[[package]] 1450name = "elliptic-curve" 1451version = "0.13.8" 1452source = "registry+https://github.com/rust-lang/crates.io-index" 1453checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1454dependencies = [ 1455 "base16ct", 1456 "crypto-bigint", 1457 "digest", 1458 "ff", 1459 "generic-array", 1460 "group", 1461 "hkdf", 1462 "pem-rfc7468", 1463 "pkcs8", 1464 "rand_core 0.6.4", 1465 "sec1", 1466 "subtle", 1467 "zeroize", 1468] 1469 1470[[package]] 1471name = "embed-resource" 1472version = "3.0.3" 1473source = "registry+https://github.com/rust-lang/crates.io-index" 1474checksum = "e8fe7d068ca6b3a5782ca5ec9afc244acd99dd441e4686a83b1c3973aba1d489" 1475dependencies = [ 1476 "cc", 1477 "memchr", 1478 "rustc_version", 1479 "toml", 1480 "vswhom", 1481 "winreg", 1482] 1483 1484[[package]] 1485name = "embed_plist" 1486version = "1.2.2" 1487source = "registry+https://github.com/rust-lang/crates.io-index" 1488checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 1489 1490[[package]] 1491name = "endi" 1492version = "1.1.0" 1493source = "registry+https://github.com/rust-lang/crates.io-index" 1494checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" 1495 1496[[package]] 1497name = "enumflags2" 1498version = "0.7.12" 1499source = "registry+https://github.com/rust-lang/crates.io-index" 1500checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" 1501dependencies = [ 1502 "enumflags2_derive", 1503 "serde", 1504] 1505 1506[[package]] 1507name = "enumflags2_derive" 1508version = "0.7.12" 1509source = "registry+https://github.com/rust-lang/crates.io-index" 1510checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" 1511dependencies = [ 1512 "proc-macro2", 1513 "quote", 1514 "syn 2.0.103", 1515] 1516 1517[[package]] 1518name = "env_filter" 1519version = "0.1.3" 1520source = "registry+https://github.com/rust-lang/crates.io-index" 1521checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" 1522dependencies = [ 1523 "log", 1524 "regex", 1525] 1526 1527[[package]] 1528name = "env_logger" 1529version = "0.11.8" 1530source = "registry+https://github.com/rust-lang/crates.io-index" 1531checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" 1532dependencies = [ 1533 "anstream", 1534 "anstyle", 1535 "env_filter", 1536 "jiff", 1537 "log", 1538] 1539 1540[[package]] 1541name = "equivalent" 1542version = "1.0.2" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1545 1546[[package]] 1547name = "erased-serde" 1548version = "0.4.6" 1549source = "registry+https://github.com/rust-lang/crates.io-index" 1550checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7" 1551dependencies = [ 1552 "serde", 1553 "typeid", 1554] 1555 1556[[package]] 1557name = "errno" 1558version = "0.3.12" 1559source = "registry+https://github.com/rust-lang/crates.io-index" 1560checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18" 1561dependencies = [ 1562 "libc", 1563 "windows-sys 0.59.0", 1564] 1565 1566[[package]] 1567name = "event-listener" 1568version = "2.5.3" 1569source = "registry+https://github.com/rust-lang/crates.io-index" 1570checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1571 1572[[package]] 1573name = "event-listener" 1574version = "5.4.0" 1575source = "registry+https://github.com/rust-lang/crates.io-index" 1576checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" 1577dependencies = [ 1578 "concurrent-queue", 1579 "parking", 1580 "pin-project-lite", 1581] 1582 1583[[package]] 1584name = "event-listener-strategy" 1585version = "0.5.4" 1586source = "registry+https://github.com/rust-lang/crates.io-index" 1587checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 1588dependencies = [ 1589 "event-listener 5.4.0", 1590 "pin-project-lite", 1591] 1592 1593[[package]] 1594name = "fastrand" 1595version = "2.3.0" 1596source = "registry+https://github.com/rust-lang/crates.io-index" 1597checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1598 1599[[package]] 1600name = "fdeflate" 1601version = "0.3.7" 1602source = "registry+https://github.com/rust-lang/crates.io-index" 1603checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 1604dependencies = [ 1605 "simd-adler32", 1606] 1607 1608[[package]] 1609name = "fern" 1610version = "0.7.1" 1611source = "registry+https://github.com/rust-lang/crates.io-index" 1612checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29" 1613dependencies = [ 1614 "log", 1615] 1616 1617[[package]] 1618name = "ff" 1619version = "0.13.1" 1620source = "registry+https://github.com/rust-lang/crates.io-index" 1621checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 1622dependencies = [ 1623 "rand_core 0.6.4", 1624 "subtle", 1625] 1626 1627[[package]] 1628name = "fiat-crypto" 1629version = "0.2.9" 1630source = "registry+https://github.com/rust-lang/crates.io-index" 1631checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 1632 1633[[package]] 1634name = "field-offset" 1635version = "0.3.6" 1636source = "registry+https://github.com/rust-lang/crates.io-index" 1637checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 1638dependencies = [ 1639 "memoffset 0.9.1", 1640 "rustc_version", 1641] 1642 1643[[package]] 1644name = "flate2" 1645version = "1.1.2" 1646source = "registry+https://github.com/rust-lang/crates.io-index" 1647checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 1648dependencies = [ 1649 "crc32fast", 1650 "miniz_oxide", 1651] 1652 1653[[package]] 1654name = "fnv" 1655version = "1.0.7" 1656source = "registry+https://github.com/rust-lang/crates.io-index" 1657checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1658 1659[[package]] 1660name = "foreign-types" 1661version = "0.5.0" 1662source = "registry+https://github.com/rust-lang/crates.io-index" 1663checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" 1664dependencies = [ 1665 "foreign-types-macros", 1666 "foreign-types-shared", 1667] 1668 1669[[package]] 1670name = "foreign-types-macros" 1671version = "0.2.3" 1672source = "registry+https://github.com/rust-lang/crates.io-index" 1673checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" 1674dependencies = [ 1675 "proc-macro2", 1676 "quote", 1677 "syn 2.0.103", 1678] 1679 1680[[package]] 1681name = "foreign-types-shared" 1682version = "0.3.1" 1683source = "registry+https://github.com/rust-lang/crates.io-index" 1684checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" 1685 1686[[package]] 1687name = "form_urlencoded" 1688version = "1.2.1" 1689source = "registry+https://github.com/rust-lang/crates.io-index" 1690checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1691dependencies = [ 1692 "percent-encoding", 1693] 1694 1695[[package]] 1696name = "funty" 1697version = "2.0.0" 1698source = "registry+https://github.com/rust-lang/crates.io-index" 1699checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1700 1701[[package]] 1702name = "futf" 1703version = "0.1.5" 1704source = "registry+https://github.com/rust-lang/crates.io-index" 1705checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1706dependencies = [ 1707 "mac", 1708 "new_debug_unreachable", 1709] 1710 1711[[package]] 1712name = "futures" 1713version = "0.3.31" 1714source = "registry+https://github.com/rust-lang/crates.io-index" 1715checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1716dependencies = [ 1717 "futures-channel", 1718 "futures-core", 1719 "futures-executor", 1720 "futures-io", 1721 "futures-sink", 1722 "futures-task", 1723 "futures-util", 1724] 1725 1726[[package]] 1727name = "futures-channel" 1728version = "0.3.31" 1729source = "registry+https://github.com/rust-lang/crates.io-index" 1730checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1731dependencies = [ 1732 "futures-core", 1733 "futures-sink", 1734] 1735 1736[[package]] 1737name = "futures-core" 1738version = "0.3.31" 1739source = "registry+https://github.com/rust-lang/crates.io-index" 1740checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1741 1742[[package]] 1743name = "futures-executor" 1744version = "0.3.31" 1745source = "registry+https://github.com/rust-lang/crates.io-index" 1746checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1747dependencies = [ 1748 "futures-core", 1749 "futures-task", 1750 "futures-util", 1751] 1752 1753[[package]] 1754name = "futures-io" 1755version = "0.3.31" 1756source = "registry+https://github.com/rust-lang/crates.io-index" 1757checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1758 1759[[package]] 1760name = "futures-lite" 1761version = "2.6.0" 1762source = "registry+https://github.com/rust-lang/crates.io-index" 1763checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" 1764dependencies = [ 1765 "fastrand", 1766 "futures-core", 1767 "futures-io", 1768 "parking", 1769 "pin-project-lite", 1770] 1771 1772[[package]] 1773name = "futures-macro" 1774version = "0.3.31" 1775source = "registry+https://github.com/rust-lang/crates.io-index" 1776checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1777dependencies = [ 1778 "proc-macro2", 1779 "quote", 1780 "syn 2.0.103", 1781] 1782 1783[[package]] 1784name = "futures-sink" 1785version = "0.3.31" 1786source = "registry+https://github.com/rust-lang/crates.io-index" 1787checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1788 1789[[package]] 1790name = "futures-task" 1791version = "0.3.31" 1792source = "registry+https://github.com/rust-lang/crates.io-index" 1793checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1794 1795[[package]] 1796name = "futures-timer" 1797version = "3.0.3" 1798source = "registry+https://github.com/rust-lang/crates.io-index" 1799checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 1800dependencies = [ 1801 "gloo-timers 0.2.6", 1802 "send_wrapper 0.4.0", 1803] 1804 1805[[package]] 1806name = "futures-util" 1807version = "0.3.31" 1808source = "registry+https://github.com/rust-lang/crates.io-index" 1809checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1810dependencies = [ 1811 "futures-channel", 1812 "futures-core", 1813 "futures-io", 1814 "futures-macro", 1815 "futures-sink", 1816 "futures-task", 1817 "memchr", 1818 "pin-project-lite", 1819 "pin-utils", 1820 "slab", 1821] 1822 1823[[package]] 1824name = "fxhash" 1825version = "0.2.1" 1826source = "registry+https://github.com/rust-lang/crates.io-index" 1827checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 1828dependencies = [ 1829 "byteorder", 1830] 1831 1832[[package]] 1833name = "gdk" 1834version = "0.18.2" 1835source = "registry+https://github.com/rust-lang/crates.io-index" 1836checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" 1837dependencies = [ 1838 "cairo-rs", 1839 "gdk-pixbuf", 1840 "gdk-sys", 1841 "gio", 1842 "glib", 1843 "libc", 1844 "pango", 1845] 1846 1847[[package]] 1848name = "gdk-pixbuf" 1849version = "0.18.5" 1850source = "registry+https://github.com/rust-lang/crates.io-index" 1851checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" 1852dependencies = [ 1853 "gdk-pixbuf-sys", 1854 "gio", 1855 "glib", 1856 "libc", 1857 "once_cell", 1858] 1859 1860[[package]] 1861name = "gdk-pixbuf-sys" 1862version = "0.18.0" 1863source = "registry+https://github.com/rust-lang/crates.io-index" 1864checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" 1865dependencies = [ 1866 "gio-sys", 1867 "glib-sys", 1868 "gobject-sys", 1869 "libc", 1870 "system-deps", 1871] 1872 1873[[package]] 1874name = "gdk-sys" 1875version = "0.18.2" 1876source = "registry+https://github.com/rust-lang/crates.io-index" 1877checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" 1878dependencies = [ 1879 "cairo-sys-rs", 1880 "gdk-pixbuf-sys", 1881 "gio-sys", 1882 "glib-sys", 1883 "gobject-sys", 1884 "libc", 1885 "pango-sys", 1886 "pkg-config", 1887 "system-deps", 1888] 1889 1890[[package]] 1891name = "gdkwayland-sys" 1892version = "0.18.2" 1893source = "registry+https://github.com/rust-lang/crates.io-index" 1894checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" 1895dependencies = [ 1896 "gdk-sys", 1897 "glib-sys", 1898 "gobject-sys", 1899 "libc", 1900 "pkg-config", 1901 "system-deps", 1902] 1903 1904[[package]] 1905name = "gdkx11" 1906version = "0.18.2" 1907source = "registry+https://github.com/rust-lang/crates.io-index" 1908checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" 1909dependencies = [ 1910 "gdk", 1911 "gdkx11-sys", 1912 "gio", 1913 "glib", 1914 "libc", 1915 "x11", 1916] 1917 1918[[package]] 1919name = "gdkx11-sys" 1920version = "0.18.2" 1921source = "registry+https://github.com/rust-lang/crates.io-index" 1922checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" 1923dependencies = [ 1924 "gdk-sys", 1925 "glib-sys", 1926 "libc", 1927 "system-deps", 1928 "x11", 1929] 1930 1931[[package]] 1932name = "generic-array" 1933version = "0.14.7" 1934source = "registry+https://github.com/rust-lang/crates.io-index" 1935checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1936dependencies = [ 1937 "typenum", 1938 "version_check", 1939 "zeroize", 1940] 1941 1942[[package]] 1943name = "getrandom" 1944version = "0.1.16" 1945source = "registry+https://github.com/rust-lang/crates.io-index" 1946checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1947dependencies = [ 1948 "cfg-if", 1949 "libc", 1950 "wasi 0.9.0+wasi-snapshot-preview1", 1951] 1952 1953[[package]] 1954name = "getrandom" 1955version = "0.2.16" 1956source = "registry+https://github.com/rust-lang/crates.io-index" 1957checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 1958dependencies = [ 1959 "cfg-if", 1960 "libc", 1961 "wasi 0.11.1+wasi-snapshot-preview1", 1962] 1963 1964[[package]] 1965name = "getrandom" 1966version = "0.3.3" 1967source = "registry+https://github.com/rust-lang/crates.io-index" 1968checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 1969dependencies = [ 1970 "cfg-if", 1971 "libc", 1972 "r-efi", 1973 "wasi 0.14.2+wasi-0.2.4", 1974] 1975 1976[[package]] 1977name = "ghash" 1978version = "0.5.1" 1979source = "registry+https://github.com/rust-lang/crates.io-index" 1980checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 1981dependencies = [ 1982 "opaque-debug", 1983 "polyval", 1984] 1985 1986[[package]] 1987name = "gimli" 1988version = "0.31.1" 1989source = "registry+https://github.com/rust-lang/crates.io-index" 1990checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 1991 1992[[package]] 1993name = "gio" 1994version = "0.18.4" 1995source = "registry+https://github.com/rust-lang/crates.io-index" 1996checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 1997dependencies = [ 1998 "futures-channel", 1999 "futures-core", 2000 "futures-io", 2001 "futures-util", 2002 "gio-sys", 2003 "glib", 2004 "libc", 2005 "once_cell", 2006 "pin-project-lite", 2007 "smallvec", 2008 "thiserror 1.0.69", 2009] 2010 2011[[package]] 2012name = "gio-sys" 2013version = "0.18.1" 2014source = "registry+https://github.com/rust-lang/crates.io-index" 2015checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 2016dependencies = [ 2017 "glib-sys", 2018 "gobject-sys", 2019 "libc", 2020 "system-deps", 2021 "winapi", 2022] 2023 2024[[package]] 2025name = "glib" 2026version = "0.18.5" 2027source = "registry+https://github.com/rust-lang/crates.io-index" 2028checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 2029dependencies = [ 2030 "bitflags 2.9.1", 2031 "futures-channel", 2032 "futures-core", 2033 "futures-executor", 2034 "futures-task", 2035 "futures-util", 2036 "gio-sys", 2037 "glib-macros", 2038 "glib-sys", 2039 "gobject-sys", 2040 "libc", 2041 "memchr", 2042 "once_cell", 2043 "smallvec", 2044 "thiserror 1.0.69", 2045] 2046 2047[[package]] 2048name = "glib-macros" 2049version = "0.18.5" 2050source = "registry+https://github.com/rust-lang/crates.io-index" 2051checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 2052dependencies = [ 2053 "heck 0.4.1", 2054 "proc-macro-crate 2.0.0", 2055 "proc-macro-error", 2056 "proc-macro2", 2057 "quote", 2058 "syn 2.0.103", 2059] 2060 2061[[package]] 2062name = "glib-sys" 2063version = "0.18.1" 2064source = "registry+https://github.com/rust-lang/crates.io-index" 2065checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 2066dependencies = [ 2067 "libc", 2068 "system-deps", 2069] 2070 2071[[package]] 2072name = "glob" 2073version = "0.3.2" 2074source = "registry+https://github.com/rust-lang/crates.io-index" 2075checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 2076 2077[[package]] 2078name = "gloo-timers" 2079version = "0.2.6" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 2082dependencies = [ 2083 "futures-channel", 2084 "futures-core", 2085 "js-sys", 2086 "wasm-bindgen", 2087] 2088 2089[[package]] 2090name = "gloo-timers" 2091version = "0.3.0" 2092source = "registry+https://github.com/rust-lang/crates.io-index" 2093checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 2094dependencies = [ 2095 "futures-channel", 2096 "futures-core", 2097 "js-sys", 2098 "wasm-bindgen", 2099] 2100 2101[[package]] 2102name = "gobject-sys" 2103version = "0.18.0" 2104source = "registry+https://github.com/rust-lang/crates.io-index" 2105checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 2106dependencies = [ 2107 "glib-sys", 2108 "libc", 2109 "system-deps", 2110] 2111 2112[[package]] 2113name = "group" 2114version = "0.13.0" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2117dependencies = [ 2118 "ff", 2119 "rand_core 0.6.4", 2120 "subtle", 2121] 2122 2123[[package]] 2124name = "gtk" 2125version = "0.18.2" 2126source = "registry+https://github.com/rust-lang/crates.io-index" 2127checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" 2128dependencies = [ 2129 "atk", 2130 "cairo-rs", 2131 "field-offset", 2132 "futures-channel", 2133 "gdk", 2134 "gdk-pixbuf", 2135 "gio", 2136 "glib", 2137 "gtk-sys", 2138 "gtk3-macros", 2139 "libc", 2140 "pango", 2141 "pkg-config", 2142] 2143 2144[[package]] 2145name = "gtk-sys" 2146version = "0.18.2" 2147source = "registry+https://github.com/rust-lang/crates.io-index" 2148checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" 2149dependencies = [ 2150 "atk-sys", 2151 "cairo-sys-rs", 2152 "gdk-pixbuf-sys", 2153 "gdk-sys", 2154 "gio-sys", 2155 "glib-sys", 2156 "gobject-sys", 2157 "libc", 2158 "pango-sys", 2159 "system-deps", 2160] 2161 2162[[package]] 2163name = "gtk3-macros" 2164version = "0.18.2" 2165source = "registry+https://github.com/rust-lang/crates.io-index" 2166checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" 2167dependencies = [ 2168 "proc-macro-crate 1.3.1", 2169 "proc-macro-error", 2170 "proc-macro2", 2171 "quote", 2172 "syn 2.0.103", 2173] 2174 2175[[package]] 2176name = "hashbrown" 2177version = "0.12.3" 2178source = "registry+https://github.com/rust-lang/crates.io-index" 2179checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2180dependencies = [ 2181 "ahash", 2182] 2183 2184[[package]] 2185name = "hashbrown" 2186version = "0.15.4" 2187source = "registry+https://github.com/rust-lang/crates.io-index" 2188checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" 2189 2190[[package]] 2191name = "heck" 2192version = "0.4.1" 2193source = "registry+https://github.com/rust-lang/crates.io-index" 2194checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2195 2196[[package]] 2197name = "heck" 2198version = "0.5.0" 2199source = "registry+https://github.com/rust-lang/crates.io-index" 2200checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2201 2202[[package]] 2203name = "hermit-abi" 2204version = "0.5.2" 2205source = "registry+https://github.com/rust-lang/crates.io-index" 2206checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 2207 2208[[package]] 2209name = "hex" 2210version = "0.4.3" 2211source = "registry+https://github.com/rust-lang/crates.io-index" 2212checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2213 2214[[package]] 2215name = "hkdf" 2216version = "0.12.4" 2217source = "registry+https://github.com/rust-lang/crates.io-index" 2218checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2219dependencies = [ 2220 "hmac", 2221] 2222 2223[[package]] 2224name = "hmac" 2225version = "0.12.1" 2226source = "registry+https://github.com/rust-lang/crates.io-index" 2227checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2228dependencies = [ 2229 "digest", 2230] 2231 2232[[package]] 2233name = "html5ever" 2234version = "0.26.0" 2235source = "registry+https://github.com/rust-lang/crates.io-index" 2236checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 2237dependencies = [ 2238 "log", 2239 "mac", 2240 "markup5ever", 2241 "proc-macro2", 2242 "quote", 2243 "syn 1.0.109", 2244] 2245 2246[[package]] 2247name = "http" 2248version = "1.3.1" 2249source = "registry+https://github.com/rust-lang/crates.io-index" 2250checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 2251dependencies = [ 2252 "bytes", 2253 "fnv", 2254 "itoa 1.0.15", 2255] 2256 2257[[package]] 2258name = "http-body" 2259version = "1.0.1" 2260source = "registry+https://github.com/rust-lang/crates.io-index" 2261checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 2262dependencies = [ 2263 "bytes", 2264 "http", 2265] 2266 2267[[package]] 2268name = "http-body-util" 2269version = "0.1.3" 2270source = "registry+https://github.com/rust-lang/crates.io-index" 2271checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 2272dependencies = [ 2273 "bytes", 2274 "futures-core", 2275 "http", 2276 "http-body", 2277 "pin-project-lite", 2278] 2279 2280[[package]] 2281name = "httparse" 2282version = "1.10.1" 2283source = "registry+https://github.com/rust-lang/crates.io-index" 2284checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 2285 2286[[package]] 2287name = "httpdate" 2288version = "1.0.3" 2289source = "registry+https://github.com/rust-lang/crates.io-index" 2290checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2291 2292[[package]] 2293name = "hyper" 2294version = "1.6.0" 2295source = "registry+https://github.com/rust-lang/crates.io-index" 2296checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 2297dependencies = [ 2298 "bytes", 2299 "futures-channel", 2300 "futures-util", 2301 "http", 2302 "http-body", 2303 "httparse", 2304 "httpdate", 2305 "itoa 1.0.15", 2306 "pin-project-lite", 2307 "smallvec", 2308 "tokio", 2309 "want", 2310] 2311 2312[[package]] 2313name = "hyper-util" 2314version = "0.1.14" 2315source = "registry+https://github.com/rust-lang/crates.io-index" 2316checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb" 2317dependencies = [ 2318 "base64 0.22.1", 2319 "bytes", 2320 "futures-channel", 2321 "futures-core", 2322 "futures-util", 2323 "http", 2324 "http-body", 2325 "hyper", 2326 "ipnet", 2327 "libc", 2328 "percent-encoding", 2329 "pin-project-lite", 2330 "socket2", 2331 "tokio", 2332 "tower-service", 2333 "tracing", 2334] 2335 2336[[package]] 2337name = "iana-time-zone" 2338version = "0.1.63" 2339source = "registry+https://github.com/rust-lang/crates.io-index" 2340checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" 2341dependencies = [ 2342 "android_system_properties", 2343 "core-foundation-sys", 2344 "iana-time-zone-haiku", 2345 "js-sys", 2346 "log", 2347 "wasm-bindgen", 2348 "windows-core", 2349] 2350 2351[[package]] 2352name = "iana-time-zone-haiku" 2353version = "0.1.2" 2354source = "registry+https://github.com/rust-lang/crates.io-index" 2355checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2356dependencies = [ 2357 "cc", 2358] 2359 2360[[package]] 2361name = "ico" 2362version = "0.4.0" 2363source = "registry+https://github.com/rust-lang/crates.io-index" 2364checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" 2365dependencies = [ 2366 "byteorder", 2367 "png", 2368] 2369 2370[[package]] 2371name = "icu_collections" 2372version = "2.0.0" 2373source = "registry+https://github.com/rust-lang/crates.io-index" 2374checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 2375dependencies = [ 2376 "displaydoc", 2377 "potential_utf", 2378 "yoke", 2379 "zerofrom", 2380 "zerovec", 2381] 2382 2383[[package]] 2384name = "icu_locale_core" 2385version = "2.0.0" 2386source = "registry+https://github.com/rust-lang/crates.io-index" 2387checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 2388dependencies = [ 2389 "displaydoc", 2390 "litemap", 2391 "tinystr", 2392 "writeable", 2393 "zerovec", 2394] 2395 2396[[package]] 2397name = "icu_normalizer" 2398version = "2.0.0" 2399source = "registry+https://github.com/rust-lang/crates.io-index" 2400checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 2401dependencies = [ 2402 "displaydoc", 2403 "icu_collections", 2404 "icu_normalizer_data", 2405 "icu_properties", 2406 "icu_provider", 2407 "smallvec", 2408 "zerovec", 2409] 2410 2411[[package]] 2412name = "icu_normalizer_data" 2413version = "2.0.0" 2414source = "registry+https://github.com/rust-lang/crates.io-index" 2415checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 2416 2417[[package]] 2418name = "icu_properties" 2419version = "2.0.1" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 2422dependencies = [ 2423 "displaydoc", 2424 "icu_collections", 2425 "icu_locale_core", 2426 "icu_properties_data", 2427 "icu_provider", 2428 "potential_utf", 2429 "zerotrie", 2430 "zerovec", 2431] 2432 2433[[package]] 2434name = "icu_properties_data" 2435version = "2.0.1" 2436source = "registry+https://github.com/rust-lang/crates.io-index" 2437checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 2438 2439[[package]] 2440name = "icu_provider" 2441version = "2.0.0" 2442source = "registry+https://github.com/rust-lang/crates.io-index" 2443checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 2444dependencies = [ 2445 "displaydoc", 2446 "icu_locale_core", 2447 "stable_deref_trait", 2448 "tinystr", 2449 "writeable", 2450 "yoke", 2451 "zerofrom", 2452 "zerotrie", 2453 "zerovec", 2454] 2455 2456[[package]] 2457name = "ident_case" 2458version = "1.0.1" 2459source = "registry+https://github.com/rust-lang/crates.io-index" 2460checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2461 2462[[package]] 2463name = "idna" 2464version = "1.0.3" 2465source = "registry+https://github.com/rust-lang/crates.io-index" 2466checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 2467dependencies = [ 2468 "idna_adapter", 2469 "smallvec", 2470 "utf8_iter", 2471] 2472 2473[[package]] 2474name = "idna_adapter" 2475version = "1.2.1" 2476source = "registry+https://github.com/rust-lang/crates.io-index" 2477checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 2478dependencies = [ 2479 "icu_normalizer", 2480 "icu_properties", 2481] 2482 2483[[package]] 2484name = "indexmap" 2485version = "1.9.3" 2486source = "registry+https://github.com/rust-lang/crates.io-index" 2487checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2488dependencies = [ 2489 "autocfg", 2490 "hashbrown 0.12.3", 2491 "serde", 2492] 2493 2494[[package]] 2495name = "indexmap" 2496version = "2.9.0" 2497source = "registry+https://github.com/rust-lang/crates.io-index" 2498checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" 2499dependencies = [ 2500 "equivalent", 2501 "hashbrown 0.15.4", 2502 "serde", 2503] 2504 2505[[package]] 2506name = "infer" 2507version = "0.19.0" 2508source = "registry+https://github.com/rust-lang/crates.io-index" 2509checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" 2510dependencies = [ 2511 "cfb", 2512] 2513 2514[[package]] 2515name = "inout" 2516version = "0.1.4" 2517source = "registry+https://github.com/rust-lang/crates.io-index" 2518checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 2519dependencies = [ 2520 "block-padding", 2521 "generic-array", 2522] 2523 2524[[package]] 2525name = "interceptor" 2526version = "0.14.0" 2527source = "registry+https://github.com/rust-lang/crates.io-index" 2528checksum = "1ac0781c825d602095113772e389ef0607afcb869ae0e68a590d8e0799cdcef8" 2529dependencies = [ 2530 "async-trait", 2531 "bytes", 2532 "log", 2533 "portable-atomic", 2534 "rand 0.8.5", 2535 "rtcp", 2536 "rtp", 2537 "thiserror 1.0.69", 2538 "tokio", 2539 "waitgroup", 2540 "webrtc-srtp", 2541 "webrtc-util", 2542] 2543 2544[[package]] 2545name = "ipnet" 2546version = "2.11.0" 2547source = "registry+https://github.com/rust-lang/crates.io-index" 2548checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 2549 2550[[package]] 2551name = "iri-string" 2552version = "0.7.8" 2553source = "registry+https://github.com/rust-lang/crates.io-index" 2554checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 2555dependencies = [ 2556 "memchr", 2557 "serde", 2558] 2559 2560[[package]] 2561name = "is-docker" 2562version = "0.2.0" 2563source = "registry+https://github.com/rust-lang/crates.io-index" 2564checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 2565dependencies = [ 2566 "once_cell", 2567] 2568 2569[[package]] 2570name = "is-wsl" 2571version = "0.4.0" 2572source = "registry+https://github.com/rust-lang/crates.io-index" 2573checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 2574dependencies = [ 2575 "is-docker", 2576 "once_cell", 2577] 2578 2579[[package]] 2580name = "is_terminal_polyfill" 2581version = "1.70.1" 2582source = "registry+https://github.com/rust-lang/crates.io-index" 2583checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 2584 2585[[package]] 2586name = "itoa" 2587version = "0.4.8" 2588source = "registry+https://github.com/rust-lang/crates.io-index" 2589checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 2590 2591[[package]] 2592name = "itoa" 2593version = "1.0.15" 2594source = "registry+https://github.com/rust-lang/crates.io-index" 2595checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 2596 2597[[package]] 2598name = "javascriptcore-rs" 2599version = "1.1.2" 2600source = "registry+https://github.com/rust-lang/crates.io-index" 2601checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" 2602dependencies = [ 2603 "bitflags 1.3.2", 2604 "glib", 2605 "javascriptcore-rs-sys", 2606] 2607 2608[[package]] 2609name = "javascriptcore-rs-sys" 2610version = "1.1.1" 2611source = "registry+https://github.com/rust-lang/crates.io-index" 2612checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" 2613dependencies = [ 2614 "glib-sys", 2615 "gobject-sys", 2616 "libc", 2617 "system-deps", 2618] 2619 2620[[package]] 2621name = "jiff" 2622version = "0.2.15" 2623source = "registry+https://github.com/rust-lang/crates.io-index" 2624checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49" 2625dependencies = [ 2626 "jiff-static", 2627 "log", 2628 "portable-atomic", 2629 "portable-atomic-util", 2630 "serde", 2631] 2632 2633[[package]] 2634name = "jiff-static" 2635version = "0.2.15" 2636source = "registry+https://github.com/rust-lang/crates.io-index" 2637checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" 2638dependencies = [ 2639 "proc-macro2", 2640 "quote", 2641 "syn 2.0.103", 2642] 2643 2644[[package]] 2645name = "jni" 2646version = "0.21.1" 2647source = "registry+https://github.com/rust-lang/crates.io-index" 2648checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 2649dependencies = [ 2650 "cesu8", 2651 "cfg-if", 2652 "combine", 2653 "jni-sys", 2654 "log", 2655 "thiserror 1.0.69", 2656 "walkdir", 2657 "windows-sys 0.45.0", 2658] 2659 2660[[package]] 2661name = "jni-sys" 2662version = "0.3.0" 2663source = "registry+https://github.com/rust-lang/crates.io-index" 2664checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 2665 2666[[package]] 2667name = "js-sys" 2668version = "0.3.77" 2669source = "registry+https://github.com/rust-lang/crates.io-index" 2670checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 2671dependencies = [ 2672 "once_cell", 2673 "wasm-bindgen", 2674] 2675 2676[[package]] 2677name = "json-patch" 2678version = "3.0.1" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" 2681dependencies = [ 2682 "jsonptr", 2683 "serde", 2684 "serde_json", 2685 "thiserror 1.0.69", 2686] 2687 2688[[package]] 2689name = "jsonptr" 2690version = "0.6.3" 2691source = "registry+https://github.com/rust-lang/crates.io-index" 2692checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" 2693dependencies = [ 2694 "serde", 2695 "serde_json", 2696] 2697 2698[[package]] 2699name = "keyboard-types" 2700version = "0.7.0" 2701source = "registry+https://github.com/rust-lang/crates.io-index" 2702checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" 2703dependencies = [ 2704 "bitflags 2.9.1", 2705 "serde", 2706 "unicode-segmentation", 2707] 2708 2709[[package]] 2710name = "kuchikiki" 2711version = "0.8.2" 2712source = "registry+https://github.com/rust-lang/crates.io-index" 2713checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" 2714dependencies = [ 2715 "cssparser", 2716 "html5ever", 2717 "indexmap 1.9.3", 2718 "matches", 2719 "selectors", 2720] 2721 2722[[package]] 2723name = "kv-log-macro" 2724version = "1.0.7" 2725source = "registry+https://github.com/rust-lang/crates.io-index" 2726checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 2727dependencies = [ 2728 "log", 2729] 2730 2731[[package]] 2732name = "lazy_static" 2733version = "1.5.0" 2734source = "registry+https://github.com/rust-lang/crates.io-index" 2735checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2736 2737[[package]] 2738name = "libappindicator" 2739version = "0.9.0" 2740source = "registry+https://github.com/rust-lang/crates.io-index" 2741checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" 2742dependencies = [ 2743 "glib", 2744 "gtk", 2745 "gtk-sys", 2746 "libappindicator-sys", 2747 "log", 2748] 2749 2750[[package]] 2751name = "libappindicator-sys" 2752version = "0.9.0" 2753source = "registry+https://github.com/rust-lang/crates.io-index" 2754checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" 2755dependencies = [ 2756 "gtk-sys", 2757 "libloading", 2758 "once_cell", 2759] 2760 2761[[package]] 2762name = "libc" 2763version = "0.2.173" 2764source = "registry+https://github.com/rust-lang/crates.io-index" 2765checksum = "d8cfeafaffdbc32176b64fb251369d52ea9f0a8fbc6f8759edffef7b525d64bb" 2766 2767[[package]] 2768name = "libloading" 2769version = "0.7.4" 2770source = "registry+https://github.com/rust-lang/crates.io-index" 2771checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 2772dependencies = [ 2773 "cfg-if", 2774 "winapi", 2775] 2776 2777[[package]] 2778name = "libredox" 2779version = "0.1.3" 2780source = "registry+https://github.com/rust-lang/crates.io-index" 2781checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2782dependencies = [ 2783 "bitflags 2.9.1", 2784 "libc", 2785] 2786 2787[[package]] 2788name = "linux-raw-sys" 2789version = "0.9.4" 2790source = "registry+https://github.com/rust-lang/crates.io-index" 2791checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 2792 2793[[package]] 2794name = "litemap" 2795version = "0.8.0" 2796source = "registry+https://github.com/rust-lang/crates.io-index" 2797checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 2798 2799[[package]] 2800name = "lock_api" 2801version = "0.4.13" 2802source = "registry+https://github.com/rust-lang/crates.io-index" 2803checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 2804dependencies = [ 2805 "autocfg", 2806 "scopeguard", 2807] 2808 2809[[package]] 2810name = "log" 2811version = "0.4.27" 2812source = "registry+https://github.com/rust-lang/crates.io-index" 2813checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 2814dependencies = [ 2815 "value-bag", 2816] 2817 2818[[package]] 2819name = "mac" 2820version = "0.1.1" 2821source = "registry+https://github.com/rust-lang/crates.io-index" 2822checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2823 2824[[package]] 2825name = "mac-notification-sys" 2826version = "0.6.4" 2827source = "registry+https://github.com/rust-lang/crates.io-index" 2828checksum = "0b95dfb34071d1592b45622bf93e315e3a72d414b6782aca9a015c12bec367ef" 2829dependencies = [ 2830 "cc", 2831 "objc2 0.6.1", 2832 "objc2-foundation 0.3.1", 2833 "time", 2834] 2835 2836[[package]] 2837name = "manhunt-app" 2838version = "0.1.0" 2839dependencies = [ 2840 "chrono", 2841 "futures", 2842 "log", 2843 "matchbox_socket", 2844 "rand 0.9.1", 2845 "rand_chacha 0.9.0", 2846 "rmp-serde", 2847 "serde", 2848 "serde_json", 2849 "specta", 2850 "specta-typescript", 2851 "tauri", 2852 "tauri-build", 2853 "tauri-plugin-geolocation", 2854 "tauri-plugin-log", 2855 "tauri-plugin-notification", 2856 "tauri-plugin-opener", 2857 "tauri-plugin-store", 2858 "tauri-specta", 2859 "tokio", 2860 "uuid", 2861] 2862 2863[[package]] 2864name = "manhunt-signaling" 2865version = "0.1.0" 2866dependencies = [ 2867 "anyhow", 2868 "async-trait", 2869 "axum", 2870 "colog", 2871 "futures", 2872 "log", 2873 "matchbox_protocol", 2874 "matchbox_signaling", 2875 "tokio", 2876] 2877 2878[[package]] 2879name = "markup5ever" 2880version = "0.11.0" 2881source = "registry+https://github.com/rust-lang/crates.io-index" 2882checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 2883dependencies = [ 2884 "log", 2885 "phf 0.10.1", 2886 "phf_codegen 0.10.0", 2887 "string_cache", 2888 "string_cache_codegen", 2889 "tendril", 2890] 2891 2892[[package]] 2893name = "matchbox_protocol" 2894version = "0.12.0" 2895source = "registry+https://github.com/rust-lang/crates.io-index" 2896checksum = "f0cfe43dd6af96da1ea044838f59b8d7438971f85376be464ead11bbd7a01c27" 2897dependencies = [ 2898 "cfg-if", 2899 "derive_more 2.0.1", 2900 "serde", 2901 "serde_json", 2902 "uuid", 2903] 2904 2905[[package]] 2906name = "matchbox_signaling" 2907version = "0.12.0" 2908source = "registry+https://github.com/rust-lang/crates.io-index" 2909checksum = "0f30f7e4302e1d80a824503c78b893bf0635ee864a7c0e4394d76b6dd61bab12" 2910dependencies = [ 2911 "async-trait", 2912 "axum", 2913 "futures", 2914 "hyper", 2915 "matchbox_protocol", 2916 "serde", 2917 "serde_json", 2918 "thiserror 2.0.12", 2919 "tokio", 2920 "tokio-stream", 2921 "tower-http", 2922 "tracing", 2923 "uuid", 2924] 2925 2926[[package]] 2927name = "matchbox_socket" 2928version = "0.12.0" 2929source = "registry+https://github.com/rust-lang/crates.io-index" 2930checksum = "9c2bc39cd3e655243143ddb40faa4c30c0c415347f6a0985e378806a24593e9e" 2931dependencies = [ 2932 "async-compat", 2933 "async-trait", 2934 "async-tungstenite", 2935 "bytes", 2936 "cfg-if", 2937 "derive_more 2.0.1", 2938 "futures", 2939 "futures-channel", 2940 "futures-timer", 2941 "futures-util", 2942 "js-sys", 2943 "log", 2944 "matchbox_protocol", 2945 "once_cell", 2946 "serde", 2947 "serde-wasm-bindgen", 2948 "serde_json", 2949 "thiserror 2.0.12", 2950 "tokio-util", 2951 "wasm-bindgen", 2952 "wasm-bindgen-futures", 2953 "web-sys", 2954 "webrtc", 2955 "ws_stream_wasm", 2956] 2957 2958[[package]] 2959name = "matches" 2960version = "0.1.10" 2961source = "registry+https://github.com/rust-lang/crates.io-index" 2962checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2963 2964[[package]] 2965name = "matchit" 2966version = "0.8.4" 2967source = "registry+https://github.com/rust-lang/crates.io-index" 2968checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 2969 2970[[package]] 2971name = "md-5" 2972version = "0.10.6" 2973source = "registry+https://github.com/rust-lang/crates.io-index" 2974checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 2975dependencies = [ 2976 "cfg-if", 2977 "digest", 2978] 2979 2980[[package]] 2981name = "memchr" 2982version = "2.7.5" 2983source = "registry+https://github.com/rust-lang/crates.io-index" 2984checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 2985 2986[[package]] 2987name = "memoffset" 2988version = "0.7.1" 2989source = "registry+https://github.com/rust-lang/crates.io-index" 2990checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 2991dependencies = [ 2992 "autocfg", 2993] 2994 2995[[package]] 2996name = "memoffset" 2997version = "0.9.1" 2998source = "registry+https://github.com/rust-lang/crates.io-index" 2999checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 3000dependencies = [ 3001 "autocfg", 3002] 3003 3004[[package]] 3005name = "mime" 3006version = "0.3.17" 3007source = "registry+https://github.com/rust-lang/crates.io-index" 3008checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3009 3010[[package]] 3011name = "minimal-lexical" 3012version = "0.2.1" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3015 3016[[package]] 3017name = "miniz_oxide" 3018version = "0.8.9" 3019source = "registry+https://github.com/rust-lang/crates.io-index" 3020checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 3021dependencies = [ 3022 "adler2", 3023 "simd-adler32", 3024] 3025 3026[[package]] 3027name = "mio" 3028version = "1.0.4" 3029source = "registry+https://github.com/rust-lang/crates.io-index" 3030checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 3031dependencies = [ 3032 "libc", 3033 "wasi 0.11.1+wasi-snapshot-preview1", 3034 "windows-sys 0.59.0", 3035] 3036 3037[[package]] 3038name = "muda" 3039version = "0.16.1" 3040source = "registry+https://github.com/rust-lang/crates.io-index" 3041checksum = "4de14a9b5d569ca68d7c891d613b390cf5ab4f851c77aaa2f9e435555d3d9492" 3042dependencies = [ 3043 "crossbeam-channel", 3044 "dpi", 3045 "gtk", 3046 "keyboard-types", 3047 "objc2 0.6.1", 3048 "objc2-app-kit", 3049 "objc2-core-foundation", 3050 "objc2-foundation 0.3.1", 3051 "once_cell", 3052 "png", 3053 "serde", 3054 "thiserror 2.0.12", 3055 "windows-sys 0.59.0", 3056] 3057 3058[[package]] 3059name = "ndk" 3060version = "0.9.0" 3061source = "registry+https://github.com/rust-lang/crates.io-index" 3062checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 3063dependencies = [ 3064 "bitflags 2.9.1", 3065 "jni-sys", 3066 "log", 3067 "ndk-sys", 3068 "num_enum", 3069 "raw-window-handle", 3070 "thiserror 1.0.69", 3071] 3072 3073[[package]] 3074name = "ndk-context" 3075version = "0.1.1" 3076source = "registry+https://github.com/rust-lang/crates.io-index" 3077checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 3078 3079[[package]] 3080name = "ndk-sys" 3081version = "0.6.0+11769913" 3082source = "registry+https://github.com/rust-lang/crates.io-index" 3083checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" 3084dependencies = [ 3085 "jni-sys", 3086] 3087 3088[[package]] 3089name = "new_debug_unreachable" 3090version = "1.0.6" 3091source = "registry+https://github.com/rust-lang/crates.io-index" 3092checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 3093 3094[[package]] 3095name = "nix" 3096version = "0.26.4" 3097source = "registry+https://github.com/rust-lang/crates.io-index" 3098checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" 3099dependencies = [ 3100 "bitflags 1.3.2", 3101 "cfg-if", 3102 "libc", 3103 "memoffset 0.7.1", 3104 "pin-utils", 3105] 3106 3107[[package]] 3108name = "nix" 3109version = "0.30.1" 3110source = "registry+https://github.com/rust-lang/crates.io-index" 3111checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 3112dependencies = [ 3113 "bitflags 2.9.1", 3114 "cfg-if", 3115 "cfg_aliases", 3116 "libc", 3117 "memoffset 0.9.1", 3118] 3119 3120[[package]] 3121name = "nodrop" 3122version = "0.1.14" 3123source = "registry+https://github.com/rust-lang/crates.io-index" 3124checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 3125 3126[[package]] 3127name = "nom" 3128version = "7.1.3" 3129source = "registry+https://github.com/rust-lang/crates.io-index" 3130checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3131dependencies = [ 3132 "memchr", 3133 "minimal-lexical", 3134] 3135 3136[[package]] 3137name = "notify-rust" 3138version = "4.11.7" 3139source = "registry+https://github.com/rust-lang/crates.io-index" 3140checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400" 3141dependencies = [ 3142 "futures-lite", 3143 "log", 3144 "mac-notification-sys", 3145 "serde", 3146 "tauri-winrt-notification", 3147 "zbus", 3148] 3149 3150[[package]] 3151name = "num-bigint" 3152version = "0.4.6" 3153source = "registry+https://github.com/rust-lang/crates.io-index" 3154checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 3155dependencies = [ 3156 "num-integer", 3157 "num-traits", 3158] 3159 3160[[package]] 3161name = "num-conv" 3162version = "0.1.0" 3163source = "registry+https://github.com/rust-lang/crates.io-index" 3164checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3165 3166[[package]] 3167name = "num-integer" 3168version = "0.1.46" 3169source = "registry+https://github.com/rust-lang/crates.io-index" 3170checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3171dependencies = [ 3172 "num-traits", 3173] 3174 3175[[package]] 3176name = "num-traits" 3177version = "0.2.19" 3178source = "registry+https://github.com/rust-lang/crates.io-index" 3179checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3180dependencies = [ 3181 "autocfg", 3182] 3183 3184[[package]] 3185name = "num_enum" 3186version = "0.7.3" 3187source = "registry+https://github.com/rust-lang/crates.io-index" 3188checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" 3189dependencies = [ 3190 "num_enum_derive", 3191] 3192 3193[[package]] 3194name = "num_enum_derive" 3195version = "0.7.3" 3196source = "registry+https://github.com/rust-lang/crates.io-index" 3197checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" 3198dependencies = [ 3199 "proc-macro-crate 3.3.0", 3200 "proc-macro2", 3201 "quote", 3202 "syn 2.0.103", 3203] 3204 3205[[package]] 3206name = "num_threads" 3207version = "0.1.7" 3208source = "registry+https://github.com/rust-lang/crates.io-index" 3209checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 3210dependencies = [ 3211 "libc", 3212] 3213 3214[[package]] 3215name = "objc-sys" 3216version = "0.3.5" 3217source = "registry+https://github.com/rust-lang/crates.io-index" 3218checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 3219 3220[[package]] 3221name = "objc2" 3222version = "0.5.2" 3223source = "registry+https://github.com/rust-lang/crates.io-index" 3224checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 3225dependencies = [ 3226 "objc-sys", 3227 "objc2-encode", 3228] 3229 3230[[package]] 3231name = "objc2" 3232version = "0.6.1" 3233source = "registry+https://github.com/rust-lang/crates.io-index" 3234checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551" 3235dependencies = [ 3236 "objc2-encode", 3237 "objc2-exception-helper", 3238] 3239 3240[[package]] 3241name = "objc2-app-kit" 3242version = "0.3.1" 3243source = "registry+https://github.com/rust-lang/crates.io-index" 3244checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" 3245dependencies = [ 3246 "bitflags 2.9.1", 3247 "block2 0.6.1", 3248 "libc", 3249 "objc2 0.6.1", 3250 "objc2-cloud-kit", 3251 "objc2-core-data", 3252 "objc2-core-foundation", 3253 "objc2-core-graphics", 3254 "objc2-core-image", 3255 "objc2-foundation 0.3.1", 3256 "objc2-quartz-core 0.3.1", 3257] 3258 3259[[package]] 3260name = "objc2-cloud-kit" 3261version = "0.3.1" 3262source = "registry+https://github.com/rust-lang/crates.io-index" 3263checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d" 3264dependencies = [ 3265 "bitflags 2.9.1", 3266 "objc2 0.6.1", 3267 "objc2-foundation 0.3.1", 3268] 3269 3270[[package]] 3271name = "objc2-core-data" 3272version = "0.3.1" 3273source = "registry+https://github.com/rust-lang/crates.io-index" 3274checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d" 3275dependencies = [ 3276 "bitflags 2.9.1", 3277 "objc2 0.6.1", 3278 "objc2-foundation 0.3.1", 3279] 3280 3281[[package]] 3282name = "objc2-core-foundation" 3283version = "0.3.1" 3284source = "registry+https://github.com/rust-lang/crates.io-index" 3285checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" 3286dependencies = [ 3287 "bitflags 2.9.1", 3288 "dispatch2", 3289 "objc2 0.6.1", 3290] 3291 3292[[package]] 3293name = "objc2-core-graphics" 3294version = "0.3.1" 3295source = "registry+https://github.com/rust-lang/crates.io-index" 3296checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" 3297dependencies = [ 3298 "bitflags 2.9.1", 3299 "dispatch2", 3300 "objc2 0.6.1", 3301 "objc2-core-foundation", 3302 "objc2-io-surface", 3303] 3304 3305[[package]] 3306name = "objc2-core-image" 3307version = "0.3.1" 3308source = "registry+https://github.com/rust-lang/crates.io-index" 3309checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e" 3310dependencies = [ 3311 "objc2 0.6.1", 3312 "objc2-foundation 0.3.1", 3313] 3314 3315[[package]] 3316name = "objc2-encode" 3317version = "4.1.0" 3318source = "registry+https://github.com/rust-lang/crates.io-index" 3319checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 3320 3321[[package]] 3322name = "objc2-exception-helper" 3323version = "0.1.1" 3324source = "registry+https://github.com/rust-lang/crates.io-index" 3325checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" 3326dependencies = [ 3327 "cc", 3328] 3329 3330[[package]] 3331name = "objc2-foundation" 3332version = "0.2.2" 3333source = "registry+https://github.com/rust-lang/crates.io-index" 3334checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 3335dependencies = [ 3336 "bitflags 2.9.1", 3337 "block2 0.5.1", 3338 "libc", 3339 "objc2 0.5.2", 3340] 3341 3342[[package]] 3343name = "objc2-foundation" 3344version = "0.3.1" 3345source = "registry+https://github.com/rust-lang/crates.io-index" 3346checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" 3347dependencies = [ 3348 "bitflags 2.9.1", 3349 "block2 0.6.1", 3350 "libc", 3351 "objc2 0.6.1", 3352 "objc2-core-foundation", 3353] 3354 3355[[package]] 3356name = "objc2-io-surface" 3357version = "0.3.1" 3358source = "registry+https://github.com/rust-lang/crates.io-index" 3359checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c" 3360dependencies = [ 3361 "bitflags 2.9.1", 3362 "objc2 0.6.1", 3363 "objc2-core-foundation", 3364] 3365 3366[[package]] 3367name = "objc2-metal" 3368version = "0.2.2" 3369source = "registry+https://github.com/rust-lang/crates.io-index" 3370checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 3371dependencies = [ 3372 "bitflags 2.9.1", 3373 "block2 0.5.1", 3374 "objc2 0.5.2", 3375 "objc2-foundation 0.2.2", 3376] 3377 3378[[package]] 3379name = "objc2-quartz-core" 3380version = "0.2.2" 3381source = "registry+https://github.com/rust-lang/crates.io-index" 3382checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 3383dependencies = [ 3384 "bitflags 2.9.1", 3385 "block2 0.5.1", 3386 "objc2 0.5.2", 3387 "objc2-foundation 0.2.2", 3388 "objc2-metal", 3389] 3390 3391[[package]] 3392name = "objc2-quartz-core" 3393version = "0.3.1" 3394source = "registry+https://github.com/rust-lang/crates.io-index" 3395checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5" 3396dependencies = [ 3397 "bitflags 2.9.1", 3398 "objc2 0.6.1", 3399 "objc2-foundation 0.3.1", 3400] 3401 3402[[package]] 3403name = "objc2-ui-kit" 3404version = "0.3.1" 3405source = "registry+https://github.com/rust-lang/crates.io-index" 3406checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed" 3407dependencies = [ 3408 "bitflags 2.9.1", 3409 "objc2 0.6.1", 3410 "objc2-core-foundation", 3411 "objc2-foundation 0.3.1", 3412] 3413 3414[[package]] 3415name = "objc2-web-kit" 3416version = "0.3.1" 3417source = "registry+https://github.com/rust-lang/crates.io-index" 3418checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad" 3419dependencies = [ 3420 "bitflags 2.9.1", 3421 "block2 0.6.1", 3422 "objc2 0.6.1", 3423 "objc2-app-kit", 3424 "objc2-core-foundation", 3425 "objc2-foundation 0.3.1", 3426] 3427 3428[[package]] 3429name = "object" 3430version = "0.36.7" 3431source = "registry+https://github.com/rust-lang/crates.io-index" 3432checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 3433dependencies = [ 3434 "memchr", 3435] 3436 3437[[package]] 3438name = "oid-registry" 3439version = "0.7.1" 3440source = "registry+https://github.com/rust-lang/crates.io-index" 3441checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" 3442dependencies = [ 3443 "asn1-rs", 3444] 3445 3446[[package]] 3447name = "once_cell" 3448version = "1.21.3" 3449source = "registry+https://github.com/rust-lang/crates.io-index" 3450checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 3451 3452[[package]] 3453name = "once_cell_polyfill" 3454version = "1.70.1" 3455source = "registry+https://github.com/rust-lang/crates.io-index" 3456checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 3457 3458[[package]] 3459name = "opaque-debug" 3460version = "0.3.1" 3461source = "registry+https://github.com/rust-lang/crates.io-index" 3462checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 3463 3464[[package]] 3465name = "open" 3466version = "5.3.2" 3467source = "registry+https://github.com/rust-lang/crates.io-index" 3468checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95" 3469dependencies = [ 3470 "dunce", 3471 "is-wsl", 3472 "libc", 3473 "pathdiff", 3474] 3475 3476[[package]] 3477name = "option-ext" 3478version = "0.2.0" 3479source = "registry+https://github.com/rust-lang/crates.io-index" 3480checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3481 3482[[package]] 3483name = "ordered-stream" 3484version = "0.2.0" 3485source = "registry+https://github.com/rust-lang/crates.io-index" 3486checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50" 3487dependencies = [ 3488 "futures-core", 3489 "pin-project-lite", 3490] 3491 3492[[package]] 3493name = "p256" 3494version = "0.13.2" 3495source = "registry+https://github.com/rust-lang/crates.io-index" 3496checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 3497dependencies = [ 3498 "ecdsa", 3499 "elliptic-curve", 3500 "primeorder", 3501 "sha2", 3502] 3503 3504[[package]] 3505name = "p384" 3506version = "0.13.1" 3507source = "registry+https://github.com/rust-lang/crates.io-index" 3508checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 3509dependencies = [ 3510 "ecdsa", 3511 "elliptic-curve", 3512 "primeorder", 3513 "sha2", 3514] 3515 3516[[package]] 3517name = "pango" 3518version = "0.18.3" 3519source = "registry+https://github.com/rust-lang/crates.io-index" 3520checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 3521dependencies = [ 3522 "gio", 3523 "glib", 3524 "libc", 3525 "once_cell", 3526 "pango-sys", 3527] 3528 3529[[package]] 3530name = "pango-sys" 3531version = "0.18.0" 3532source = "registry+https://github.com/rust-lang/crates.io-index" 3533checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 3534dependencies = [ 3535 "glib-sys", 3536 "gobject-sys", 3537 "libc", 3538 "system-deps", 3539] 3540 3541[[package]] 3542name = "parking" 3543version = "2.2.1" 3544source = "registry+https://github.com/rust-lang/crates.io-index" 3545checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 3546 3547[[package]] 3548name = "parking_lot" 3549version = "0.12.4" 3550source = "registry+https://github.com/rust-lang/crates.io-index" 3551checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" 3552dependencies = [ 3553 "lock_api", 3554 "parking_lot_core", 3555] 3556 3557[[package]] 3558name = "parking_lot_core" 3559version = "0.9.11" 3560source = "registry+https://github.com/rust-lang/crates.io-index" 3561checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 3562dependencies = [ 3563 "cfg-if", 3564 "libc", 3565 "redox_syscall", 3566 "smallvec", 3567 "windows-targets 0.52.6", 3568] 3569 3570[[package]] 3571name = "paste" 3572version = "1.0.15" 3573source = "registry+https://github.com/rust-lang/crates.io-index" 3574checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 3575 3576[[package]] 3577name = "pathdiff" 3578version = "0.2.3" 3579source = "registry+https://github.com/rust-lang/crates.io-index" 3580checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 3581 3582[[package]] 3583name = "pem" 3584version = "3.0.5" 3585source = "registry+https://github.com/rust-lang/crates.io-index" 3586checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" 3587dependencies = [ 3588 "base64 0.22.1", 3589 "serde", 3590] 3591 3592[[package]] 3593name = "pem-rfc7468" 3594version = "0.7.0" 3595source = "registry+https://github.com/rust-lang/crates.io-index" 3596checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 3597dependencies = [ 3598 "base64ct", 3599] 3600 3601[[package]] 3602name = "percent-encoding" 3603version = "2.3.1" 3604source = "registry+https://github.com/rust-lang/crates.io-index" 3605checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3606 3607[[package]] 3608name = "pharos" 3609version = "0.5.3" 3610source = "registry+https://github.com/rust-lang/crates.io-index" 3611checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" 3612dependencies = [ 3613 "futures", 3614 "rustc_version", 3615] 3616 3617[[package]] 3618name = "phf" 3619version = "0.8.0" 3620source = "registry+https://github.com/rust-lang/crates.io-index" 3621checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 3622dependencies = [ 3623 "phf_macros 0.8.0", 3624 "phf_shared 0.8.0", 3625 "proc-macro-hack", 3626] 3627 3628[[package]] 3629name = "phf" 3630version = "0.10.1" 3631source = "registry+https://github.com/rust-lang/crates.io-index" 3632checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 3633dependencies = [ 3634 "phf_shared 0.10.0", 3635] 3636 3637[[package]] 3638name = "phf" 3639version = "0.11.3" 3640source = "registry+https://github.com/rust-lang/crates.io-index" 3641checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 3642dependencies = [ 3643 "phf_macros 0.11.3", 3644 "phf_shared 0.11.3", 3645] 3646 3647[[package]] 3648name = "phf_codegen" 3649version = "0.8.0" 3650source = "registry+https://github.com/rust-lang/crates.io-index" 3651checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 3652dependencies = [ 3653 "phf_generator 0.8.0", 3654 "phf_shared 0.8.0", 3655] 3656 3657[[package]] 3658name = "phf_codegen" 3659version = "0.10.0" 3660source = "registry+https://github.com/rust-lang/crates.io-index" 3661checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 3662dependencies = [ 3663 "phf_generator 0.10.0", 3664 "phf_shared 0.10.0", 3665] 3666 3667[[package]] 3668name = "phf_generator" 3669version = "0.8.0" 3670source = "registry+https://github.com/rust-lang/crates.io-index" 3671checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 3672dependencies = [ 3673 "phf_shared 0.8.0", 3674 "rand 0.7.3", 3675] 3676 3677[[package]] 3678name = "phf_generator" 3679version = "0.10.0" 3680source = "registry+https://github.com/rust-lang/crates.io-index" 3681checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 3682dependencies = [ 3683 "phf_shared 0.10.0", 3684 "rand 0.8.5", 3685] 3686 3687[[package]] 3688name = "phf_generator" 3689version = "0.11.3" 3690source = "registry+https://github.com/rust-lang/crates.io-index" 3691checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 3692dependencies = [ 3693 "phf_shared 0.11.3", 3694 "rand 0.8.5", 3695] 3696 3697[[package]] 3698name = "phf_macros" 3699version = "0.8.0" 3700source = "registry+https://github.com/rust-lang/crates.io-index" 3701checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 3702dependencies = [ 3703 "phf_generator 0.8.0", 3704 "phf_shared 0.8.0", 3705 "proc-macro-hack", 3706 "proc-macro2", 3707 "quote", 3708 "syn 1.0.109", 3709] 3710 3711[[package]] 3712name = "phf_macros" 3713version = "0.11.3" 3714source = "registry+https://github.com/rust-lang/crates.io-index" 3715checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 3716dependencies = [ 3717 "phf_generator 0.11.3", 3718 "phf_shared 0.11.3", 3719 "proc-macro2", 3720 "quote", 3721 "syn 2.0.103", 3722] 3723 3724[[package]] 3725name = "phf_shared" 3726version = "0.8.0" 3727source = "registry+https://github.com/rust-lang/crates.io-index" 3728checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 3729dependencies = [ 3730 "siphasher 0.3.11", 3731] 3732 3733[[package]] 3734name = "phf_shared" 3735version = "0.10.0" 3736source = "registry+https://github.com/rust-lang/crates.io-index" 3737checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 3738dependencies = [ 3739 "siphasher 0.3.11", 3740] 3741 3742[[package]] 3743name = "phf_shared" 3744version = "0.11.3" 3745source = "registry+https://github.com/rust-lang/crates.io-index" 3746checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 3747dependencies = [ 3748 "siphasher 1.0.1", 3749] 3750 3751[[package]] 3752name = "pin-project-lite" 3753version = "0.2.16" 3754source = "registry+https://github.com/rust-lang/crates.io-index" 3755checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 3756 3757[[package]] 3758name = "pin-utils" 3759version = "0.1.0" 3760source = "registry+https://github.com/rust-lang/crates.io-index" 3761checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3762 3763[[package]] 3764name = "piper" 3765version = "0.2.4" 3766source = "registry+https://github.com/rust-lang/crates.io-index" 3767checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 3768dependencies = [ 3769 "atomic-waker", 3770 "fastrand", 3771 "futures-io", 3772] 3773 3774[[package]] 3775name = "pkcs8" 3776version = "0.10.2" 3777source = "registry+https://github.com/rust-lang/crates.io-index" 3778checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3779dependencies = [ 3780 "der", 3781 "spki", 3782] 3783 3784[[package]] 3785name = "pkg-config" 3786version = "0.3.32" 3787source = "registry+https://github.com/rust-lang/crates.io-index" 3788checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 3789 3790[[package]] 3791name = "plist" 3792version = "1.7.2" 3793source = "registry+https://github.com/rust-lang/crates.io-index" 3794checksum = "3d77244ce2d584cd84f6a15f86195b8c9b2a0dfbfd817c09e0464244091a58ed" 3795dependencies = [ 3796 "base64 0.22.1", 3797 "indexmap 2.9.0", 3798 "quick-xml", 3799 "serde", 3800 "time", 3801] 3802 3803[[package]] 3804name = "png" 3805version = "0.17.16" 3806source = "registry+https://github.com/rust-lang/crates.io-index" 3807checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 3808dependencies = [ 3809 "bitflags 1.3.2", 3810 "crc32fast", 3811 "fdeflate", 3812 "flate2", 3813 "miniz_oxide", 3814] 3815 3816[[package]] 3817name = "polling" 3818version = "3.8.0" 3819source = "registry+https://github.com/rust-lang/crates.io-index" 3820checksum = "b53a684391ad002dd6a596ceb6c74fd004fdce75f4be2e3f615068abbea5fd50" 3821dependencies = [ 3822 "cfg-if", 3823 "concurrent-queue", 3824 "hermit-abi", 3825 "pin-project-lite", 3826 "rustix", 3827 "tracing", 3828 "windows-sys 0.59.0", 3829] 3830 3831[[package]] 3832name = "polyval" 3833version = "0.6.2" 3834source = "registry+https://github.com/rust-lang/crates.io-index" 3835checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 3836dependencies = [ 3837 "cfg-if", 3838 "cpufeatures", 3839 "opaque-debug", 3840 "universal-hash", 3841] 3842 3843[[package]] 3844name = "portable-atomic" 3845version = "1.11.1" 3846source = "registry+https://github.com/rust-lang/crates.io-index" 3847checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 3848 3849[[package]] 3850name = "portable-atomic-util" 3851version = "0.2.4" 3852source = "registry+https://github.com/rust-lang/crates.io-index" 3853checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" 3854dependencies = [ 3855 "portable-atomic", 3856] 3857 3858[[package]] 3859name = "potential_utf" 3860version = "0.1.2" 3861source = "registry+https://github.com/rust-lang/crates.io-index" 3862checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 3863dependencies = [ 3864 "zerovec", 3865] 3866 3867[[package]] 3868name = "powerfmt" 3869version = "0.2.0" 3870source = "registry+https://github.com/rust-lang/crates.io-index" 3871checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3872 3873[[package]] 3874name = "ppv-lite86" 3875version = "0.2.21" 3876source = "registry+https://github.com/rust-lang/crates.io-index" 3877checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 3878dependencies = [ 3879 "zerocopy", 3880] 3881 3882[[package]] 3883name = "precomputed-hash" 3884version = "0.1.1" 3885source = "registry+https://github.com/rust-lang/crates.io-index" 3886checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 3887 3888[[package]] 3889name = "primeorder" 3890version = "0.13.6" 3891source = "registry+https://github.com/rust-lang/crates.io-index" 3892checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 3893dependencies = [ 3894 "elliptic-curve", 3895] 3896 3897[[package]] 3898name = "proc-macro-crate" 3899version = "1.3.1" 3900source = "registry+https://github.com/rust-lang/crates.io-index" 3901checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3902dependencies = [ 3903 "once_cell", 3904 "toml_edit 0.19.15", 3905] 3906 3907[[package]] 3908name = "proc-macro-crate" 3909version = "2.0.0" 3910source = "registry+https://github.com/rust-lang/crates.io-index" 3911checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" 3912dependencies = [ 3913 "toml_edit 0.20.7", 3914] 3915 3916[[package]] 3917name = "proc-macro-crate" 3918version = "3.3.0" 3919source = "registry+https://github.com/rust-lang/crates.io-index" 3920checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" 3921dependencies = [ 3922 "toml_edit 0.22.27", 3923] 3924 3925[[package]] 3926name = "proc-macro-error" 3927version = "1.0.4" 3928source = "registry+https://github.com/rust-lang/crates.io-index" 3929checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3930dependencies = [ 3931 "proc-macro-error-attr", 3932 "proc-macro2", 3933 "quote", 3934 "syn 1.0.109", 3935 "version_check", 3936] 3937 3938[[package]] 3939name = "proc-macro-error-attr" 3940version = "1.0.4" 3941source = "registry+https://github.com/rust-lang/crates.io-index" 3942checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3943dependencies = [ 3944 "proc-macro2", 3945 "quote", 3946 "version_check", 3947] 3948 3949[[package]] 3950name = "proc-macro-hack" 3951version = "0.5.20+deprecated" 3952source = "registry+https://github.com/rust-lang/crates.io-index" 3953checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 3954 3955[[package]] 3956name = "proc-macro2" 3957version = "1.0.95" 3958source = "registry+https://github.com/rust-lang/crates.io-index" 3959checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 3960dependencies = [ 3961 "unicode-ident", 3962] 3963 3964[[package]] 3965name = "ptr_meta" 3966version = "0.1.4" 3967source = "registry+https://github.com/rust-lang/crates.io-index" 3968checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 3969dependencies = [ 3970 "ptr_meta_derive", 3971] 3972 3973[[package]] 3974name = "ptr_meta_derive" 3975version = "0.1.4" 3976source = "registry+https://github.com/rust-lang/crates.io-index" 3977checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 3978dependencies = [ 3979 "proc-macro2", 3980 "quote", 3981 "syn 1.0.109", 3982] 3983 3984[[package]] 3985name = "quick-xml" 3986version = "0.37.5" 3987source = "registry+https://github.com/rust-lang/crates.io-index" 3988checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 3989dependencies = [ 3990 "memchr", 3991] 3992 3993[[package]] 3994name = "quote" 3995version = "1.0.40" 3996source = "registry+https://github.com/rust-lang/crates.io-index" 3997checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 3998dependencies = [ 3999 "proc-macro2", 4000] 4001 4002[[package]] 4003name = "r-efi" 4004version = "5.2.0" 4005source = "registry+https://github.com/rust-lang/crates.io-index" 4006checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 4007 4008[[package]] 4009name = "radium" 4010version = "0.7.0" 4011source = "registry+https://github.com/rust-lang/crates.io-index" 4012checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 4013 4014[[package]] 4015name = "rand" 4016version = "0.7.3" 4017source = "registry+https://github.com/rust-lang/crates.io-index" 4018checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 4019dependencies = [ 4020 "getrandom 0.1.16", 4021 "libc", 4022 "rand_chacha 0.2.2", 4023 "rand_core 0.5.1", 4024 "rand_hc", 4025 "rand_pcg", 4026] 4027 4028[[package]] 4029name = "rand" 4030version = "0.8.5" 4031source = "registry+https://github.com/rust-lang/crates.io-index" 4032checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4033dependencies = [ 4034 "libc", 4035 "rand_chacha 0.3.1", 4036 "rand_core 0.6.4", 4037] 4038 4039[[package]] 4040name = "rand" 4041version = "0.9.1" 4042source = "registry+https://github.com/rust-lang/crates.io-index" 4043checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" 4044dependencies = [ 4045 "rand_chacha 0.9.0", 4046 "rand_core 0.9.3", 4047] 4048 4049[[package]] 4050name = "rand_chacha" 4051version = "0.2.2" 4052source = "registry+https://github.com/rust-lang/crates.io-index" 4053checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 4054dependencies = [ 4055 "ppv-lite86", 4056 "rand_core 0.5.1", 4057] 4058 4059[[package]] 4060name = "rand_chacha" 4061version = "0.3.1" 4062source = "registry+https://github.com/rust-lang/crates.io-index" 4063checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4064dependencies = [ 4065 "ppv-lite86", 4066 "rand_core 0.6.4", 4067] 4068 4069[[package]] 4070name = "rand_chacha" 4071version = "0.9.0" 4072source = "registry+https://github.com/rust-lang/crates.io-index" 4073checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 4074dependencies = [ 4075 "ppv-lite86", 4076 "rand_core 0.9.3", 4077] 4078 4079[[package]] 4080name = "rand_core" 4081version = "0.5.1" 4082source = "registry+https://github.com/rust-lang/crates.io-index" 4083checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 4084dependencies = [ 4085 "getrandom 0.1.16", 4086] 4087 4088[[package]] 4089name = "rand_core" 4090version = "0.6.4" 4091source = "registry+https://github.com/rust-lang/crates.io-index" 4092checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4093dependencies = [ 4094 "getrandom 0.2.16", 4095] 4096 4097[[package]] 4098name = "rand_core" 4099version = "0.9.3" 4100source = "registry+https://github.com/rust-lang/crates.io-index" 4101checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 4102dependencies = [ 4103 "getrandom 0.3.3", 4104] 4105 4106[[package]] 4107name = "rand_hc" 4108version = "0.2.0" 4109source = "registry+https://github.com/rust-lang/crates.io-index" 4110checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 4111dependencies = [ 4112 "rand_core 0.5.1", 4113] 4114 4115[[package]] 4116name = "rand_pcg" 4117version = "0.2.1" 4118source = "registry+https://github.com/rust-lang/crates.io-index" 4119checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 4120dependencies = [ 4121 "rand_core 0.5.1", 4122] 4123 4124[[package]] 4125name = "raw-window-handle" 4126version = "0.6.2" 4127source = "registry+https://github.com/rust-lang/crates.io-index" 4128checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" 4129 4130[[package]] 4131name = "rcgen" 4132version = "0.13.2" 4133source = "registry+https://github.com/rust-lang/crates.io-index" 4134checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" 4135dependencies = [ 4136 "pem", 4137 "ring", 4138 "rustls-pki-types", 4139 "time", 4140 "x509-parser", 4141 "yasna", 4142] 4143 4144[[package]] 4145name = "redox_syscall" 4146version = "0.5.13" 4147source = "registry+https://github.com/rust-lang/crates.io-index" 4148checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6" 4149dependencies = [ 4150 "bitflags 2.9.1", 4151] 4152 4153[[package]] 4154name = "redox_users" 4155version = "0.5.0" 4156source = "registry+https://github.com/rust-lang/crates.io-index" 4157checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" 4158dependencies = [ 4159 "getrandom 0.2.16", 4160 "libredox", 4161 "thiserror 2.0.12", 4162] 4163 4164[[package]] 4165name = "ref-cast" 4166version = "1.0.24" 4167source = "registry+https://github.com/rust-lang/crates.io-index" 4168checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" 4169dependencies = [ 4170 "ref-cast-impl", 4171] 4172 4173[[package]] 4174name = "ref-cast-impl" 4175version = "1.0.24" 4176source = "registry+https://github.com/rust-lang/crates.io-index" 4177checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" 4178dependencies = [ 4179 "proc-macro2", 4180 "quote", 4181 "syn 2.0.103", 4182] 4183 4184[[package]] 4185name = "regex" 4186version = "1.11.1" 4187source = "registry+https://github.com/rust-lang/crates.io-index" 4188checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 4189dependencies = [ 4190 "aho-corasick", 4191 "memchr", 4192 "regex-automata", 4193 "regex-syntax", 4194] 4195 4196[[package]] 4197name = "regex-automata" 4198version = "0.4.9" 4199source = "registry+https://github.com/rust-lang/crates.io-index" 4200checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 4201dependencies = [ 4202 "aho-corasick", 4203 "memchr", 4204 "regex-syntax", 4205] 4206 4207[[package]] 4208name = "regex-syntax" 4209version = "0.8.5" 4210source = "registry+https://github.com/rust-lang/crates.io-index" 4211checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 4212 4213[[package]] 4214name = "rend" 4215version = "0.4.2" 4216source = "registry+https://github.com/rust-lang/crates.io-index" 4217checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 4218dependencies = [ 4219 "bytecheck", 4220] 4221 4222[[package]] 4223name = "reqwest" 4224version = "0.12.20" 4225source = "registry+https://github.com/rust-lang/crates.io-index" 4226checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813" 4227dependencies = [ 4228 "base64 0.22.1", 4229 "bytes", 4230 "futures-core", 4231 "futures-util", 4232 "http", 4233 "http-body", 4234 "http-body-util", 4235 "hyper", 4236 "hyper-util", 4237 "js-sys", 4238 "log", 4239 "percent-encoding", 4240 "pin-project-lite", 4241 "serde", 4242 "serde_json", 4243 "serde_urlencoded", 4244 "sync_wrapper", 4245 "tokio", 4246 "tokio-util", 4247 "tower", 4248 "tower-http", 4249 "tower-service", 4250 "url", 4251 "wasm-bindgen", 4252 "wasm-bindgen-futures", 4253 "wasm-streams", 4254 "web-sys", 4255] 4256 4257[[package]] 4258name = "rfc6979" 4259version = "0.4.0" 4260source = "registry+https://github.com/rust-lang/crates.io-index" 4261checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 4262dependencies = [ 4263 "hmac", 4264 "subtle", 4265] 4266 4267[[package]] 4268name = "ring" 4269version = "0.17.14" 4270source = "registry+https://github.com/rust-lang/crates.io-index" 4271checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 4272dependencies = [ 4273 "cc", 4274 "cfg-if", 4275 "getrandom 0.2.16", 4276 "libc", 4277 "untrusted", 4278 "windows-sys 0.52.0", 4279] 4280 4281[[package]] 4282name = "rkyv" 4283version = "0.7.45" 4284source = "registry+https://github.com/rust-lang/crates.io-index" 4285checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" 4286dependencies = [ 4287 "bitvec", 4288 "bytecheck", 4289 "bytes", 4290 "hashbrown 0.12.3", 4291 "ptr_meta", 4292 "rend", 4293 "rkyv_derive", 4294 "seahash", 4295 "tinyvec", 4296 "uuid", 4297] 4298 4299[[package]] 4300name = "rkyv_derive" 4301version = "0.7.45" 4302source = "registry+https://github.com/rust-lang/crates.io-index" 4303checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" 4304dependencies = [ 4305 "proc-macro2", 4306 "quote", 4307 "syn 1.0.109", 4308] 4309 4310[[package]] 4311name = "rmp" 4312version = "0.8.14" 4313source = "registry+https://github.com/rust-lang/crates.io-index" 4314checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4" 4315dependencies = [ 4316 "byteorder", 4317 "num-traits", 4318 "paste", 4319] 4320 4321[[package]] 4322name = "rmp-serde" 4323version = "1.3.0" 4324source = "registry+https://github.com/rust-lang/crates.io-index" 4325checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db" 4326dependencies = [ 4327 "byteorder", 4328 "rmp", 4329 "serde", 4330] 4331 4332[[package]] 4333name = "rtcp" 4334version = "0.13.0" 4335source = "registry+https://github.com/rust-lang/crates.io-index" 4336checksum = "e9689528bf3a9eb311fd938d05516dd546412f9ce4fffc8acfc1db27cc3dbf72" 4337dependencies = [ 4338 "bytes", 4339 "thiserror 1.0.69", 4340 "webrtc-util", 4341] 4342 4343[[package]] 4344name = "rtp" 4345version = "0.13.0" 4346source = "registry+https://github.com/rust-lang/crates.io-index" 4347checksum = "c54733451a67d76caf9caa07a7a2cec6871ea9dda92a7847f98063d459200f4b" 4348dependencies = [ 4349 "bytes", 4350 "memchr", 4351 "portable-atomic", 4352 "rand 0.8.5", 4353 "serde", 4354 "thiserror 1.0.69", 4355 "webrtc-util", 4356] 4357 4358[[package]] 4359name = "rust_decimal" 4360version = "1.37.2" 4361source = "registry+https://github.com/rust-lang/crates.io-index" 4362checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d" 4363dependencies = [ 4364 "arrayvec", 4365 "borsh", 4366 "bytes", 4367 "num-traits", 4368 "rand 0.8.5", 4369 "rkyv", 4370 "serde", 4371 "serde_json", 4372] 4373 4374[[package]] 4375name = "rustc-demangle" 4376version = "0.1.25" 4377source = "registry+https://github.com/rust-lang/crates.io-index" 4378checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f" 4379 4380[[package]] 4381name = "rustc_version" 4382version = "0.4.1" 4383source = "registry+https://github.com/rust-lang/crates.io-index" 4384checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 4385dependencies = [ 4386 "semver", 4387] 4388 4389[[package]] 4390name = "rusticata-macros" 4391version = "4.1.0" 4392source = "registry+https://github.com/rust-lang/crates.io-index" 4393checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 4394dependencies = [ 4395 "nom", 4396] 4397 4398[[package]] 4399name = "rustix" 4400version = "1.0.7" 4401source = "registry+https://github.com/rust-lang/crates.io-index" 4402checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" 4403dependencies = [ 4404 "bitflags 2.9.1", 4405 "errno", 4406 "libc", 4407 "linux-raw-sys", 4408 "windows-sys 0.59.0", 4409] 4410 4411[[package]] 4412name = "rustls" 4413version = "0.21.12" 4414source = "registry+https://github.com/rust-lang/crates.io-index" 4415checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 4416dependencies = [ 4417 "log", 4418 "ring", 4419 "rustls-webpki 0.101.7", 4420 "sct", 4421] 4422 4423[[package]] 4424name = "rustls" 4425version = "0.23.27" 4426source = "registry+https://github.com/rust-lang/crates.io-index" 4427checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321" 4428dependencies = [ 4429 "once_cell", 4430 "ring", 4431 "rustls-pki-types", 4432 "rustls-webpki 0.103.3", 4433 "subtle", 4434 "zeroize", 4435] 4436 4437[[package]] 4438name = "rustls-pemfile" 4439version = "1.0.4" 4440source = "registry+https://github.com/rust-lang/crates.io-index" 4441checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 4442dependencies = [ 4443 "base64 0.21.7", 4444] 4445 4446[[package]] 4447name = "rustls-pki-types" 4448version = "1.12.0" 4449source = "registry+https://github.com/rust-lang/crates.io-index" 4450checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 4451dependencies = [ 4452 "zeroize", 4453] 4454 4455[[package]] 4456name = "rustls-webpki" 4457version = "0.101.7" 4458source = "registry+https://github.com/rust-lang/crates.io-index" 4459checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 4460dependencies = [ 4461 "ring", 4462 "untrusted", 4463] 4464 4465[[package]] 4466name = "rustls-webpki" 4467version = "0.103.3" 4468source = "registry+https://github.com/rust-lang/crates.io-index" 4469checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" 4470dependencies = [ 4471 "ring", 4472 "rustls-pki-types", 4473 "untrusted", 4474] 4475 4476[[package]] 4477name = "rustversion" 4478version = "1.0.21" 4479source = "registry+https://github.com/rust-lang/crates.io-index" 4480checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 4481 4482[[package]] 4483name = "ryu" 4484version = "1.0.20" 4485source = "registry+https://github.com/rust-lang/crates.io-index" 4486checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 4487 4488[[package]] 4489name = "same-file" 4490version = "1.0.6" 4491source = "registry+https://github.com/rust-lang/crates.io-index" 4492checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4493dependencies = [ 4494 "winapi-util", 4495] 4496 4497[[package]] 4498name = "schemars" 4499version = "0.8.22" 4500source = "registry+https://github.com/rust-lang/crates.io-index" 4501checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" 4502dependencies = [ 4503 "dyn-clone", 4504 "indexmap 1.9.3", 4505 "schemars_derive", 4506 "serde", 4507 "serde_json", 4508 "url", 4509 "uuid", 4510] 4511 4512[[package]] 4513name = "schemars" 4514version = "0.9.0" 4515source = "registry+https://github.com/rust-lang/crates.io-index" 4516checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 4517dependencies = [ 4518 "dyn-clone", 4519 "ref-cast", 4520 "serde", 4521 "serde_json", 4522] 4523 4524[[package]] 4525name = "schemars_derive" 4526version = "0.8.22" 4527source = "registry+https://github.com/rust-lang/crates.io-index" 4528checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" 4529dependencies = [ 4530 "proc-macro2", 4531 "quote", 4532 "serde_derive_internals", 4533 "syn 2.0.103", 4534] 4535 4536[[package]] 4537name = "scopeguard" 4538version = "1.2.0" 4539source = "registry+https://github.com/rust-lang/crates.io-index" 4540checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 4541 4542[[package]] 4543name = "sct" 4544version = "0.7.1" 4545source = "registry+https://github.com/rust-lang/crates.io-index" 4546checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 4547dependencies = [ 4548 "ring", 4549 "untrusted", 4550] 4551 4552[[package]] 4553name = "sdp" 4554version = "0.8.0" 4555source = "registry+https://github.com/rust-lang/crates.io-index" 4556checksum = "4cd277015eada44a0bb810a4b84d3bf6e810573fa62fb442f457edf6a1087a69" 4557dependencies = [ 4558 "rand 0.8.5", 4559 "substring", 4560 "thiserror 1.0.69", 4561 "url", 4562] 4563 4564[[package]] 4565name = "seahash" 4566version = "4.1.0" 4567source = "registry+https://github.com/rust-lang/crates.io-index" 4568checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 4569 4570[[package]] 4571name = "sec1" 4572version = "0.7.3" 4573source = "registry+https://github.com/rust-lang/crates.io-index" 4574checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 4575dependencies = [ 4576 "base16ct", 4577 "der", 4578 "generic-array", 4579 "pkcs8", 4580 "subtle", 4581 "zeroize", 4582] 4583 4584[[package]] 4585name = "selectors" 4586version = "0.22.0" 4587source = "registry+https://github.com/rust-lang/crates.io-index" 4588checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 4589dependencies = [ 4590 "bitflags 1.3.2", 4591 "cssparser", 4592 "derive_more 0.99.20", 4593 "fxhash", 4594 "log", 4595 "matches", 4596 "phf 0.8.0", 4597 "phf_codegen 0.8.0", 4598 "precomputed-hash", 4599 "servo_arc", 4600 "smallvec", 4601 "thin-slice", 4602] 4603 4604[[package]] 4605name = "semver" 4606version = "1.0.26" 4607source = "registry+https://github.com/rust-lang/crates.io-index" 4608checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 4609dependencies = [ 4610 "serde", 4611] 4612 4613[[package]] 4614name = "send_wrapper" 4615version = "0.4.0" 4616source = "registry+https://github.com/rust-lang/crates.io-index" 4617checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" 4618 4619[[package]] 4620name = "send_wrapper" 4621version = "0.6.0" 4622source = "registry+https://github.com/rust-lang/crates.io-index" 4623checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 4624 4625[[package]] 4626name = "serde" 4627version = "1.0.219" 4628source = "registry+https://github.com/rust-lang/crates.io-index" 4629checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 4630dependencies = [ 4631 "serde_derive", 4632] 4633 4634[[package]] 4635name = "serde-untagged" 4636version = "0.1.7" 4637source = "registry+https://github.com/rust-lang/crates.io-index" 4638checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e" 4639dependencies = [ 4640 "erased-serde", 4641 "serde", 4642 "typeid", 4643] 4644 4645[[package]] 4646name = "serde-wasm-bindgen" 4647version = "0.6.5" 4648source = "registry+https://github.com/rust-lang/crates.io-index" 4649checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" 4650dependencies = [ 4651 "js-sys", 4652 "serde", 4653 "wasm-bindgen", 4654] 4655 4656[[package]] 4657name = "serde_derive" 4658version = "1.0.219" 4659source = "registry+https://github.com/rust-lang/crates.io-index" 4660checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 4661dependencies = [ 4662 "proc-macro2", 4663 "quote", 4664 "syn 2.0.103", 4665] 4666 4667[[package]] 4668name = "serde_derive_internals" 4669version = "0.29.1" 4670source = "registry+https://github.com/rust-lang/crates.io-index" 4671checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" 4672dependencies = [ 4673 "proc-macro2", 4674 "quote", 4675 "syn 2.0.103", 4676] 4677 4678[[package]] 4679name = "serde_json" 4680version = "1.0.140" 4681source = "registry+https://github.com/rust-lang/crates.io-index" 4682checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 4683dependencies = [ 4684 "itoa 1.0.15", 4685 "memchr", 4686 "ryu", 4687 "serde", 4688] 4689 4690[[package]] 4691name = "serde_path_to_error" 4692version = "0.1.17" 4693source = "registry+https://github.com/rust-lang/crates.io-index" 4694checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" 4695dependencies = [ 4696 "itoa 1.0.15", 4697 "serde", 4698] 4699 4700[[package]] 4701name = "serde_repr" 4702version = "0.1.20" 4703source = "registry+https://github.com/rust-lang/crates.io-index" 4704checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 4705dependencies = [ 4706 "proc-macro2", 4707 "quote", 4708 "syn 2.0.103", 4709] 4710 4711[[package]] 4712name = "serde_spanned" 4713version = "0.6.9" 4714source = "registry+https://github.com/rust-lang/crates.io-index" 4715checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 4716dependencies = [ 4717 "serde", 4718] 4719 4720[[package]] 4721name = "serde_urlencoded" 4722version = "0.7.1" 4723source = "registry+https://github.com/rust-lang/crates.io-index" 4724checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4725dependencies = [ 4726 "form_urlencoded", 4727 "itoa 1.0.15", 4728 "ryu", 4729 "serde", 4730] 4731 4732[[package]] 4733name = "serde_with" 4734version = "3.13.0" 4735source = "registry+https://github.com/rust-lang/crates.io-index" 4736checksum = "bf65a400f8f66fb7b0552869ad70157166676db75ed8181f8104ea91cf9d0b42" 4737dependencies = [ 4738 "base64 0.22.1", 4739 "chrono", 4740 "hex", 4741 "indexmap 1.9.3", 4742 "indexmap 2.9.0", 4743 "schemars 0.9.0", 4744 "serde", 4745 "serde_derive", 4746 "serde_json", 4747 "serde_with_macros", 4748 "time", 4749] 4750 4751[[package]] 4752name = "serde_with_macros" 4753version = "3.13.0" 4754source = "registry+https://github.com/rust-lang/crates.io-index" 4755checksum = "81679d9ed988d5e9a5e6531dc3f2c28efbd639cbd1dfb628df08edea6004da77" 4756dependencies = [ 4757 "darling", 4758 "proc-macro2", 4759 "quote", 4760 "syn 2.0.103", 4761] 4762 4763[[package]] 4764name = "serialize-to-javascript" 4765version = "0.1.1" 4766source = "registry+https://github.com/rust-lang/crates.io-index" 4767checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 4768dependencies = [ 4769 "serde", 4770 "serde_json", 4771 "serialize-to-javascript-impl", 4772] 4773 4774[[package]] 4775name = "serialize-to-javascript-impl" 4776version = "0.1.1" 4777source = "registry+https://github.com/rust-lang/crates.io-index" 4778checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 4779dependencies = [ 4780 "proc-macro2", 4781 "quote", 4782 "syn 1.0.109", 4783] 4784 4785[[package]] 4786name = "servo_arc" 4787version = "0.1.1" 4788source = "registry+https://github.com/rust-lang/crates.io-index" 4789checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 4790dependencies = [ 4791 "nodrop", 4792 "stable_deref_trait", 4793] 4794 4795[[package]] 4796name = "sha1" 4797version = "0.10.6" 4798source = "registry+https://github.com/rust-lang/crates.io-index" 4799checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4800dependencies = [ 4801 "cfg-if", 4802 "cpufeatures", 4803 "digest", 4804] 4805 4806[[package]] 4807name = "sha2" 4808version = "0.10.9" 4809source = "registry+https://github.com/rust-lang/crates.io-index" 4810checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 4811dependencies = [ 4812 "cfg-if", 4813 "cpufeatures", 4814 "digest", 4815] 4816 4817[[package]] 4818name = "shlex" 4819version = "1.3.0" 4820source = "registry+https://github.com/rust-lang/crates.io-index" 4821checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 4822 4823[[package]] 4824name = "signal-hook-registry" 4825version = "1.4.5" 4826source = "registry+https://github.com/rust-lang/crates.io-index" 4827checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" 4828dependencies = [ 4829 "libc", 4830] 4831 4832[[package]] 4833name = "signature" 4834version = "2.2.0" 4835source = "registry+https://github.com/rust-lang/crates.io-index" 4836checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 4837dependencies = [ 4838 "digest", 4839 "rand_core 0.6.4", 4840] 4841 4842[[package]] 4843name = "simd-adler32" 4844version = "0.3.7" 4845source = "registry+https://github.com/rust-lang/crates.io-index" 4846checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 4847 4848[[package]] 4849name = "simdutf8" 4850version = "0.1.5" 4851source = "registry+https://github.com/rust-lang/crates.io-index" 4852checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 4853 4854[[package]] 4855name = "siphasher" 4856version = "0.3.11" 4857source = "registry+https://github.com/rust-lang/crates.io-index" 4858checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" 4859 4860[[package]] 4861name = "siphasher" 4862version = "1.0.1" 4863source = "registry+https://github.com/rust-lang/crates.io-index" 4864checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 4865 4866[[package]] 4867name = "slab" 4868version = "0.4.10" 4869source = "registry+https://github.com/rust-lang/crates.io-index" 4870checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" 4871 4872[[package]] 4873name = "smallvec" 4874version = "1.15.1" 4875source = "registry+https://github.com/rust-lang/crates.io-index" 4876checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 4877 4878[[package]] 4879name = "smol_str" 4880version = "0.2.2" 4881source = "registry+https://github.com/rust-lang/crates.io-index" 4882checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead" 4883dependencies = [ 4884 "serde", 4885] 4886 4887[[package]] 4888name = "socket2" 4889version = "0.5.10" 4890source = "registry+https://github.com/rust-lang/crates.io-index" 4891checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 4892dependencies = [ 4893 "libc", 4894 "windows-sys 0.52.0", 4895] 4896 4897[[package]] 4898name = "softbuffer" 4899version = "0.4.6" 4900source = "registry+https://github.com/rust-lang/crates.io-index" 4901checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" 4902dependencies = [ 4903 "bytemuck", 4904 "cfg_aliases", 4905 "core-graphics", 4906 "foreign-types", 4907 "js-sys", 4908 "log", 4909 "objc2 0.5.2", 4910 "objc2-foundation 0.2.2", 4911 "objc2-quartz-core 0.2.2", 4912 "raw-window-handle", 4913 "redox_syscall", 4914 "wasm-bindgen", 4915 "web-sys", 4916 "windows-sys 0.59.0", 4917] 4918 4919[[package]] 4920name = "soup3" 4921version = "0.5.0" 4922source = "registry+https://github.com/rust-lang/crates.io-index" 4923checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" 4924dependencies = [ 4925 "futures-channel", 4926 "gio", 4927 "glib", 4928 "libc", 4929 "soup3-sys", 4930] 4931 4932[[package]] 4933name = "soup3-sys" 4934version = "0.5.0" 4935source = "registry+https://github.com/rust-lang/crates.io-index" 4936checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" 4937dependencies = [ 4938 "gio-sys", 4939 "glib-sys", 4940 "gobject-sys", 4941 "libc", 4942 "system-deps", 4943] 4944 4945[[package]] 4946name = "specta" 4947version = "2.0.0-rc.22" 4948source = "registry+https://github.com/rust-lang/crates.io-index" 4949checksum = "ab7f01e9310a820edd31c80fde3cae445295adde21a3f9416517d7d65015b971" 4950dependencies = [ 4951 "chrono", 4952 "paste", 4953 "specta-macros", 4954 "thiserror 1.0.69", 4955 "uuid", 4956] 4957 4958[[package]] 4959name = "specta-macros" 4960version = "2.0.0-rc.18" 4961source = "registry+https://github.com/rust-lang/crates.io-index" 4962checksum = "c0074b9e30ed84c6924eb63ad8d2fe71cdc82628525d84b1fcb1f2fd40676517" 4963dependencies = [ 4964 "Inflector", 4965 "proc-macro2", 4966 "quote", 4967 "syn 2.0.103", 4968] 4969 4970[[package]] 4971name = "specta-serde" 4972version = "0.0.9" 4973source = "registry+https://github.com/rust-lang/crates.io-index" 4974checksum = "77216504061374659e7245eac53d30c7b3e5fe64b88da97c753e7184b0781e63" 4975dependencies = [ 4976 "specta", 4977 "thiserror 1.0.69", 4978] 4979 4980[[package]] 4981name = "specta-typescript" 4982version = "0.0.9" 4983source = "registry+https://github.com/rust-lang/crates.io-index" 4984checksum = "3220a0c365e51e248ac98eab5a6a32f544ff6f961906f09d3ee10903a4f52b2d" 4985dependencies = [ 4986 "specta", 4987 "specta-serde", 4988 "thiserror 1.0.69", 4989] 4990 4991[[package]] 4992name = "spki" 4993version = "0.7.3" 4994source = "registry+https://github.com/rust-lang/crates.io-index" 4995checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 4996dependencies = [ 4997 "base64ct", 4998 "der", 4999] 5000 5001[[package]] 5002name = "stable_deref_trait" 5003version = "1.2.0" 5004source = "registry+https://github.com/rust-lang/crates.io-index" 5005checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 5006 5007[[package]] 5008name = "static_assertions" 5009version = "1.1.0" 5010source = "registry+https://github.com/rust-lang/crates.io-index" 5011checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 5012 5013[[package]] 5014name = "string_cache" 5015version = "0.8.9" 5016source = "registry+https://github.com/rust-lang/crates.io-index" 5017checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 5018dependencies = [ 5019 "new_debug_unreachable", 5020 "parking_lot", 5021 "phf_shared 0.11.3", 5022 "precomputed-hash", 5023 "serde", 5024] 5025 5026[[package]] 5027name = "string_cache_codegen" 5028version = "0.5.4" 5029source = "registry+https://github.com/rust-lang/crates.io-index" 5030checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 5031dependencies = [ 5032 "phf_generator 0.11.3", 5033 "phf_shared 0.11.3", 5034 "proc-macro2", 5035 "quote", 5036] 5037 5038[[package]] 5039name = "strsim" 5040version = "0.11.1" 5041source = "registry+https://github.com/rust-lang/crates.io-index" 5042checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 5043 5044[[package]] 5045name = "stun" 5046version = "0.8.0" 5047source = "registry+https://github.com/rust-lang/crates.io-index" 5048checksum = "7dbc2bab375524093c143dc362a03fb6a1fb79e938391cdb21665688f88a088a" 5049dependencies = [ 5050 "base64 0.22.1", 5051 "crc", 5052 "lazy_static", 5053 "md-5", 5054 "rand 0.8.5", 5055 "ring", 5056 "subtle", 5057 "thiserror 1.0.69", 5058 "tokio", 5059 "url", 5060 "webrtc-util", 5061] 5062 5063[[package]] 5064name = "substring" 5065version = "1.4.5" 5066source = "registry+https://github.com/rust-lang/crates.io-index" 5067checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86" 5068dependencies = [ 5069 "autocfg", 5070] 5071 5072[[package]] 5073name = "subtle" 5074version = "2.6.1" 5075source = "registry+https://github.com/rust-lang/crates.io-index" 5076checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 5077 5078[[package]] 5079name = "swift-rs" 5080version = "1.0.7" 5081source = "registry+https://github.com/rust-lang/crates.io-index" 5082checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" 5083dependencies = [ 5084 "base64 0.21.7", 5085 "serde", 5086 "serde_json", 5087] 5088 5089[[package]] 5090name = "syn" 5091version = "1.0.109" 5092source = "registry+https://github.com/rust-lang/crates.io-index" 5093checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 5094dependencies = [ 5095 "proc-macro2", 5096 "quote", 5097 "unicode-ident", 5098] 5099 5100[[package]] 5101name = "syn" 5102version = "2.0.103" 5103source = "registry+https://github.com/rust-lang/crates.io-index" 5104checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8" 5105dependencies = [ 5106 "proc-macro2", 5107 "quote", 5108 "unicode-ident", 5109] 5110 5111[[package]] 5112name = "sync_wrapper" 5113version = "1.0.2" 5114source = "registry+https://github.com/rust-lang/crates.io-index" 5115checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 5116dependencies = [ 5117 "futures-core", 5118] 5119 5120[[package]] 5121name = "synstructure" 5122version = "0.13.2" 5123source = "registry+https://github.com/rust-lang/crates.io-index" 5124checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 5125dependencies = [ 5126 "proc-macro2", 5127 "quote", 5128 "syn 2.0.103", 5129] 5130 5131[[package]] 5132name = "system-deps" 5133version = "6.2.2" 5134source = "registry+https://github.com/rust-lang/crates.io-index" 5135checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 5136dependencies = [ 5137 "cfg-expr", 5138 "heck 0.5.0", 5139 "pkg-config", 5140 "toml", 5141 "version-compare", 5142] 5143 5144[[package]] 5145name = "tao" 5146version = "0.33.0" 5147source = "registry+https://github.com/rust-lang/crates.io-index" 5148checksum = "1e59c1f38e657351a2e822eadf40d6a2ad4627b9c25557bc1180ec1b3295ef82" 5149dependencies = [ 5150 "bitflags 2.9.1", 5151 "core-foundation", 5152 "core-graphics", 5153 "crossbeam-channel", 5154 "dispatch", 5155 "dlopen2", 5156 "dpi", 5157 "gdkwayland-sys", 5158 "gdkx11-sys", 5159 "gtk", 5160 "jni", 5161 "lazy_static", 5162 "libc", 5163 "log", 5164 "ndk", 5165 "ndk-context", 5166 "ndk-sys", 5167 "objc2 0.6.1", 5168 "objc2-app-kit", 5169 "objc2-foundation 0.3.1", 5170 "once_cell", 5171 "parking_lot", 5172 "raw-window-handle", 5173 "scopeguard", 5174 "tao-macros", 5175 "unicode-segmentation", 5176 "url", 5177 "windows", 5178 "windows-core", 5179 "windows-version", 5180 "x11-dl", 5181] 5182 5183[[package]] 5184name = "tao-macros" 5185version = "0.1.3" 5186source = "registry+https://github.com/rust-lang/crates.io-index" 5187checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" 5188dependencies = [ 5189 "proc-macro2", 5190 "quote", 5191 "syn 2.0.103", 5192] 5193 5194[[package]] 5195name = "tap" 5196version = "1.0.1" 5197source = "registry+https://github.com/rust-lang/crates.io-index" 5198checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 5199 5200[[package]] 5201name = "target-lexicon" 5202version = "0.12.16" 5203source = "registry+https://github.com/rust-lang/crates.io-index" 5204checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" 5205 5206[[package]] 5207name = "tauri" 5208version = "2.5.1" 5209source = "registry+https://github.com/rust-lang/crates.io-index" 5210checksum = "e7b0bc1aec81bda6bc455ea98fcaed26b3c98c1648c627ad6ff1c704e8bf8cbc" 5211dependencies = [ 5212 "anyhow", 5213 "bytes", 5214 "dirs", 5215 "dunce", 5216 "embed_plist", 5217 "futures-util", 5218 "getrandom 0.2.16", 5219 "glob", 5220 "gtk", 5221 "heck 0.5.0", 5222 "http", 5223 "jni", 5224 "libc", 5225 "log", 5226 "mime", 5227 "muda", 5228 "objc2 0.6.1", 5229 "objc2-app-kit", 5230 "objc2-foundation 0.3.1", 5231 "objc2-ui-kit", 5232 "percent-encoding", 5233 "plist", 5234 "raw-window-handle", 5235 "reqwest", 5236 "serde", 5237 "serde_json", 5238 "serde_repr", 5239 "serialize-to-javascript", 5240 "specta", 5241 "swift-rs", 5242 "tauri-build", 5243 "tauri-macros", 5244 "tauri-runtime", 5245 "tauri-runtime-wry", 5246 "tauri-utils", 5247 "thiserror 2.0.12", 5248 "tokio", 5249 "tray-icon", 5250 "url", 5251 "urlpattern", 5252 "webkit2gtk", 5253 "webview2-com", 5254 "window-vibrancy", 5255 "windows", 5256] 5257 5258[[package]] 5259name = "tauri-build" 5260version = "2.2.0" 5261source = "registry+https://github.com/rust-lang/crates.io-index" 5262checksum = "d7a0350f0df1db385ca5c02888a83e0e66655c245b7443db8b78a70da7d7f8fc" 5263dependencies = [ 5264 "anyhow", 5265 "cargo_toml", 5266 "dirs", 5267 "glob", 5268 "heck 0.5.0", 5269 "json-patch", 5270 "schemars 0.8.22", 5271 "semver", 5272 "serde", 5273 "serde_json", 5274 "tauri-utils", 5275 "tauri-winres", 5276 "toml", 5277 "walkdir", 5278] 5279 5280[[package]] 5281name = "tauri-codegen" 5282version = "2.2.0" 5283source = "registry+https://github.com/rust-lang/crates.io-index" 5284checksum = "f93f035551bf7b11b3f51ad9bc231ebbe5e085565527991c16cf326aa38cdf47" 5285dependencies = [ 5286 "base64 0.22.1", 5287 "brotli", 5288 "ico", 5289 "json-patch", 5290 "plist", 5291 "png", 5292 "proc-macro2", 5293 "quote", 5294 "semver", 5295 "serde", 5296 "serde_json", 5297 "sha2", 5298 "syn 2.0.103", 5299 "tauri-utils", 5300 "thiserror 2.0.12", 5301 "time", 5302 "url", 5303 "uuid", 5304 "walkdir", 5305] 5306 5307[[package]] 5308name = "tauri-macros" 5309version = "2.2.0" 5310source = "registry+https://github.com/rust-lang/crates.io-index" 5311checksum = "8db4df25e2d9d45de0c4c910da61cd5500190da14ae4830749fee3466dddd112" 5312dependencies = [ 5313 "heck 0.5.0", 5314 "proc-macro2", 5315 "quote", 5316 "syn 2.0.103", 5317 "tauri-codegen", 5318 "tauri-utils", 5319] 5320 5321[[package]] 5322name = "tauri-plugin" 5323version = "2.2.0" 5324source = "registry+https://github.com/rust-lang/crates.io-index" 5325checksum = "37a5ebe6a610d1b78a94650896e6f7c9796323f408800cef436e0fa0539de601" 5326dependencies = [ 5327 "anyhow", 5328 "glob", 5329 "plist", 5330 "schemars 0.8.22", 5331 "serde", 5332 "serde_json", 5333 "tauri-utils", 5334 "toml", 5335 "walkdir", 5336] 5337 5338[[package]] 5339name = "tauri-plugin-geolocation" 5340version = "2.2.4" 5341source = "registry+https://github.com/rust-lang/crates.io-index" 5342checksum = "f70978d3dbca4d900f8708dad1e0cff32c52de578101998d0f30dc7e12104e85" 5343dependencies = [ 5344 "log", 5345 "serde", 5346 "serde_json", 5347 "tauri", 5348 "tauri-plugin", 5349 "thiserror 2.0.12", 5350] 5351 5352[[package]] 5353name = "tauri-plugin-log" 5354version = "2.4.0" 5355source = "registry+https://github.com/rust-lang/crates.io-index" 5356checksum = "8d2b582d860eb214f28323f4ce4f2797ae3b78f197e27b11677f976f9f52aedb" 5357dependencies = [ 5358 "android_logger", 5359 "byte-unit", 5360 "fern", 5361 "log", 5362 "objc2 0.6.1", 5363 "objc2-foundation 0.3.1", 5364 "serde", 5365 "serde_json", 5366 "serde_repr", 5367 "swift-rs", 5368 "tauri", 5369 "tauri-plugin", 5370 "thiserror 2.0.12", 5371 "time", 5372] 5373 5374[[package]] 5375name = "tauri-plugin-notification" 5376version = "2.2.2" 5377source = "registry+https://github.com/rust-lang/crates.io-index" 5378checksum = "c474c7cc524385e682ccc1e149e13913a66fd8586ac4c2319cf01b78f070d309" 5379dependencies = [ 5380 "log", 5381 "notify-rust", 5382 "rand 0.8.5", 5383 "serde", 5384 "serde_json", 5385 "serde_repr", 5386 "tauri", 5387 "tauri-plugin", 5388 "thiserror 2.0.12", 5389 "time", 5390 "url", 5391] 5392 5393[[package]] 5394name = "tauri-plugin-opener" 5395version = "2.2.7" 5396source = "registry+https://github.com/rust-lang/crates.io-index" 5397checksum = "66644b71a31ec1a8a52c4a16575edd28cf763c87cf4a7da24c884122b5c77097" 5398dependencies = [ 5399 "dunce", 5400 "glob", 5401 "objc2-app-kit", 5402 "objc2-foundation 0.3.1", 5403 "open", 5404 "schemars 0.8.22", 5405 "serde", 5406 "serde_json", 5407 "tauri", 5408 "tauri-plugin", 5409 "thiserror 2.0.12", 5410 "url", 5411 "windows", 5412 "zbus", 5413] 5414 5415[[package]] 5416name = "tauri-plugin-store" 5417version = "2.2.0" 5418source = "registry+https://github.com/rust-lang/crates.io-index" 5419checksum = "1c0c08fae6995909f5e9a0da6038273b750221319f2c0f3b526d6de1cde21505" 5420dependencies = [ 5421 "dunce", 5422 "serde", 5423 "serde_json", 5424 "tauri", 5425 "tauri-plugin", 5426 "thiserror 2.0.12", 5427 "tokio", 5428 "tracing", 5429] 5430 5431[[package]] 5432name = "tauri-runtime" 5433version = "2.6.0" 5434source = "registry+https://github.com/rust-lang/crates.io-index" 5435checksum = "00f004905d549854069e6774533d742b03cacfd6f03deb08940a8677586cbe39" 5436dependencies = [ 5437 "cookie", 5438 "dpi", 5439 "gtk", 5440 "http", 5441 "jni", 5442 "objc2 0.6.1", 5443 "objc2-ui-kit", 5444 "raw-window-handle", 5445 "serde", 5446 "serde_json", 5447 "tauri-utils", 5448 "thiserror 2.0.12", 5449 "url", 5450 "windows", 5451] 5452 5453[[package]] 5454name = "tauri-runtime-wry" 5455version = "2.6.0" 5456source = "registry+https://github.com/rust-lang/crates.io-index" 5457checksum = "f85d056f4d4b014fe874814034f3416d57114b617a493a4fe552580851a3f3a2" 5458dependencies = [ 5459 "gtk", 5460 "http", 5461 "jni", 5462 "log", 5463 "objc2 0.6.1", 5464 "objc2-app-kit", 5465 "objc2-foundation 0.3.1", 5466 "once_cell", 5467 "percent-encoding", 5468 "raw-window-handle", 5469 "softbuffer", 5470 "tao", 5471 "tauri-runtime", 5472 "tauri-utils", 5473 "url", 5474 "webkit2gtk", 5475 "webview2-com", 5476 "windows", 5477 "wry", 5478] 5479 5480[[package]] 5481name = "tauri-specta" 5482version = "2.0.0-rc.21" 5483source = "registry+https://github.com/rust-lang/crates.io-index" 5484checksum = "b23c0132dd3cf6064e5cd919b82b3f47780e9280e7b5910babfe139829b76655" 5485dependencies = [ 5486 "heck 0.5.0", 5487 "serde", 5488 "serde_json", 5489 "specta", 5490 "specta-typescript", 5491 "tauri", 5492 "tauri-specta-macros", 5493 "thiserror 2.0.12", 5494] 5495 5496[[package]] 5497name = "tauri-specta-macros" 5498version = "2.0.0-rc.16" 5499source = "registry+https://github.com/rust-lang/crates.io-index" 5500checksum = "7a4aa93823e07859546aa796b8a5d608190cd8037a3a5dce3eb63d491c34bda8" 5501dependencies = [ 5502 "heck 0.5.0", 5503 "proc-macro2", 5504 "quote", 5505 "syn 2.0.103", 5506] 5507 5508[[package]] 5509name = "tauri-utils" 5510version = "2.4.0" 5511source = "registry+https://github.com/rust-lang/crates.io-index" 5512checksum = "b2900399c239a471bcff7f15c4399eb1a8c4fe511ba2853e07c996d771a5e0a4" 5513dependencies = [ 5514 "anyhow", 5515 "brotli", 5516 "cargo_metadata", 5517 "ctor", 5518 "dunce", 5519 "glob", 5520 "html5ever", 5521 "http", 5522 "infer", 5523 "json-patch", 5524 "kuchikiki", 5525 "log", 5526 "memchr", 5527 "phf 0.11.3", 5528 "proc-macro2", 5529 "quote", 5530 "regex", 5531 "schemars 0.8.22", 5532 "semver", 5533 "serde", 5534 "serde-untagged", 5535 "serde_json", 5536 "serde_with", 5537 "swift-rs", 5538 "thiserror 2.0.12", 5539 "toml", 5540 "url", 5541 "urlpattern", 5542 "uuid", 5543 "walkdir", 5544] 5545 5546[[package]] 5547name = "tauri-winres" 5548version = "0.3.1" 5549source = "registry+https://github.com/rust-lang/crates.io-index" 5550checksum = "e8d321dbc6f998d825ab3f0d62673e810c861aac2d0de2cc2c395328f1d113b4" 5551dependencies = [ 5552 "embed-resource", 5553 "indexmap 2.9.0", 5554 "toml", 5555] 5556 5557[[package]] 5558name = "tauri-winrt-notification" 5559version = "0.7.2" 5560source = "registry+https://github.com/rust-lang/crates.io-index" 5561checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9" 5562dependencies = [ 5563 "quick-xml", 5564 "thiserror 2.0.12", 5565 "windows", 5566 "windows-version", 5567] 5568 5569[[package]] 5570name = "tempfile" 5571version = "3.20.0" 5572source = "registry+https://github.com/rust-lang/crates.io-index" 5573checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" 5574dependencies = [ 5575 "fastrand", 5576 "getrandom 0.3.3", 5577 "once_cell", 5578 "rustix", 5579 "windows-sys 0.59.0", 5580] 5581 5582[[package]] 5583name = "tendril" 5584version = "0.4.3" 5585source = "registry+https://github.com/rust-lang/crates.io-index" 5586checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 5587dependencies = [ 5588 "futf", 5589 "mac", 5590 "utf-8", 5591] 5592 5593[[package]] 5594name = "thin-slice" 5595version = "0.1.1" 5596source = "registry+https://github.com/rust-lang/crates.io-index" 5597checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 5598 5599[[package]] 5600name = "thiserror" 5601version = "1.0.69" 5602source = "registry+https://github.com/rust-lang/crates.io-index" 5603checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 5604dependencies = [ 5605 "thiserror-impl 1.0.69", 5606] 5607 5608[[package]] 5609name = "thiserror" 5610version = "2.0.12" 5611source = "registry+https://github.com/rust-lang/crates.io-index" 5612checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 5613dependencies = [ 5614 "thiserror-impl 2.0.12", 5615] 5616 5617[[package]] 5618name = "thiserror-impl" 5619version = "1.0.69" 5620source = "registry+https://github.com/rust-lang/crates.io-index" 5621checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 5622dependencies = [ 5623 "proc-macro2", 5624 "quote", 5625 "syn 2.0.103", 5626] 5627 5628[[package]] 5629name = "thiserror-impl" 5630version = "2.0.12" 5631source = "registry+https://github.com/rust-lang/crates.io-index" 5632checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 5633dependencies = [ 5634 "proc-macro2", 5635 "quote", 5636 "syn 2.0.103", 5637] 5638 5639[[package]] 5640name = "time" 5641version = "0.3.41" 5642source = "registry+https://github.com/rust-lang/crates.io-index" 5643checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" 5644dependencies = [ 5645 "deranged", 5646 "itoa 1.0.15", 5647 "libc", 5648 "num-conv", 5649 "num_threads", 5650 "powerfmt", 5651 "serde", 5652 "time-core", 5653 "time-macros", 5654] 5655 5656[[package]] 5657name = "time-core" 5658version = "0.1.4" 5659source = "registry+https://github.com/rust-lang/crates.io-index" 5660checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" 5661 5662[[package]] 5663name = "time-macros" 5664version = "0.2.22" 5665source = "registry+https://github.com/rust-lang/crates.io-index" 5666checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" 5667dependencies = [ 5668 "num-conv", 5669 "time-core", 5670] 5671 5672[[package]] 5673name = "tinystr" 5674version = "0.8.1" 5675source = "registry+https://github.com/rust-lang/crates.io-index" 5676checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 5677dependencies = [ 5678 "displaydoc", 5679 "zerovec", 5680] 5681 5682[[package]] 5683name = "tinyvec" 5684version = "1.9.0" 5685source = "registry+https://github.com/rust-lang/crates.io-index" 5686checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" 5687dependencies = [ 5688 "tinyvec_macros", 5689] 5690 5691[[package]] 5692name = "tinyvec_macros" 5693version = "0.1.1" 5694source = "registry+https://github.com/rust-lang/crates.io-index" 5695checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5696 5697[[package]] 5698name = "tokio" 5699version = "1.45.1" 5700source = "registry+https://github.com/rust-lang/crates.io-index" 5701checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" 5702dependencies = [ 5703 "backtrace", 5704 "bytes", 5705 "libc", 5706 "mio", 5707 "parking_lot", 5708 "pin-project-lite", 5709 "signal-hook-registry", 5710 "socket2", 5711 "tokio-macros", 5712 "windows-sys 0.52.0", 5713] 5714 5715[[package]] 5716name = "tokio-macros" 5717version = "2.5.0" 5718source = "registry+https://github.com/rust-lang/crates.io-index" 5719checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 5720dependencies = [ 5721 "proc-macro2", 5722 "quote", 5723 "syn 2.0.103", 5724] 5725 5726[[package]] 5727name = "tokio-stream" 5728version = "0.1.17" 5729source = "registry+https://github.com/rust-lang/crates.io-index" 5730checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 5731dependencies = [ 5732 "futures-core", 5733 "pin-project-lite", 5734 "tokio", 5735] 5736 5737[[package]] 5738name = "tokio-tungstenite" 5739version = "0.26.2" 5740source = "registry+https://github.com/rust-lang/crates.io-index" 5741checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" 5742dependencies = [ 5743 "futures-util", 5744 "log", 5745 "tokio", 5746 "tungstenite", 5747] 5748 5749[[package]] 5750name = "tokio-util" 5751version = "0.7.15" 5752source = "registry+https://github.com/rust-lang/crates.io-index" 5753checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" 5754dependencies = [ 5755 "bytes", 5756 "futures-core", 5757 "futures-io", 5758 "futures-sink", 5759 "pin-project-lite", 5760 "tokio", 5761] 5762 5763[[package]] 5764name = "toml" 5765version = "0.8.23" 5766source = "registry+https://github.com/rust-lang/crates.io-index" 5767checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 5768dependencies = [ 5769 "serde", 5770 "serde_spanned", 5771 "toml_datetime", 5772 "toml_edit 0.22.27", 5773] 5774 5775[[package]] 5776name = "toml_datetime" 5777version = "0.6.11" 5778source = "registry+https://github.com/rust-lang/crates.io-index" 5779checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 5780dependencies = [ 5781 "serde", 5782] 5783 5784[[package]] 5785name = "toml_edit" 5786version = "0.19.15" 5787source = "registry+https://github.com/rust-lang/crates.io-index" 5788checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 5789dependencies = [ 5790 "indexmap 2.9.0", 5791 "toml_datetime", 5792 "winnow 0.5.40", 5793] 5794 5795[[package]] 5796name = "toml_edit" 5797version = "0.20.7" 5798source = "registry+https://github.com/rust-lang/crates.io-index" 5799checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" 5800dependencies = [ 5801 "indexmap 2.9.0", 5802 "toml_datetime", 5803 "winnow 0.5.40", 5804] 5805 5806[[package]] 5807name = "toml_edit" 5808version = "0.22.27" 5809source = "registry+https://github.com/rust-lang/crates.io-index" 5810checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 5811dependencies = [ 5812 "indexmap 2.9.0", 5813 "serde", 5814 "serde_spanned", 5815 "toml_datetime", 5816 "toml_write", 5817 "winnow 0.7.11", 5818] 5819 5820[[package]] 5821name = "toml_write" 5822version = "0.1.2" 5823source = "registry+https://github.com/rust-lang/crates.io-index" 5824checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 5825 5826[[package]] 5827name = "tower" 5828version = "0.5.2" 5829source = "registry+https://github.com/rust-lang/crates.io-index" 5830checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 5831dependencies = [ 5832 "futures-core", 5833 "futures-util", 5834 "pin-project-lite", 5835 "sync_wrapper", 5836 "tokio", 5837 "tower-layer", 5838 "tower-service", 5839 "tracing", 5840] 5841 5842[[package]] 5843name = "tower-http" 5844version = "0.6.6" 5845source = "registry+https://github.com/rust-lang/crates.io-index" 5846checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 5847dependencies = [ 5848 "bitflags 2.9.1", 5849 "bytes", 5850 "futures-util", 5851 "http", 5852 "http-body", 5853 "iri-string", 5854 "pin-project-lite", 5855 "tower", 5856 "tower-layer", 5857 "tower-service", 5858 "tracing", 5859] 5860 5861[[package]] 5862name = "tower-layer" 5863version = "0.3.3" 5864source = "registry+https://github.com/rust-lang/crates.io-index" 5865checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 5866 5867[[package]] 5868name = "tower-service" 5869version = "0.3.3" 5870source = "registry+https://github.com/rust-lang/crates.io-index" 5871checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 5872 5873[[package]] 5874name = "tracing" 5875version = "0.1.41" 5876source = "registry+https://github.com/rust-lang/crates.io-index" 5877checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 5878dependencies = [ 5879 "log", 5880 "pin-project-lite", 5881 "tracing-attributes", 5882 "tracing-core", 5883] 5884 5885[[package]] 5886name = "tracing-attributes" 5887version = "0.1.29" 5888source = "registry+https://github.com/rust-lang/crates.io-index" 5889checksum = "1b1ffbcf9c6f6b99d386e7444eb608ba646ae452a36b39737deb9663b610f662" 5890dependencies = [ 5891 "proc-macro2", 5892 "quote", 5893 "syn 2.0.103", 5894] 5895 5896[[package]] 5897name = "tracing-core" 5898version = "0.1.34" 5899source = "registry+https://github.com/rust-lang/crates.io-index" 5900checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 5901dependencies = [ 5902 "once_cell", 5903] 5904 5905[[package]] 5906name = "tray-icon" 5907version = "0.20.1" 5908source = "registry+https://github.com/rust-lang/crates.io-index" 5909checksum = "9f7eee98ec5c90daf179d55c20a49d8c0d043054ce7c26336c09a24d31f14fa0" 5910dependencies = [ 5911 "crossbeam-channel", 5912 "dirs", 5913 "libappindicator", 5914 "muda", 5915 "objc2 0.6.1", 5916 "objc2-app-kit", 5917 "objc2-core-foundation", 5918 "objc2-core-graphics", 5919 "objc2-foundation 0.3.1", 5920 "once_cell", 5921 "png", 5922 "serde", 5923 "thiserror 2.0.12", 5924 "windows-sys 0.59.0", 5925] 5926 5927[[package]] 5928name = "try-lock" 5929version = "0.2.5" 5930source = "registry+https://github.com/rust-lang/crates.io-index" 5931checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 5932 5933[[package]] 5934name = "tungstenite" 5935version = "0.26.2" 5936source = "registry+https://github.com/rust-lang/crates.io-index" 5937checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" 5938dependencies = [ 5939 "bytes", 5940 "data-encoding", 5941 "http", 5942 "httparse", 5943 "log", 5944 "rand 0.9.1", 5945 "sha1", 5946 "thiserror 2.0.12", 5947 "utf-8", 5948] 5949 5950[[package]] 5951name = "turn" 5952version = "0.10.0" 5953source = "registry+https://github.com/rust-lang/crates.io-index" 5954checksum = "3f5aea1116456e1da71c45586b87c72e3b43164fbf435eb93ff6aa475416a9a4" 5955dependencies = [ 5956 "async-trait", 5957 "base64 0.22.1", 5958 "futures", 5959 "log", 5960 "md-5", 5961 "portable-atomic", 5962 "rand 0.8.5", 5963 "ring", 5964 "stun", 5965 "thiserror 1.0.69", 5966 "tokio", 5967 "tokio-util", 5968 "webrtc-util", 5969] 5970 5971[[package]] 5972name = "typeid" 5973version = "1.0.3" 5974source = "registry+https://github.com/rust-lang/crates.io-index" 5975checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 5976 5977[[package]] 5978name = "typenum" 5979version = "1.18.0" 5980source = "registry+https://github.com/rust-lang/crates.io-index" 5981checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 5982 5983[[package]] 5984name = "uds_windows" 5985version = "1.1.0" 5986source = "registry+https://github.com/rust-lang/crates.io-index" 5987checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" 5988dependencies = [ 5989 "memoffset 0.9.1", 5990 "tempfile", 5991 "winapi", 5992] 5993 5994[[package]] 5995name = "unic-char-property" 5996version = "0.9.0" 5997source = "registry+https://github.com/rust-lang/crates.io-index" 5998checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 5999dependencies = [ 6000 "unic-char-range", 6001] 6002 6003[[package]] 6004name = "unic-char-range" 6005version = "0.9.0" 6006source = "registry+https://github.com/rust-lang/crates.io-index" 6007checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 6008 6009[[package]] 6010name = "unic-common" 6011version = "0.9.0" 6012source = "registry+https://github.com/rust-lang/crates.io-index" 6013checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 6014 6015[[package]] 6016name = "unic-ucd-ident" 6017version = "0.9.0" 6018source = "registry+https://github.com/rust-lang/crates.io-index" 6019checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" 6020dependencies = [ 6021 "unic-char-property", 6022 "unic-char-range", 6023 "unic-ucd-version", 6024] 6025 6026[[package]] 6027name = "unic-ucd-version" 6028version = "0.9.0" 6029source = "registry+https://github.com/rust-lang/crates.io-index" 6030checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 6031dependencies = [ 6032 "unic-common", 6033] 6034 6035[[package]] 6036name = "unicode-ident" 6037version = "1.0.18" 6038source = "registry+https://github.com/rust-lang/crates.io-index" 6039checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 6040 6041[[package]] 6042name = "unicode-segmentation" 6043version = "1.12.0" 6044source = "registry+https://github.com/rust-lang/crates.io-index" 6045checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 6046 6047[[package]] 6048name = "unicode-xid" 6049version = "0.2.6" 6050source = "registry+https://github.com/rust-lang/crates.io-index" 6051checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 6052 6053[[package]] 6054name = "universal-hash" 6055version = "0.5.1" 6056source = "registry+https://github.com/rust-lang/crates.io-index" 6057checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 6058dependencies = [ 6059 "crypto-common", 6060 "subtle", 6061] 6062 6063[[package]] 6064name = "untrusted" 6065version = "0.9.0" 6066source = "registry+https://github.com/rust-lang/crates.io-index" 6067checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 6068 6069[[package]] 6070name = "url" 6071version = "2.5.4" 6072source = "registry+https://github.com/rust-lang/crates.io-index" 6073checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 6074dependencies = [ 6075 "form_urlencoded", 6076 "idna", 6077 "percent-encoding", 6078 "serde", 6079] 6080 6081[[package]] 6082name = "urlpattern" 6083version = "0.3.0" 6084source = "registry+https://github.com/rust-lang/crates.io-index" 6085checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" 6086dependencies = [ 6087 "regex", 6088 "serde", 6089 "unic-ucd-ident", 6090 "url", 6091] 6092 6093[[package]] 6094name = "utf-8" 6095version = "0.7.6" 6096source = "registry+https://github.com/rust-lang/crates.io-index" 6097checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 6098 6099[[package]] 6100name = "utf8-width" 6101version = "0.1.7" 6102source = "registry+https://github.com/rust-lang/crates.io-index" 6103checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 6104 6105[[package]] 6106name = "utf8_iter" 6107version = "1.0.4" 6108source = "registry+https://github.com/rust-lang/crates.io-index" 6109checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 6110 6111[[package]] 6112name = "utf8parse" 6113version = "0.2.2" 6114source = "registry+https://github.com/rust-lang/crates.io-index" 6115checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 6116 6117[[package]] 6118name = "uuid" 6119version = "1.17.0" 6120source = "registry+https://github.com/rust-lang/crates.io-index" 6121checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" 6122dependencies = [ 6123 "getrandom 0.3.3", 6124 "js-sys", 6125 "serde", 6126 "wasm-bindgen", 6127] 6128 6129[[package]] 6130name = "value-bag" 6131version = "1.11.1" 6132source = "registry+https://github.com/rust-lang/crates.io-index" 6133checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5" 6134 6135[[package]] 6136name = "version-compare" 6137version = "0.2.0" 6138source = "registry+https://github.com/rust-lang/crates.io-index" 6139checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 6140 6141[[package]] 6142name = "version_check" 6143version = "0.9.5" 6144source = "registry+https://github.com/rust-lang/crates.io-index" 6145checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 6146 6147[[package]] 6148name = "vswhom" 6149version = "0.1.0" 6150source = "registry+https://github.com/rust-lang/crates.io-index" 6151checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" 6152dependencies = [ 6153 "libc", 6154 "vswhom-sys", 6155] 6156 6157[[package]] 6158name = "vswhom-sys" 6159version = "0.1.3" 6160source = "registry+https://github.com/rust-lang/crates.io-index" 6161checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" 6162dependencies = [ 6163 "cc", 6164 "libc", 6165] 6166 6167[[package]] 6168name = "waitgroup" 6169version = "0.1.2" 6170source = "registry+https://github.com/rust-lang/crates.io-index" 6171checksum = "d1f50000a783467e6c0200f9d10642f4bc424e39efc1b770203e88b488f79292" 6172dependencies = [ 6173 "atomic-waker", 6174] 6175 6176[[package]] 6177name = "walkdir" 6178version = "2.5.0" 6179source = "registry+https://github.com/rust-lang/crates.io-index" 6180checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 6181dependencies = [ 6182 "same-file", 6183 "winapi-util", 6184] 6185 6186[[package]] 6187name = "want" 6188version = "0.3.1" 6189source = "registry+https://github.com/rust-lang/crates.io-index" 6190checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 6191dependencies = [ 6192 "try-lock", 6193] 6194 6195[[package]] 6196name = "wasi" 6197version = "0.9.0+wasi-snapshot-preview1" 6198source = "registry+https://github.com/rust-lang/crates.io-index" 6199checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 6200 6201[[package]] 6202name = "wasi" 6203version = "0.11.1+wasi-snapshot-preview1" 6204source = "registry+https://github.com/rust-lang/crates.io-index" 6205checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 6206 6207[[package]] 6208name = "wasi" 6209version = "0.14.2+wasi-0.2.4" 6210source = "registry+https://github.com/rust-lang/crates.io-index" 6211checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 6212dependencies = [ 6213 "wit-bindgen-rt", 6214] 6215 6216[[package]] 6217name = "wasm-bindgen" 6218version = "0.2.100" 6219source = "registry+https://github.com/rust-lang/crates.io-index" 6220checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 6221dependencies = [ 6222 "cfg-if", 6223 "once_cell", 6224 "rustversion", 6225 "wasm-bindgen-macro", 6226] 6227 6228[[package]] 6229name = "wasm-bindgen-backend" 6230version = "0.2.100" 6231source = "registry+https://github.com/rust-lang/crates.io-index" 6232checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 6233dependencies = [ 6234 "bumpalo", 6235 "log", 6236 "proc-macro2", 6237 "quote", 6238 "syn 2.0.103", 6239 "wasm-bindgen-shared", 6240] 6241 6242[[package]] 6243name = "wasm-bindgen-futures" 6244version = "0.4.50" 6245source = "registry+https://github.com/rust-lang/crates.io-index" 6246checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 6247dependencies = [ 6248 "cfg-if", 6249 "js-sys", 6250 "once_cell", 6251 "wasm-bindgen", 6252 "web-sys", 6253] 6254 6255[[package]] 6256name = "wasm-bindgen-macro" 6257version = "0.2.100" 6258source = "registry+https://github.com/rust-lang/crates.io-index" 6259checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 6260dependencies = [ 6261 "quote", 6262 "wasm-bindgen-macro-support", 6263] 6264 6265[[package]] 6266name = "wasm-bindgen-macro-support" 6267version = "0.2.100" 6268source = "registry+https://github.com/rust-lang/crates.io-index" 6269checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 6270dependencies = [ 6271 "proc-macro2", 6272 "quote", 6273 "syn 2.0.103", 6274 "wasm-bindgen-backend", 6275 "wasm-bindgen-shared", 6276] 6277 6278[[package]] 6279name = "wasm-bindgen-shared" 6280version = "0.2.100" 6281source = "registry+https://github.com/rust-lang/crates.io-index" 6282checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 6283dependencies = [ 6284 "unicode-ident", 6285] 6286 6287[[package]] 6288name = "wasm-streams" 6289version = "0.4.2" 6290source = "registry+https://github.com/rust-lang/crates.io-index" 6291checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 6292dependencies = [ 6293 "futures-util", 6294 "js-sys", 6295 "wasm-bindgen", 6296 "wasm-bindgen-futures", 6297 "web-sys", 6298] 6299 6300[[package]] 6301name = "web-sys" 6302version = "0.3.77" 6303source = "registry+https://github.com/rust-lang/crates.io-index" 6304checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 6305dependencies = [ 6306 "js-sys", 6307 "wasm-bindgen", 6308] 6309 6310[[package]] 6311name = "webkit2gtk" 6312version = "2.0.1" 6313source = "registry+https://github.com/rust-lang/crates.io-index" 6314checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" 6315dependencies = [ 6316 "bitflags 1.3.2", 6317 "cairo-rs", 6318 "gdk", 6319 "gdk-sys", 6320 "gio", 6321 "gio-sys", 6322 "glib", 6323 "glib-sys", 6324 "gobject-sys", 6325 "gtk", 6326 "gtk-sys", 6327 "javascriptcore-rs", 6328 "libc", 6329 "once_cell", 6330 "soup3", 6331 "webkit2gtk-sys", 6332] 6333 6334[[package]] 6335name = "webkit2gtk-sys" 6336version = "2.0.1" 6337source = "registry+https://github.com/rust-lang/crates.io-index" 6338checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" 6339dependencies = [ 6340 "bitflags 1.3.2", 6341 "cairo-sys-rs", 6342 "gdk-sys", 6343 "gio-sys", 6344 "glib-sys", 6345 "gobject-sys", 6346 "gtk-sys", 6347 "javascriptcore-rs-sys", 6348 "libc", 6349 "pkg-config", 6350 "soup3-sys", 6351 "system-deps", 6352] 6353 6354[[package]] 6355name = "webpki" 6356version = "0.22.4" 6357source = "registry+https://github.com/rust-lang/crates.io-index" 6358checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" 6359dependencies = [ 6360 "ring", 6361 "untrusted", 6362] 6363 6364[[package]] 6365name = "webpki-roots" 6366version = "0.22.6" 6367source = "registry+https://github.com/rust-lang/crates.io-index" 6368checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 6369dependencies = [ 6370 "webpki", 6371] 6372 6373[[package]] 6374name = "webrtc" 6375version = "0.13.0" 6376source = "registry+https://github.com/rust-lang/crates.io-index" 6377checksum = "24bab7195998d605c862772f90a452ba655b90a2f463c850ac032038890e367a" 6378dependencies = [ 6379 "arc-swap", 6380 "async-trait", 6381 "bytes", 6382 "cfg-if", 6383 "hex", 6384 "interceptor", 6385 "lazy_static", 6386 "log", 6387 "portable-atomic", 6388 "rand 0.8.5", 6389 "rcgen", 6390 "regex", 6391 "ring", 6392 "rtcp", 6393 "rtp", 6394 "rustls 0.23.27", 6395 "sdp", 6396 "serde", 6397 "serde_json", 6398 "sha2", 6399 "smol_str", 6400 "stun", 6401 "thiserror 1.0.69", 6402 "time", 6403 "tokio", 6404 "turn", 6405 "url", 6406 "waitgroup", 6407 "webrtc-data", 6408 "webrtc-dtls", 6409 "webrtc-ice", 6410 "webrtc-mdns", 6411 "webrtc-media", 6412 "webrtc-sctp", 6413 "webrtc-srtp", 6414 "webrtc-util", 6415] 6416 6417[[package]] 6418name = "webrtc-data" 6419version = "0.11.0" 6420source = "registry+https://github.com/rust-lang/crates.io-index" 6421checksum = "4e97b932854da633a767eff0cc805425a2222fc6481e96f463e57b015d949d1d" 6422dependencies = [ 6423 "bytes", 6424 "log", 6425 "portable-atomic", 6426 "thiserror 1.0.69", 6427 "tokio", 6428 "webrtc-sctp", 6429 "webrtc-util", 6430] 6431 6432[[package]] 6433name = "webrtc-dtls" 6434version = "0.12.0" 6435source = "registry+https://github.com/rust-lang/crates.io-index" 6436checksum = "5ccbe4d9049390ab52695c3646c1395c877e16c15fb05d3bda8eee0c7351711c" 6437dependencies = [ 6438 "aes", 6439 "aes-gcm", 6440 "async-trait", 6441 "bincode", 6442 "byteorder", 6443 "cbc", 6444 "ccm", 6445 "der-parser", 6446 "hkdf", 6447 "hmac", 6448 "log", 6449 "p256", 6450 "p384", 6451 "portable-atomic", 6452 "rand 0.8.5", 6453 "rand_core 0.6.4", 6454 "rcgen", 6455 "ring", 6456 "rustls 0.23.27", 6457 "sec1", 6458 "serde", 6459 "sha1", 6460 "sha2", 6461 "subtle", 6462 "thiserror 1.0.69", 6463 "tokio", 6464 "webrtc-util", 6465 "x25519-dalek", 6466 "x509-parser", 6467] 6468 6469[[package]] 6470name = "webrtc-ice" 6471version = "0.13.0" 6472source = "registry+https://github.com/rust-lang/crates.io-index" 6473checksum = "eb51bde0d790f109a15bfe4d04f1b56fb51d567da231643cb3f21bb74d678997" 6474dependencies = [ 6475 "arc-swap", 6476 "async-trait", 6477 "crc", 6478 "log", 6479 "portable-atomic", 6480 "rand 0.8.5", 6481 "serde", 6482 "serde_json", 6483 "stun", 6484 "thiserror 1.0.69", 6485 "tokio", 6486 "turn", 6487 "url", 6488 "uuid", 6489 "waitgroup", 6490 "webrtc-mdns", 6491 "webrtc-util", 6492] 6493 6494[[package]] 6495name = "webrtc-mdns" 6496version = "0.9.0" 6497source = "registry+https://github.com/rust-lang/crates.io-index" 6498checksum = "979cc85259c53b7b620803509d10d35e2546fa505d228850cbe3f08765ea6ea8" 6499dependencies = [ 6500 "log", 6501 "socket2", 6502 "thiserror 1.0.69", 6503 "tokio", 6504 "webrtc-util", 6505] 6506 6507[[package]] 6508name = "webrtc-media" 6509version = "0.10.0" 6510source = "registry+https://github.com/rust-lang/crates.io-index" 6511checksum = "80041211deccda758a3e19aa93d6b10bc1d37c9183b519054b40a83691d13810" 6512dependencies = [ 6513 "byteorder", 6514 "bytes", 6515 "rand 0.8.5", 6516 "rtp", 6517 "thiserror 1.0.69", 6518] 6519 6520[[package]] 6521name = "webrtc-sctp" 6522version = "0.12.0" 6523source = "registry+https://github.com/rust-lang/crates.io-index" 6524checksum = "07439c134425d51d2f10907aaf2f815fdfb587dce19fe94a4ae8b5faf2aae5ae" 6525dependencies = [ 6526 "arc-swap", 6527 "async-trait", 6528 "bytes", 6529 "crc", 6530 "log", 6531 "portable-atomic", 6532 "rand 0.8.5", 6533 "thiserror 1.0.69", 6534 "tokio", 6535 "webrtc-util", 6536] 6537 6538[[package]] 6539name = "webrtc-srtp" 6540version = "0.15.0" 6541source = "registry+https://github.com/rust-lang/crates.io-index" 6542checksum = "01e773f79b09b057ffbda6b03fe7b43403b012a240cf8d05d630674c3723b5bb" 6543dependencies = [ 6544 "aead", 6545 "aes", 6546 "aes-gcm", 6547 "byteorder", 6548 "bytes", 6549 "ctr", 6550 "hmac", 6551 "log", 6552 "rtcp", 6553 "rtp", 6554 "sha1", 6555 "subtle", 6556 "thiserror 1.0.69", 6557 "tokio", 6558 "webrtc-util", 6559] 6560 6561[[package]] 6562name = "webrtc-util" 6563version = "0.11.0" 6564source = "registry+https://github.com/rust-lang/crates.io-index" 6565checksum = "64bfb10dbe6d762f80169ae07cf252bafa1f764b9594d140008a0231c0cdce58" 6566dependencies = [ 6567 "async-trait", 6568 "bitflags 1.3.2", 6569 "bytes", 6570 "ipnet", 6571 "lazy_static", 6572 "libc", 6573 "log", 6574 "nix 0.26.4", 6575 "portable-atomic", 6576 "rand 0.8.5", 6577 "thiserror 1.0.69", 6578 "tokio", 6579 "winapi", 6580] 6581 6582[[package]] 6583name = "webview2-com" 6584version = "0.37.0" 6585source = "registry+https://github.com/rust-lang/crates.io-index" 6586checksum = "b542b5cfbd9618c46c2784e4d41ba218c336ac70d44c55e47b251033e7d85601" 6587dependencies = [ 6588 "webview2-com-macros", 6589 "webview2-com-sys", 6590 "windows", 6591 "windows-core", 6592 "windows-implement", 6593 "windows-interface", 6594] 6595 6596[[package]] 6597name = "webview2-com-macros" 6598version = "0.8.0" 6599source = "registry+https://github.com/rust-lang/crates.io-index" 6600checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" 6601dependencies = [ 6602 "proc-macro2", 6603 "quote", 6604 "syn 2.0.103", 6605] 6606 6607[[package]] 6608name = "webview2-com-sys" 6609version = "0.37.0" 6610source = "registry+https://github.com/rust-lang/crates.io-index" 6611checksum = "8ae2d11c4a686e4409659d7891791254cf9286d3cfe0eef54df1523533d22295" 6612dependencies = [ 6613 "thiserror 2.0.12", 6614 "windows", 6615 "windows-core", 6616] 6617 6618[[package]] 6619name = "winapi" 6620version = "0.3.9" 6621source = "registry+https://github.com/rust-lang/crates.io-index" 6622checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 6623dependencies = [ 6624 "winapi-i686-pc-windows-gnu", 6625 "winapi-x86_64-pc-windows-gnu", 6626] 6627 6628[[package]] 6629name = "winapi-i686-pc-windows-gnu" 6630version = "0.4.0" 6631source = "registry+https://github.com/rust-lang/crates.io-index" 6632checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 6633 6634[[package]] 6635name = "winapi-util" 6636version = "0.1.9" 6637source = "registry+https://github.com/rust-lang/crates.io-index" 6638checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 6639dependencies = [ 6640 "windows-sys 0.59.0", 6641] 6642 6643[[package]] 6644name = "winapi-x86_64-pc-windows-gnu" 6645version = "0.4.0" 6646source = "registry+https://github.com/rust-lang/crates.io-index" 6647checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 6648 6649[[package]] 6650name = "window-vibrancy" 6651version = "0.6.0" 6652source = "registry+https://github.com/rust-lang/crates.io-index" 6653checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" 6654dependencies = [ 6655 "objc2 0.6.1", 6656 "objc2-app-kit", 6657 "objc2-core-foundation", 6658 "objc2-foundation 0.3.1", 6659 "raw-window-handle", 6660 "windows-sys 0.59.0", 6661 "windows-version", 6662] 6663 6664[[package]] 6665name = "windows" 6666version = "0.61.3" 6667source = "registry+https://github.com/rust-lang/crates.io-index" 6668checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 6669dependencies = [ 6670 "windows-collections", 6671 "windows-core", 6672 "windows-future", 6673 "windows-link", 6674 "windows-numerics", 6675] 6676 6677[[package]] 6678name = "windows-collections" 6679version = "0.2.0" 6680source = "registry+https://github.com/rust-lang/crates.io-index" 6681checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 6682dependencies = [ 6683 "windows-core", 6684] 6685 6686[[package]] 6687name = "windows-core" 6688version = "0.61.2" 6689source = "registry+https://github.com/rust-lang/crates.io-index" 6690checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 6691dependencies = [ 6692 "windows-implement", 6693 "windows-interface", 6694 "windows-link", 6695 "windows-result", 6696 "windows-strings", 6697] 6698 6699[[package]] 6700name = "windows-future" 6701version = "0.2.1" 6702source = "registry+https://github.com/rust-lang/crates.io-index" 6703checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 6704dependencies = [ 6705 "windows-core", 6706 "windows-link", 6707 "windows-threading", 6708] 6709 6710[[package]] 6711name = "windows-implement" 6712version = "0.60.0" 6713source = "registry+https://github.com/rust-lang/crates.io-index" 6714checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 6715dependencies = [ 6716 "proc-macro2", 6717 "quote", 6718 "syn 2.0.103", 6719] 6720 6721[[package]] 6722name = "windows-interface" 6723version = "0.59.1" 6724source = "registry+https://github.com/rust-lang/crates.io-index" 6725checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 6726dependencies = [ 6727 "proc-macro2", 6728 "quote", 6729 "syn 2.0.103", 6730] 6731 6732[[package]] 6733name = "windows-link" 6734version = "0.1.3" 6735source = "registry+https://github.com/rust-lang/crates.io-index" 6736checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 6737 6738[[package]] 6739name = "windows-numerics" 6740version = "0.2.0" 6741source = "registry+https://github.com/rust-lang/crates.io-index" 6742checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 6743dependencies = [ 6744 "windows-core", 6745 "windows-link", 6746] 6747 6748[[package]] 6749name = "windows-result" 6750version = "0.3.4" 6751source = "registry+https://github.com/rust-lang/crates.io-index" 6752checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 6753dependencies = [ 6754 "windows-link", 6755] 6756 6757[[package]] 6758name = "windows-strings" 6759version = "0.4.2" 6760source = "registry+https://github.com/rust-lang/crates.io-index" 6761checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 6762dependencies = [ 6763 "windows-link", 6764] 6765 6766[[package]] 6767name = "windows-sys" 6768version = "0.45.0" 6769source = "registry+https://github.com/rust-lang/crates.io-index" 6770checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 6771dependencies = [ 6772 "windows-targets 0.42.2", 6773] 6774 6775[[package]] 6776name = "windows-sys" 6777version = "0.52.0" 6778source = "registry+https://github.com/rust-lang/crates.io-index" 6779checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6780dependencies = [ 6781 "windows-targets 0.52.6", 6782] 6783 6784[[package]] 6785name = "windows-sys" 6786version = "0.59.0" 6787source = "registry+https://github.com/rust-lang/crates.io-index" 6788checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 6789dependencies = [ 6790 "windows-targets 0.52.6", 6791] 6792 6793[[package]] 6794name = "windows-sys" 6795version = "0.60.2" 6796source = "registry+https://github.com/rust-lang/crates.io-index" 6797checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 6798dependencies = [ 6799 "windows-targets 0.53.2", 6800] 6801 6802[[package]] 6803name = "windows-targets" 6804version = "0.42.2" 6805source = "registry+https://github.com/rust-lang/crates.io-index" 6806checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 6807dependencies = [ 6808 "windows_aarch64_gnullvm 0.42.2", 6809 "windows_aarch64_msvc 0.42.2", 6810 "windows_i686_gnu 0.42.2", 6811 "windows_i686_msvc 0.42.2", 6812 "windows_x86_64_gnu 0.42.2", 6813 "windows_x86_64_gnullvm 0.42.2", 6814 "windows_x86_64_msvc 0.42.2", 6815] 6816 6817[[package]] 6818name = "windows-targets" 6819version = "0.52.6" 6820source = "registry+https://github.com/rust-lang/crates.io-index" 6821checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 6822dependencies = [ 6823 "windows_aarch64_gnullvm 0.52.6", 6824 "windows_aarch64_msvc 0.52.6", 6825 "windows_i686_gnu 0.52.6", 6826 "windows_i686_gnullvm 0.52.6", 6827 "windows_i686_msvc 0.52.6", 6828 "windows_x86_64_gnu 0.52.6", 6829 "windows_x86_64_gnullvm 0.52.6", 6830 "windows_x86_64_msvc 0.52.6", 6831] 6832 6833[[package]] 6834name = "windows-targets" 6835version = "0.53.2" 6836source = "registry+https://github.com/rust-lang/crates.io-index" 6837checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" 6838dependencies = [ 6839 "windows_aarch64_gnullvm 0.53.0", 6840 "windows_aarch64_msvc 0.53.0", 6841 "windows_i686_gnu 0.53.0", 6842 "windows_i686_gnullvm 0.53.0", 6843 "windows_i686_msvc 0.53.0", 6844 "windows_x86_64_gnu 0.53.0", 6845 "windows_x86_64_gnullvm 0.53.0", 6846 "windows_x86_64_msvc 0.53.0", 6847] 6848 6849[[package]] 6850name = "windows-threading" 6851version = "0.1.0" 6852source = "registry+https://github.com/rust-lang/crates.io-index" 6853checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 6854dependencies = [ 6855 "windows-link", 6856] 6857 6858[[package]] 6859name = "windows-version" 6860version = "0.1.4" 6861source = "registry+https://github.com/rust-lang/crates.io-index" 6862checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c" 6863dependencies = [ 6864 "windows-link", 6865] 6866 6867[[package]] 6868name = "windows_aarch64_gnullvm" 6869version = "0.42.2" 6870source = "registry+https://github.com/rust-lang/crates.io-index" 6871checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 6872 6873[[package]] 6874name = "windows_aarch64_gnullvm" 6875version = "0.52.6" 6876source = "registry+https://github.com/rust-lang/crates.io-index" 6877checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 6878 6879[[package]] 6880name = "windows_aarch64_gnullvm" 6881version = "0.53.0" 6882source = "registry+https://github.com/rust-lang/crates.io-index" 6883checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 6884 6885[[package]] 6886name = "windows_aarch64_msvc" 6887version = "0.42.2" 6888source = "registry+https://github.com/rust-lang/crates.io-index" 6889checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 6890 6891[[package]] 6892name = "windows_aarch64_msvc" 6893version = "0.52.6" 6894source = "registry+https://github.com/rust-lang/crates.io-index" 6895checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 6896 6897[[package]] 6898name = "windows_aarch64_msvc" 6899version = "0.53.0" 6900source = "registry+https://github.com/rust-lang/crates.io-index" 6901checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 6902 6903[[package]] 6904name = "windows_i686_gnu" 6905version = "0.42.2" 6906source = "registry+https://github.com/rust-lang/crates.io-index" 6907checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 6908 6909[[package]] 6910name = "windows_i686_gnu" 6911version = "0.52.6" 6912source = "registry+https://github.com/rust-lang/crates.io-index" 6913checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 6914 6915[[package]] 6916name = "windows_i686_gnu" 6917version = "0.53.0" 6918source = "registry+https://github.com/rust-lang/crates.io-index" 6919checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 6920 6921[[package]] 6922name = "windows_i686_gnullvm" 6923version = "0.52.6" 6924source = "registry+https://github.com/rust-lang/crates.io-index" 6925checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 6926 6927[[package]] 6928name = "windows_i686_gnullvm" 6929version = "0.53.0" 6930source = "registry+https://github.com/rust-lang/crates.io-index" 6931checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 6932 6933[[package]] 6934name = "windows_i686_msvc" 6935version = "0.42.2" 6936source = "registry+https://github.com/rust-lang/crates.io-index" 6937checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 6938 6939[[package]] 6940name = "windows_i686_msvc" 6941version = "0.52.6" 6942source = "registry+https://github.com/rust-lang/crates.io-index" 6943checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 6944 6945[[package]] 6946name = "windows_i686_msvc" 6947version = "0.53.0" 6948source = "registry+https://github.com/rust-lang/crates.io-index" 6949checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 6950 6951[[package]] 6952name = "windows_x86_64_gnu" 6953version = "0.42.2" 6954source = "registry+https://github.com/rust-lang/crates.io-index" 6955checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 6956 6957[[package]] 6958name = "windows_x86_64_gnu" 6959version = "0.52.6" 6960source = "registry+https://github.com/rust-lang/crates.io-index" 6961checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 6962 6963[[package]] 6964name = "windows_x86_64_gnu" 6965version = "0.53.0" 6966source = "registry+https://github.com/rust-lang/crates.io-index" 6967checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 6968 6969[[package]] 6970name = "windows_x86_64_gnullvm" 6971version = "0.42.2" 6972source = "registry+https://github.com/rust-lang/crates.io-index" 6973checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 6974 6975[[package]] 6976name = "windows_x86_64_gnullvm" 6977version = "0.52.6" 6978source = "registry+https://github.com/rust-lang/crates.io-index" 6979checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 6980 6981[[package]] 6982name = "windows_x86_64_gnullvm" 6983version = "0.53.0" 6984source = "registry+https://github.com/rust-lang/crates.io-index" 6985checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 6986 6987[[package]] 6988name = "windows_x86_64_msvc" 6989version = "0.42.2" 6990source = "registry+https://github.com/rust-lang/crates.io-index" 6991checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 6992 6993[[package]] 6994name = "windows_x86_64_msvc" 6995version = "0.52.6" 6996source = "registry+https://github.com/rust-lang/crates.io-index" 6997checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 6998 6999[[package]] 7000name = "windows_x86_64_msvc" 7001version = "0.53.0" 7002source = "registry+https://github.com/rust-lang/crates.io-index" 7003checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 7004 7005[[package]] 7006name = "winnow" 7007version = "0.5.40" 7008source = "registry+https://github.com/rust-lang/crates.io-index" 7009checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 7010dependencies = [ 7011 "memchr", 7012] 7013 7014[[package]] 7015name = "winnow" 7016version = "0.7.11" 7017source = "registry+https://github.com/rust-lang/crates.io-index" 7018checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd" 7019dependencies = [ 7020 "memchr", 7021] 7022 7023[[package]] 7024name = "winreg" 7025version = "0.55.0" 7026source = "registry+https://github.com/rust-lang/crates.io-index" 7027checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" 7028dependencies = [ 7029 "cfg-if", 7030 "windows-sys 0.59.0", 7031] 7032 7033[[package]] 7034name = "wit-bindgen-rt" 7035version = "0.39.0" 7036source = "registry+https://github.com/rust-lang/crates.io-index" 7037checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 7038dependencies = [ 7039 "bitflags 2.9.1", 7040] 7041 7042[[package]] 7043name = "writeable" 7044version = "0.6.1" 7045source = "registry+https://github.com/rust-lang/crates.io-index" 7046checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 7047 7048[[package]] 7049name = "wry" 7050version = "0.51.2" 7051source = "registry+https://github.com/rust-lang/crates.io-index" 7052checksum = "c886a0a9d2a94fd90cfa1d929629b79cfefb1546e2c7430c63a47f0664c0e4e2" 7053dependencies = [ 7054 "base64 0.22.1", 7055 "block2 0.6.1", 7056 "cookie", 7057 "crossbeam-channel", 7058 "dpi", 7059 "dunce", 7060 "gdkx11", 7061 "gtk", 7062 "html5ever", 7063 "http", 7064 "javascriptcore-rs", 7065 "jni", 7066 "kuchikiki", 7067 "libc", 7068 "ndk", 7069 "objc2 0.6.1", 7070 "objc2-app-kit", 7071 "objc2-core-foundation", 7072 "objc2-foundation 0.3.1", 7073 "objc2-ui-kit", 7074 "objc2-web-kit", 7075 "once_cell", 7076 "percent-encoding", 7077 "raw-window-handle", 7078 "sha2", 7079 "soup3", 7080 "tao-macros", 7081 "thiserror 2.0.12", 7082 "url", 7083 "webkit2gtk", 7084 "webkit2gtk-sys", 7085 "webview2-com", 7086 "windows", 7087 "windows-core", 7088 "windows-version", 7089 "x11-dl", 7090] 7091 7092[[package]] 7093name = "ws_stream_wasm" 7094version = "0.7.5" 7095source = "registry+https://github.com/rust-lang/crates.io-index" 7096checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc" 7097dependencies = [ 7098 "async_io_stream", 7099 "futures", 7100 "js-sys", 7101 "log", 7102 "pharos", 7103 "rustc_version", 7104 "send_wrapper 0.6.0", 7105 "thiserror 2.0.12", 7106 "wasm-bindgen", 7107 "wasm-bindgen-futures", 7108 "web-sys", 7109] 7110 7111[[package]] 7112name = "wyz" 7113version = "0.5.1" 7114source = "registry+https://github.com/rust-lang/crates.io-index" 7115checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 7116dependencies = [ 7117 "tap", 7118] 7119 7120[[package]] 7121name = "x11" 7122version = "2.21.0" 7123source = "registry+https://github.com/rust-lang/crates.io-index" 7124checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 7125dependencies = [ 7126 "libc", 7127 "pkg-config", 7128] 7129 7130[[package]] 7131name = "x11-dl" 7132version = "2.21.0" 7133source = "registry+https://github.com/rust-lang/crates.io-index" 7134checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 7135dependencies = [ 7136 "libc", 7137 "once_cell", 7138 "pkg-config", 7139] 7140 7141[[package]] 7142name = "x25519-dalek" 7143version = "2.0.1" 7144source = "registry+https://github.com/rust-lang/crates.io-index" 7145checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 7146dependencies = [ 7147 "curve25519-dalek", 7148 "rand_core 0.6.4", 7149 "serde", 7150 "zeroize", 7151] 7152 7153[[package]] 7154name = "x509-parser" 7155version = "0.16.0" 7156source = "registry+https://github.com/rust-lang/crates.io-index" 7157checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" 7158dependencies = [ 7159 "asn1-rs", 7160 "data-encoding", 7161 "der-parser", 7162 "lazy_static", 7163 "nom", 7164 "oid-registry", 7165 "ring", 7166 "rusticata-macros", 7167 "thiserror 1.0.69", 7168 "time", 7169] 7170 7171[[package]] 7172name = "yasna" 7173version = "0.5.2" 7174source = "registry+https://github.com/rust-lang/crates.io-index" 7175checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 7176dependencies = [ 7177 "time", 7178] 7179 7180[[package]] 7181name = "yoke" 7182version = "0.8.0" 7183source = "registry+https://github.com/rust-lang/crates.io-index" 7184checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 7185dependencies = [ 7186 "serde", 7187 "stable_deref_trait", 7188 "yoke-derive", 7189 "zerofrom", 7190] 7191 7192[[package]] 7193name = "yoke-derive" 7194version = "0.8.0" 7195source = "registry+https://github.com/rust-lang/crates.io-index" 7196checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 7197dependencies = [ 7198 "proc-macro2", 7199 "quote", 7200 "syn 2.0.103", 7201 "synstructure", 7202] 7203 7204[[package]] 7205name = "zbus" 7206version = "5.7.1" 7207source = "registry+https://github.com/rust-lang/crates.io-index" 7208checksum = "d3a7c7cee313d044fca3f48fa782cb750c79e4ca76ba7bc7718cd4024cdf6f68" 7209dependencies = [ 7210 "async-broadcast", 7211 "async-executor", 7212 "async-io", 7213 "async-lock", 7214 "async-process", 7215 "async-recursion", 7216 "async-task", 7217 "async-trait", 7218 "blocking", 7219 "enumflags2", 7220 "event-listener 5.4.0", 7221 "futures-core", 7222 "futures-lite", 7223 "hex", 7224 "nix 0.30.1", 7225 "ordered-stream", 7226 "serde", 7227 "serde_repr", 7228 "tracing", 7229 "uds_windows", 7230 "windows-sys 0.59.0", 7231 "winnow 0.7.11", 7232 "zbus_macros", 7233 "zbus_names", 7234 "zvariant", 7235] 7236 7237[[package]] 7238name = "zbus_macros" 7239version = "5.7.1" 7240source = "registry+https://github.com/rust-lang/crates.io-index" 7241checksum = "a17e7e5eec1550f747e71a058df81a9a83813ba0f6a95f39c4e218bdc7ba366a" 7242dependencies = [ 7243 "proc-macro-crate 3.3.0", 7244 "proc-macro2", 7245 "quote", 7246 "syn 2.0.103", 7247 "zbus_names", 7248 "zvariant", 7249 "zvariant_utils", 7250] 7251 7252[[package]] 7253name = "zbus_names" 7254version = "4.2.0" 7255source = "registry+https://github.com/rust-lang/crates.io-index" 7256checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97" 7257dependencies = [ 7258 "serde", 7259 "static_assertions", 7260 "winnow 0.7.11", 7261 "zvariant", 7262] 7263 7264[[package]] 7265name = "zerocopy" 7266version = "0.8.25" 7267source = "registry+https://github.com/rust-lang/crates.io-index" 7268checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" 7269dependencies = [ 7270 "zerocopy-derive", 7271] 7272 7273[[package]] 7274name = "zerocopy-derive" 7275version = "0.8.25" 7276source = "registry+https://github.com/rust-lang/crates.io-index" 7277checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" 7278dependencies = [ 7279 "proc-macro2", 7280 "quote", 7281 "syn 2.0.103", 7282] 7283 7284[[package]] 7285name = "zerofrom" 7286version = "0.1.6" 7287source = "registry+https://github.com/rust-lang/crates.io-index" 7288checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 7289dependencies = [ 7290 "zerofrom-derive", 7291] 7292 7293[[package]] 7294name = "zerofrom-derive" 7295version = "0.1.6" 7296source = "registry+https://github.com/rust-lang/crates.io-index" 7297checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 7298dependencies = [ 7299 "proc-macro2", 7300 "quote", 7301 "syn 2.0.103", 7302 "synstructure", 7303] 7304 7305[[package]] 7306name = "zeroize" 7307version = "1.8.1" 7308source = "registry+https://github.com/rust-lang/crates.io-index" 7309checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 7310dependencies = [ 7311 "zeroize_derive", 7312] 7313 7314[[package]] 7315name = "zeroize_derive" 7316version = "1.4.2" 7317source = "registry+https://github.com/rust-lang/crates.io-index" 7318checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 7319dependencies = [ 7320 "proc-macro2", 7321 "quote", 7322 "syn 2.0.103", 7323] 7324 7325[[package]] 7326name = "zerotrie" 7327version = "0.2.2" 7328source = "registry+https://github.com/rust-lang/crates.io-index" 7329checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 7330dependencies = [ 7331 "displaydoc", 7332 "yoke", 7333 "zerofrom", 7334] 7335 7336[[package]] 7337name = "zerovec" 7338version = "0.11.2" 7339source = "registry+https://github.com/rust-lang/crates.io-index" 7340checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" 7341dependencies = [ 7342 "yoke", 7343 "zerofrom", 7344 "zerovec-derive", 7345] 7346 7347[[package]] 7348name = "zerovec-derive" 7349version = "0.11.1" 7350source = "registry+https://github.com/rust-lang/crates.io-index" 7351checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 7352dependencies = [ 7353 "proc-macro2", 7354 "quote", 7355 "syn 2.0.103", 7356] 7357 7358[[package]] 7359name = "zvariant" 7360version = "5.5.3" 7361source = "registry+https://github.com/rust-lang/crates.io-index" 7362checksum = "9d30786f75e393ee63a21de4f9074d4c038d52c5b1bb4471f955db249f9dffb1" 7363dependencies = [ 7364 "endi", 7365 "enumflags2", 7366 "serde", 7367 "winnow 0.7.11", 7368 "zvariant_derive", 7369 "zvariant_utils", 7370] 7371 7372[[package]] 7373name = "zvariant_derive" 7374version = "5.5.3" 7375source = "registry+https://github.com/rust-lang/crates.io-index" 7376checksum = "75fda702cd42d735ccd48117b1630432219c0e9616bf6cb0f8350844ee4d9580" 7377dependencies = [ 7378 "proc-macro-crate 3.3.0", 7379 "proc-macro2", 7380 "quote", 7381 "syn 2.0.103", 7382 "zvariant_utils", 7383] 7384 7385[[package]] 7386name = "zvariant_utils" 7387version = "3.2.0" 7388source = "registry+https://github.com/rust-lang/crates.io-index" 7389checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34" 7390dependencies = [ 7391 "proc-macro2", 7392 "quote", 7393 "serde", 7394 "static_assertions", 7395 "syn 2.0.103", 7396 "winnow 0.7.11", 7397]