A small rust lib for getting live heartrate data
at main 1792 lines 46 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 = "anyhow" 7version = "1.0.100" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 10 11[[package]] 12name = "async-tungstenite" 13version = "0.31.0" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "ee88b4c88ac8c9ea446ad43498955750a4bbe64c4392f21ccfe5d952865e318f" 16dependencies = [ 17 "atomic-waker", 18 "futures-core", 19 "futures-io", 20 "futures-task", 21 "futures-util", 22 "log", 23 "pin-project-lite", 24 "tungstenite", 25] 26 27[[package]] 28name = "atomic-waker" 29version = "1.1.2" 30source = "registry+https://github.com/rust-lang/crates.io-index" 31checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 32 33[[package]] 34name = "base64" 35version = "0.22.1" 36source = "registry+https://github.com/rust-lang/crates.io-index" 37checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 38 39[[package]] 40name = "bitflags" 41version = "2.10.0" 42source = "registry+https://github.com/rust-lang/crates.io-index" 43checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 44 45[[package]] 46name = "block-buffer" 47version = "0.10.4" 48source = "registry+https://github.com/rust-lang/crates.io-index" 49checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 50dependencies = [ 51 "generic-array", 52] 53 54[[package]] 55name = "bumpalo" 56version = "3.19.1" 57source = "registry+https://github.com/rust-lang/crates.io-index" 58checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 59 60[[package]] 61name = "bytes" 62version = "1.11.0" 63source = "registry+https://github.com/rust-lang/crates.io-index" 64checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 65 66[[package]] 67name = "cc" 68version = "1.2.53" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932" 71dependencies = [ 72 "find-msvc-tools", 73 "shlex", 74] 75 76[[package]] 77name = "cfg-if" 78version = "1.0.4" 79source = "registry+https://github.com/rust-lang/crates.io-index" 80checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 81 82[[package]] 83name = "core-foundation" 84version = "0.9.4" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 87dependencies = [ 88 "core-foundation-sys", 89 "libc", 90] 91 92[[package]] 93name = "core-foundation-sys" 94version = "0.8.7" 95source = "registry+https://github.com/rust-lang/crates.io-index" 96checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 97 98[[package]] 99name = "cpufeatures" 100version = "0.2.17" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 103dependencies = [ 104 "libc", 105] 106 107[[package]] 108name = "crypto-common" 109version = "0.1.7" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 112dependencies = [ 113 "generic-array", 114 "typenum", 115] 116 117[[package]] 118name = "data-encoding" 119version = "2.10.0" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" 122 123[[package]] 124name = "digest" 125version = "0.10.7" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 128dependencies = [ 129 "block-buffer", 130 "crypto-common", 131] 132 133[[package]] 134name = "displaydoc" 135version = "0.2.5" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 138dependencies = [ 139 "proc-macro2", 140 "quote", 141 "syn", 142] 143 144[[package]] 145name = "encoding_rs" 146version = "0.8.35" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 149dependencies = [ 150 "cfg-if", 151] 152 153[[package]] 154name = "equivalent" 155version = "1.0.2" 156source = "registry+https://github.com/rust-lang/crates.io-index" 157checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 158 159[[package]] 160name = "errno" 161version = "0.3.14" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 164dependencies = [ 165 "libc", 166 "windows-sys 0.52.0", 167] 168 169[[package]] 170name = "fastrand" 171version = "2.3.0" 172source = "registry+https://github.com/rust-lang/crates.io-index" 173checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 174 175[[package]] 176name = "find-msvc-tools" 177version = "0.1.8" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db" 180 181[[package]] 182name = "fnv" 183version = "1.0.7" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 186 187[[package]] 188name = "foreign-types" 189version = "0.3.2" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 192dependencies = [ 193 "foreign-types-shared", 194] 195 196[[package]] 197name = "foreign-types-shared" 198version = "0.1.1" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 201 202[[package]] 203name = "form_urlencoded" 204version = "1.2.2" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 207dependencies = [ 208 "percent-encoding", 209] 210 211[[package]] 212name = "futures-channel" 213version = "0.3.31" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 216dependencies = [ 217 "futures-core", 218] 219 220[[package]] 221name = "futures-core" 222version = "0.3.31" 223source = "registry+https://github.com/rust-lang/crates.io-index" 224checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 225 226[[package]] 227name = "futures-io" 228version = "0.3.31" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 231 232[[package]] 233name = "futures-macro" 234version = "0.3.31" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 237dependencies = [ 238 "proc-macro2", 239 "quote", 240 "syn", 241] 242 243[[package]] 244name = "futures-sink" 245version = "0.3.31" 246source = "registry+https://github.com/rust-lang/crates.io-index" 247checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 248 249[[package]] 250name = "futures-task" 251version = "0.3.31" 252source = "registry+https://github.com/rust-lang/crates.io-index" 253checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 254 255[[package]] 256name = "futures-util" 257version = "0.3.31" 258source = "registry+https://github.com/rust-lang/crates.io-index" 259checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 260dependencies = [ 261 "futures-core", 262 "futures-macro", 263 "futures-sink", 264 "futures-task", 265 "pin-project-lite", 266 "pin-utils", 267 "slab", 268] 269 270[[package]] 271name = "generic-array" 272version = "0.14.7" 273source = "registry+https://github.com/rust-lang/crates.io-index" 274checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 275dependencies = [ 276 "typenum", 277 "version_check", 278] 279 280[[package]] 281name = "getrandom" 282version = "0.2.17" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 285dependencies = [ 286 "cfg-if", 287 "libc", 288 "wasi", 289] 290 291[[package]] 292name = "getrandom" 293version = "0.3.4" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 296dependencies = [ 297 "cfg-if", 298 "libc", 299 "r-efi", 300 "wasip2", 301] 302 303[[package]] 304name = "h2" 305version = "0.4.13" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" 308dependencies = [ 309 "atomic-waker", 310 "bytes", 311 "fnv", 312 "futures-core", 313 "futures-sink", 314 "http", 315 "indexmap", 316 "slab", 317 "tokio", 318 "tokio-util", 319 "tracing", 320] 321 322[[package]] 323name = "hashbrown" 324version = "0.16.1" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 327 328[[package]] 329name = "http" 330version = "1.4.0" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 333dependencies = [ 334 "bytes", 335 "itoa", 336] 337 338[[package]] 339name = "http-body" 340version = "1.0.1" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 343dependencies = [ 344 "bytes", 345 "http", 346] 347 348[[package]] 349name = "http-body-util" 350version = "0.1.3" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 353dependencies = [ 354 "bytes", 355 "futures-core", 356 "http", 357 "http-body", 358 "pin-project-lite", 359] 360 361[[package]] 362name = "httparse" 363version = "1.10.1" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 366 367[[package]] 368name = "hyper" 369version = "1.8.1" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 372dependencies = [ 373 "atomic-waker", 374 "bytes", 375 "futures-channel", 376 "futures-core", 377 "h2", 378 "http", 379 "http-body", 380 "httparse", 381 "itoa", 382 "pin-project-lite", 383 "pin-utils", 384 "smallvec", 385 "tokio", 386 "want", 387] 388 389[[package]] 390name = "hyper-rustls" 391version = "0.27.7" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 394dependencies = [ 395 "http", 396 "hyper", 397 "hyper-util", 398 "rustls", 399 "rustls-pki-types", 400 "tokio", 401 "tokio-rustls", 402 "tower-service", 403] 404 405[[package]] 406name = "hyper-tls" 407version = "0.6.0" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 410dependencies = [ 411 "bytes", 412 "http-body-util", 413 "hyper", 414 "hyper-util", 415 "native-tls", 416 "tokio", 417 "tokio-native-tls", 418 "tower-service", 419] 420 421[[package]] 422name = "hyper-util" 423version = "0.1.19" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 426dependencies = [ 427 "base64", 428 "bytes", 429 "futures-channel", 430 "futures-core", 431 "futures-util", 432 "http", 433 "http-body", 434 "hyper", 435 "ipnet", 436 "libc", 437 "percent-encoding", 438 "pin-project-lite", 439 "socket2", 440 "system-configuration", 441 "tokio", 442 "tower-service", 443 "tracing", 444 "windows-registry", 445] 446 447[[package]] 448name = "icu_collections" 449version = "2.1.1" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 452dependencies = [ 453 "displaydoc", 454 "potential_utf", 455 "yoke", 456 "zerofrom", 457 "zerovec", 458] 459 460[[package]] 461name = "icu_locale_core" 462version = "2.1.1" 463source = "registry+https://github.com/rust-lang/crates.io-index" 464checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 465dependencies = [ 466 "displaydoc", 467 "litemap", 468 "tinystr", 469 "writeable", 470 "zerovec", 471] 472 473[[package]] 474name = "icu_normalizer" 475version = "2.1.1" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 478dependencies = [ 479 "icu_collections", 480 "icu_normalizer_data", 481 "icu_properties", 482 "icu_provider", 483 "smallvec", 484 "zerovec", 485] 486 487[[package]] 488name = "icu_normalizer_data" 489version = "2.1.1" 490source = "registry+https://github.com/rust-lang/crates.io-index" 491checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 492 493[[package]] 494name = "icu_properties" 495version = "2.1.2" 496source = "registry+https://github.com/rust-lang/crates.io-index" 497checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 498dependencies = [ 499 "icu_collections", 500 "icu_locale_core", 501 "icu_properties_data", 502 "icu_provider", 503 "zerotrie", 504 "zerovec", 505] 506 507[[package]] 508name = "icu_properties_data" 509version = "2.1.2" 510source = "registry+https://github.com/rust-lang/crates.io-index" 511checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 512 513[[package]] 514name = "icu_provider" 515version = "2.1.1" 516source = "registry+https://github.com/rust-lang/crates.io-index" 517checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 518dependencies = [ 519 "displaydoc", 520 "icu_locale_core", 521 "writeable", 522 "yoke", 523 "zerofrom", 524 "zerotrie", 525 "zerovec", 526] 527 528[[package]] 529name = "idna" 530version = "1.1.0" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 533dependencies = [ 534 "idna_adapter", 535 "smallvec", 536 "utf8_iter", 537] 538 539[[package]] 540name = "idna_adapter" 541version = "1.2.1" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 544dependencies = [ 545 "icu_normalizer", 546 "icu_properties", 547] 548 549[[package]] 550name = "indexmap" 551version = "2.13.0" 552source = "registry+https://github.com/rust-lang/crates.io-index" 553checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" 554dependencies = [ 555 "equivalent", 556 "hashbrown", 557] 558 559[[package]] 560name = "ipnet" 561version = "2.11.0" 562source = "registry+https://github.com/rust-lang/crates.io-index" 563checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 564 565[[package]] 566name = "iri-string" 567version = "0.7.10" 568source = "registry+https://github.com/rust-lang/crates.io-index" 569checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" 570dependencies = [ 571 "memchr", 572 "serde", 573] 574 575[[package]] 576name = "itoa" 577version = "1.0.17" 578source = "registry+https://github.com/rust-lang/crates.io-index" 579checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 580 581[[package]] 582name = "js-sys" 583version = "0.3.85" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3" 586dependencies = [ 587 "once_cell", 588 "wasm-bindgen", 589] 590 591[[package]] 592name = "libc" 593version = "0.2.180" 594source = "registry+https://github.com/rust-lang/crates.io-index" 595checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc" 596 597[[package]] 598name = "linux-raw-sys" 599version = "0.11.0" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 602 603[[package]] 604name = "litemap" 605version = "0.8.1" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 608 609[[package]] 610name = "log" 611version = "0.4.29" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 614 615[[package]] 616name = "memchr" 617version = "2.7.6" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 620 621[[package]] 622name = "mime" 623version = "0.3.17" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 626 627[[package]] 628name = "mio" 629version = "1.1.1" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 632dependencies = [ 633 "libc", 634 "wasi", 635 "windows-sys 0.61.2", 636] 637 638[[package]] 639name = "native-tls" 640version = "0.2.14" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 643dependencies = [ 644 "libc", 645 "log", 646 "openssl", 647 "openssl-probe", 648 "openssl-sys", 649 "schannel", 650 "security-framework", 651 "security-framework-sys", 652 "tempfile", 653] 654 655[[package]] 656name = "once_cell" 657version = "1.21.3" 658source = "registry+https://github.com/rust-lang/crates.io-index" 659checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 660 661[[package]] 662name = "openssl" 663version = "0.10.75" 664source = "registry+https://github.com/rust-lang/crates.io-index" 665checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" 666dependencies = [ 667 "bitflags", 668 "cfg-if", 669 "foreign-types", 670 "libc", 671 "once_cell", 672 "openssl-macros", 673 "openssl-sys", 674] 675 676[[package]] 677name = "openssl-macros" 678version = "0.1.1" 679source = "registry+https://github.com/rust-lang/crates.io-index" 680checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 681dependencies = [ 682 "proc-macro2", 683 "quote", 684 "syn", 685] 686 687[[package]] 688name = "openssl-probe" 689version = "0.1.6" 690source = "registry+https://github.com/rust-lang/crates.io-index" 691checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 692 693[[package]] 694name = "openssl-sys" 695version = "0.9.111" 696source = "registry+https://github.com/rust-lang/crates.io-index" 697checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" 698dependencies = [ 699 "cc", 700 "libc", 701 "pkg-config", 702 "vcpkg", 703] 704 705[[package]] 706name = "percent-encoding" 707version = "2.3.2" 708source = "registry+https://github.com/rust-lang/crates.io-index" 709checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 710 711[[package]] 712name = "pin-project-lite" 713version = "0.2.16" 714source = "registry+https://github.com/rust-lang/crates.io-index" 715checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 716 717[[package]] 718name = "pin-utils" 719version = "0.1.0" 720source = "registry+https://github.com/rust-lang/crates.io-index" 721checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 722 723[[package]] 724name = "pkg-config" 725version = "0.3.32" 726source = "registry+https://github.com/rust-lang/crates.io-index" 727checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 728 729[[package]] 730name = "potential_utf" 731version = "0.1.4" 732source = "registry+https://github.com/rust-lang/crates.io-index" 733checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 734dependencies = [ 735 "zerovec", 736] 737 738[[package]] 739name = "ppv-lite86" 740version = "0.2.21" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 743dependencies = [ 744 "zerocopy", 745] 746 747[[package]] 748name = "proc-macro2" 749version = "1.0.105" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7" 752dependencies = [ 753 "unicode-ident", 754] 755 756[[package]] 757name = "pulse-lib" 758version = "0.1.0" 759dependencies = [ 760 "anyhow", 761 "futures-util", 762 "reqwest", 763 "reqwest-websocket", 764 "serde", 765 "serde_json", 766 "tokio", 767] 768 769[[package]] 770name = "quote" 771version = "1.0.43" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" 774dependencies = [ 775 "proc-macro2", 776] 777 778[[package]] 779name = "r-efi" 780version = "5.3.0" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 783 784[[package]] 785name = "rand" 786version = "0.9.2" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 789dependencies = [ 790 "rand_chacha", 791 "rand_core", 792] 793 794[[package]] 795name = "rand_chacha" 796version = "0.9.0" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 799dependencies = [ 800 "ppv-lite86", 801 "rand_core", 802] 803 804[[package]] 805name = "rand_core" 806version = "0.9.5" 807source = "registry+https://github.com/rust-lang/crates.io-index" 808checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 809dependencies = [ 810 "getrandom 0.3.4", 811] 812 813[[package]] 814name = "reqwest" 815version = "0.12.28" 816source = "registry+https://github.com/rust-lang/crates.io-index" 817checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 818dependencies = [ 819 "base64", 820 "bytes", 821 "encoding_rs", 822 "futures-core", 823 "h2", 824 "http", 825 "http-body", 826 "http-body-util", 827 "hyper", 828 "hyper-rustls", 829 "hyper-tls", 830 "hyper-util", 831 "js-sys", 832 "log", 833 "mime", 834 "native-tls", 835 "percent-encoding", 836 "pin-project-lite", 837 "rustls-pki-types", 838 "serde", 839 "serde_json", 840 "serde_urlencoded", 841 "sync_wrapper", 842 "tokio", 843 "tokio-native-tls", 844 "tower", 845 "tower-http", 846 "tower-service", 847 "url", 848 "wasm-bindgen", 849 "wasm-bindgen-futures", 850 "web-sys", 851] 852 853[[package]] 854name = "reqwest-websocket" 855version = "0.5.1" 856source = "registry+https://github.com/rust-lang/crates.io-index" 857checksum = "cd5f79b25f7f17a62cc9337108974431a66ae5a723ac0d9fe78ac1cce2027720" 858dependencies = [ 859 "async-tungstenite", 860 "bytes", 861 "futures-util", 862 "reqwest", 863 "thiserror", 864 "tokio", 865 "tokio-util", 866 "tracing", 867 "tungstenite", 868 "web-sys", 869] 870 871[[package]] 872name = "ring" 873version = "0.17.14" 874source = "registry+https://github.com/rust-lang/crates.io-index" 875checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 876dependencies = [ 877 "cc", 878 "cfg-if", 879 "getrandom 0.2.17", 880 "libc", 881 "untrusted", 882 "windows-sys 0.52.0", 883] 884 885[[package]] 886name = "rustix" 887version = "1.1.3" 888source = "registry+https://github.com/rust-lang/crates.io-index" 889checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" 890dependencies = [ 891 "bitflags", 892 "errno", 893 "libc", 894 "linux-raw-sys", 895 "windows-sys 0.52.0", 896] 897 898[[package]] 899name = "rustls" 900version = "0.23.36" 901source = "registry+https://github.com/rust-lang/crates.io-index" 902checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" 903dependencies = [ 904 "once_cell", 905 "rustls-pki-types", 906 "rustls-webpki", 907 "subtle", 908 "zeroize", 909] 910 911[[package]] 912name = "rustls-pki-types" 913version = "1.14.0" 914source = "registry+https://github.com/rust-lang/crates.io-index" 915checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" 916dependencies = [ 917 "zeroize", 918] 919 920[[package]] 921name = "rustls-webpki" 922version = "0.103.9" 923source = "registry+https://github.com/rust-lang/crates.io-index" 924checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" 925dependencies = [ 926 "ring", 927 "rustls-pki-types", 928 "untrusted", 929] 930 931[[package]] 932name = "rustversion" 933version = "1.0.22" 934source = "registry+https://github.com/rust-lang/crates.io-index" 935checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 936 937[[package]] 938name = "ryu" 939version = "1.0.22" 940source = "registry+https://github.com/rust-lang/crates.io-index" 941checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" 942 943[[package]] 944name = "schannel" 945version = "0.1.28" 946source = "registry+https://github.com/rust-lang/crates.io-index" 947checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 948dependencies = [ 949 "windows-sys 0.61.2", 950] 951 952[[package]] 953name = "security-framework" 954version = "2.11.1" 955source = "registry+https://github.com/rust-lang/crates.io-index" 956checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 957dependencies = [ 958 "bitflags", 959 "core-foundation", 960 "core-foundation-sys", 961 "libc", 962 "security-framework-sys", 963] 964 965[[package]] 966name = "security-framework-sys" 967version = "2.15.0" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" 970dependencies = [ 971 "core-foundation-sys", 972 "libc", 973] 974 975[[package]] 976name = "serde" 977version = "1.0.228" 978source = "registry+https://github.com/rust-lang/crates.io-index" 979checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 980dependencies = [ 981 "serde_core", 982 "serde_derive", 983] 984 985[[package]] 986name = "serde_core" 987version = "1.0.228" 988source = "registry+https://github.com/rust-lang/crates.io-index" 989checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 990dependencies = [ 991 "serde_derive", 992] 993 994[[package]] 995name = "serde_derive" 996version = "1.0.228" 997source = "registry+https://github.com/rust-lang/crates.io-index" 998checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 999dependencies = [ 1000 "proc-macro2", 1001 "quote", 1002 "syn", 1003] 1004 1005[[package]] 1006name = "serde_json" 1007version = "1.0.149" 1008source = "registry+https://github.com/rust-lang/crates.io-index" 1009checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 1010dependencies = [ 1011 "itoa", 1012 "memchr", 1013 "serde", 1014 "serde_core", 1015 "zmij", 1016] 1017 1018[[package]] 1019name = "serde_urlencoded" 1020version = "0.7.1" 1021source = "registry+https://github.com/rust-lang/crates.io-index" 1022checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1023dependencies = [ 1024 "form_urlencoded", 1025 "itoa", 1026 "ryu", 1027 "serde", 1028] 1029 1030[[package]] 1031name = "sha1" 1032version = "0.10.6" 1033source = "registry+https://github.com/rust-lang/crates.io-index" 1034checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1035dependencies = [ 1036 "cfg-if", 1037 "cpufeatures", 1038 "digest", 1039] 1040 1041[[package]] 1042name = "shlex" 1043version = "1.3.0" 1044source = "registry+https://github.com/rust-lang/crates.io-index" 1045checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1046 1047[[package]] 1048name = "slab" 1049version = "0.4.11" 1050source = "registry+https://github.com/rust-lang/crates.io-index" 1051checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1052 1053[[package]] 1054name = "smallvec" 1055version = "1.15.1" 1056source = "registry+https://github.com/rust-lang/crates.io-index" 1057checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1058 1059[[package]] 1060name = "socket2" 1061version = "0.6.1" 1062source = "registry+https://github.com/rust-lang/crates.io-index" 1063checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 1064dependencies = [ 1065 "libc", 1066 "windows-sys 0.60.2", 1067] 1068 1069[[package]] 1070name = "stable_deref_trait" 1071version = "1.2.1" 1072source = "registry+https://github.com/rust-lang/crates.io-index" 1073checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 1074 1075[[package]] 1076name = "subtle" 1077version = "2.6.1" 1078source = "registry+https://github.com/rust-lang/crates.io-index" 1079checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1080 1081[[package]] 1082name = "syn" 1083version = "2.0.114" 1084source = "registry+https://github.com/rust-lang/crates.io-index" 1085checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" 1086dependencies = [ 1087 "proc-macro2", 1088 "quote", 1089 "unicode-ident", 1090] 1091 1092[[package]] 1093name = "sync_wrapper" 1094version = "1.0.2" 1095source = "registry+https://github.com/rust-lang/crates.io-index" 1096checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1097dependencies = [ 1098 "futures-core", 1099] 1100 1101[[package]] 1102name = "synstructure" 1103version = "0.13.2" 1104source = "registry+https://github.com/rust-lang/crates.io-index" 1105checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 1106dependencies = [ 1107 "proc-macro2", 1108 "quote", 1109 "syn", 1110] 1111 1112[[package]] 1113name = "system-configuration" 1114version = "0.6.1" 1115source = "registry+https://github.com/rust-lang/crates.io-index" 1116checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 1117dependencies = [ 1118 "bitflags", 1119 "core-foundation", 1120 "system-configuration-sys", 1121] 1122 1123[[package]] 1124name = "system-configuration-sys" 1125version = "0.6.0" 1126source = "registry+https://github.com/rust-lang/crates.io-index" 1127checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 1128dependencies = [ 1129 "core-foundation-sys", 1130 "libc", 1131] 1132 1133[[package]] 1134name = "tempfile" 1135version = "3.24.0" 1136source = "registry+https://github.com/rust-lang/crates.io-index" 1137checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" 1138dependencies = [ 1139 "fastrand", 1140 "getrandom 0.3.4", 1141 "once_cell", 1142 "rustix", 1143 "windows-sys 0.52.0", 1144] 1145 1146[[package]] 1147name = "thiserror" 1148version = "2.0.18" 1149source = "registry+https://github.com/rust-lang/crates.io-index" 1150checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 1151dependencies = [ 1152 "thiserror-impl", 1153] 1154 1155[[package]] 1156name = "thiserror-impl" 1157version = "2.0.18" 1158source = "registry+https://github.com/rust-lang/crates.io-index" 1159checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 1160dependencies = [ 1161 "proc-macro2", 1162 "quote", 1163 "syn", 1164] 1165 1166[[package]] 1167name = "tinystr" 1168version = "0.8.2" 1169source = "registry+https://github.com/rust-lang/crates.io-index" 1170checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 1171dependencies = [ 1172 "displaydoc", 1173 "zerovec", 1174] 1175 1176[[package]] 1177name = "tokio" 1178version = "1.49.0" 1179source = "registry+https://github.com/rust-lang/crates.io-index" 1180checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" 1181dependencies = [ 1182 "bytes", 1183 "libc", 1184 "mio", 1185 "pin-project-lite", 1186 "socket2", 1187 "tokio-macros", 1188 "windows-sys 0.61.2", 1189] 1190 1191[[package]] 1192name = "tokio-macros" 1193version = "2.6.0" 1194source = "registry+https://github.com/rust-lang/crates.io-index" 1195checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 1196dependencies = [ 1197 "proc-macro2", 1198 "quote", 1199 "syn", 1200] 1201 1202[[package]] 1203name = "tokio-native-tls" 1204version = "0.3.1" 1205source = "registry+https://github.com/rust-lang/crates.io-index" 1206checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 1207dependencies = [ 1208 "native-tls", 1209 "tokio", 1210] 1211 1212[[package]] 1213name = "tokio-rustls" 1214version = "0.26.4" 1215source = "registry+https://github.com/rust-lang/crates.io-index" 1216checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 1217dependencies = [ 1218 "rustls", 1219 "tokio", 1220] 1221 1222[[package]] 1223name = "tokio-util" 1224version = "0.7.18" 1225source = "registry+https://github.com/rust-lang/crates.io-index" 1226checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 1227dependencies = [ 1228 "bytes", 1229 "futures-core", 1230 "futures-io", 1231 "futures-sink", 1232 "pin-project-lite", 1233 "tokio", 1234] 1235 1236[[package]] 1237name = "tower" 1238version = "0.5.3" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 1241dependencies = [ 1242 "futures-core", 1243 "futures-util", 1244 "pin-project-lite", 1245 "sync_wrapper", 1246 "tokio", 1247 "tower-layer", 1248 "tower-service", 1249] 1250 1251[[package]] 1252name = "tower-http" 1253version = "0.6.8" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 1256dependencies = [ 1257 "bitflags", 1258 "bytes", 1259 "futures-util", 1260 "http", 1261 "http-body", 1262 "iri-string", 1263 "pin-project-lite", 1264 "tower", 1265 "tower-layer", 1266 "tower-service", 1267] 1268 1269[[package]] 1270name = "tower-layer" 1271version = "0.3.3" 1272source = "registry+https://github.com/rust-lang/crates.io-index" 1273checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1274 1275[[package]] 1276name = "tower-service" 1277version = "0.3.3" 1278source = "registry+https://github.com/rust-lang/crates.io-index" 1279checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1280 1281[[package]] 1282name = "tracing" 1283version = "0.1.44" 1284source = "registry+https://github.com/rust-lang/crates.io-index" 1285checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 1286dependencies = [ 1287 "pin-project-lite", 1288 "tracing-attributes", 1289 "tracing-core", 1290] 1291 1292[[package]] 1293name = "tracing-attributes" 1294version = "0.1.31" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 1297dependencies = [ 1298 "proc-macro2", 1299 "quote", 1300 "syn", 1301] 1302 1303[[package]] 1304name = "tracing-core" 1305version = "0.1.36" 1306source = "registry+https://github.com/rust-lang/crates.io-index" 1307checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 1308dependencies = [ 1309 "once_cell", 1310] 1311 1312[[package]] 1313name = "try-lock" 1314version = "0.2.5" 1315source = "registry+https://github.com/rust-lang/crates.io-index" 1316checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1317 1318[[package]] 1319name = "tungstenite" 1320version = "0.27.0" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" 1323dependencies = [ 1324 "bytes", 1325 "data-encoding", 1326 "http", 1327 "httparse", 1328 "log", 1329 "rand", 1330 "sha1", 1331 "thiserror", 1332 "utf-8", 1333] 1334 1335[[package]] 1336name = "typenum" 1337version = "1.19.0" 1338source = "registry+https://github.com/rust-lang/crates.io-index" 1339checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 1340 1341[[package]] 1342name = "unicode-ident" 1343version = "1.0.22" 1344source = "registry+https://github.com/rust-lang/crates.io-index" 1345checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 1346 1347[[package]] 1348name = "untrusted" 1349version = "0.9.0" 1350source = "registry+https://github.com/rust-lang/crates.io-index" 1351checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1352 1353[[package]] 1354name = "url" 1355version = "2.5.8" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 1358dependencies = [ 1359 "form_urlencoded", 1360 "idna", 1361 "percent-encoding", 1362 "serde", 1363] 1364 1365[[package]] 1366name = "utf-8" 1367version = "0.7.6" 1368source = "registry+https://github.com/rust-lang/crates.io-index" 1369checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 1370 1371[[package]] 1372name = "utf8_iter" 1373version = "1.0.4" 1374source = "registry+https://github.com/rust-lang/crates.io-index" 1375checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 1376 1377[[package]] 1378name = "vcpkg" 1379version = "0.2.15" 1380source = "registry+https://github.com/rust-lang/crates.io-index" 1381checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1382 1383[[package]] 1384name = "version_check" 1385version = "0.9.5" 1386source = "registry+https://github.com/rust-lang/crates.io-index" 1387checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1388 1389[[package]] 1390name = "want" 1391version = "0.3.1" 1392source = "registry+https://github.com/rust-lang/crates.io-index" 1393checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1394dependencies = [ 1395 "try-lock", 1396] 1397 1398[[package]] 1399name = "wasi" 1400version = "0.11.1+wasi-snapshot-preview1" 1401source = "registry+https://github.com/rust-lang/crates.io-index" 1402checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1403 1404[[package]] 1405name = "wasip2" 1406version = "1.0.2+wasi-0.2.9" 1407source = "registry+https://github.com/rust-lang/crates.io-index" 1408checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" 1409dependencies = [ 1410 "wit-bindgen", 1411] 1412 1413[[package]] 1414name = "wasm-bindgen" 1415version = "0.2.108" 1416source = "registry+https://github.com/rust-lang/crates.io-index" 1417checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566" 1418dependencies = [ 1419 "cfg-if", 1420 "once_cell", 1421 "rustversion", 1422 "wasm-bindgen-macro", 1423 "wasm-bindgen-shared", 1424] 1425 1426[[package]] 1427name = "wasm-bindgen-futures" 1428version = "0.4.58" 1429source = "registry+https://github.com/rust-lang/crates.io-index" 1430checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f" 1431dependencies = [ 1432 "cfg-if", 1433 "futures-util", 1434 "js-sys", 1435 "once_cell", 1436 "wasm-bindgen", 1437 "web-sys", 1438] 1439 1440[[package]] 1441name = "wasm-bindgen-macro" 1442version = "0.2.108" 1443source = "registry+https://github.com/rust-lang/crates.io-index" 1444checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608" 1445dependencies = [ 1446 "quote", 1447 "wasm-bindgen-macro-support", 1448] 1449 1450[[package]] 1451name = "wasm-bindgen-macro-support" 1452version = "0.2.108" 1453source = "registry+https://github.com/rust-lang/crates.io-index" 1454checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55" 1455dependencies = [ 1456 "bumpalo", 1457 "proc-macro2", 1458 "quote", 1459 "syn", 1460 "wasm-bindgen-shared", 1461] 1462 1463[[package]] 1464name = "wasm-bindgen-shared" 1465version = "0.2.108" 1466source = "registry+https://github.com/rust-lang/crates.io-index" 1467checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12" 1468dependencies = [ 1469 "unicode-ident", 1470] 1471 1472[[package]] 1473name = "web-sys" 1474version = "0.3.85" 1475source = "registry+https://github.com/rust-lang/crates.io-index" 1476checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598" 1477dependencies = [ 1478 "js-sys", 1479 "wasm-bindgen", 1480] 1481 1482[[package]] 1483name = "windows-link" 1484version = "0.2.1" 1485source = "registry+https://github.com/rust-lang/crates.io-index" 1486checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 1487 1488[[package]] 1489name = "windows-registry" 1490version = "0.6.1" 1491source = "registry+https://github.com/rust-lang/crates.io-index" 1492checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 1493dependencies = [ 1494 "windows-link", 1495 "windows-result", 1496 "windows-strings", 1497] 1498 1499[[package]] 1500name = "windows-result" 1501version = "0.4.1" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 1504dependencies = [ 1505 "windows-link", 1506] 1507 1508[[package]] 1509name = "windows-strings" 1510version = "0.5.1" 1511source = "registry+https://github.com/rust-lang/crates.io-index" 1512checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 1513dependencies = [ 1514 "windows-link", 1515] 1516 1517[[package]] 1518name = "windows-sys" 1519version = "0.52.0" 1520source = "registry+https://github.com/rust-lang/crates.io-index" 1521checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1522dependencies = [ 1523 "windows-targets 0.52.6", 1524] 1525 1526[[package]] 1527name = "windows-sys" 1528version = "0.60.2" 1529source = "registry+https://github.com/rust-lang/crates.io-index" 1530checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 1531dependencies = [ 1532 "windows-targets 0.53.5", 1533] 1534 1535[[package]] 1536name = "windows-sys" 1537version = "0.61.2" 1538source = "registry+https://github.com/rust-lang/crates.io-index" 1539checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 1540dependencies = [ 1541 "windows-link", 1542] 1543 1544[[package]] 1545name = "windows-targets" 1546version = "0.52.6" 1547source = "registry+https://github.com/rust-lang/crates.io-index" 1548checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1549dependencies = [ 1550 "windows_aarch64_gnullvm 0.52.6", 1551 "windows_aarch64_msvc 0.52.6", 1552 "windows_i686_gnu 0.52.6", 1553 "windows_i686_gnullvm 0.52.6", 1554 "windows_i686_msvc 0.52.6", 1555 "windows_x86_64_gnu 0.52.6", 1556 "windows_x86_64_gnullvm 0.52.6", 1557 "windows_x86_64_msvc 0.52.6", 1558] 1559 1560[[package]] 1561name = "windows-targets" 1562version = "0.53.5" 1563source = "registry+https://github.com/rust-lang/crates.io-index" 1564checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 1565dependencies = [ 1566 "windows-link", 1567 "windows_aarch64_gnullvm 0.53.1", 1568 "windows_aarch64_msvc 0.53.1", 1569 "windows_i686_gnu 0.53.1", 1570 "windows_i686_gnullvm 0.53.1", 1571 "windows_i686_msvc 0.53.1", 1572 "windows_x86_64_gnu 0.53.1", 1573 "windows_x86_64_gnullvm 0.53.1", 1574 "windows_x86_64_msvc 0.53.1", 1575] 1576 1577[[package]] 1578name = "windows_aarch64_gnullvm" 1579version = "0.52.6" 1580source = "registry+https://github.com/rust-lang/crates.io-index" 1581checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1582 1583[[package]] 1584name = "windows_aarch64_gnullvm" 1585version = "0.53.1" 1586source = "registry+https://github.com/rust-lang/crates.io-index" 1587checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 1588 1589[[package]] 1590name = "windows_aarch64_msvc" 1591version = "0.52.6" 1592source = "registry+https://github.com/rust-lang/crates.io-index" 1593checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1594 1595[[package]] 1596name = "windows_aarch64_msvc" 1597version = "0.53.1" 1598source = "registry+https://github.com/rust-lang/crates.io-index" 1599checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 1600 1601[[package]] 1602name = "windows_i686_gnu" 1603version = "0.52.6" 1604source = "registry+https://github.com/rust-lang/crates.io-index" 1605checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1606 1607[[package]] 1608name = "windows_i686_gnu" 1609version = "0.53.1" 1610source = "registry+https://github.com/rust-lang/crates.io-index" 1611checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 1612 1613[[package]] 1614name = "windows_i686_gnullvm" 1615version = "0.52.6" 1616source = "registry+https://github.com/rust-lang/crates.io-index" 1617checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1618 1619[[package]] 1620name = "windows_i686_gnullvm" 1621version = "0.53.1" 1622source = "registry+https://github.com/rust-lang/crates.io-index" 1623checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 1624 1625[[package]] 1626name = "windows_i686_msvc" 1627version = "0.52.6" 1628source = "registry+https://github.com/rust-lang/crates.io-index" 1629checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1630 1631[[package]] 1632name = "windows_i686_msvc" 1633version = "0.53.1" 1634source = "registry+https://github.com/rust-lang/crates.io-index" 1635checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 1636 1637[[package]] 1638name = "windows_x86_64_gnu" 1639version = "0.52.6" 1640source = "registry+https://github.com/rust-lang/crates.io-index" 1641checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1642 1643[[package]] 1644name = "windows_x86_64_gnu" 1645version = "0.53.1" 1646source = "registry+https://github.com/rust-lang/crates.io-index" 1647checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 1648 1649[[package]] 1650name = "windows_x86_64_gnullvm" 1651version = "0.52.6" 1652source = "registry+https://github.com/rust-lang/crates.io-index" 1653checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1654 1655[[package]] 1656name = "windows_x86_64_gnullvm" 1657version = "0.53.1" 1658source = "registry+https://github.com/rust-lang/crates.io-index" 1659checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 1660 1661[[package]] 1662name = "windows_x86_64_msvc" 1663version = "0.52.6" 1664source = "registry+https://github.com/rust-lang/crates.io-index" 1665checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1666 1667[[package]] 1668name = "windows_x86_64_msvc" 1669version = "0.53.1" 1670source = "registry+https://github.com/rust-lang/crates.io-index" 1671checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 1672 1673[[package]] 1674name = "wit-bindgen" 1675version = "0.51.0" 1676source = "registry+https://github.com/rust-lang/crates.io-index" 1677checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 1678 1679[[package]] 1680name = "writeable" 1681version = "0.6.2" 1682source = "registry+https://github.com/rust-lang/crates.io-index" 1683checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 1684 1685[[package]] 1686name = "yoke" 1687version = "0.8.1" 1688source = "registry+https://github.com/rust-lang/crates.io-index" 1689checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 1690dependencies = [ 1691 "stable_deref_trait", 1692 "yoke-derive", 1693 "zerofrom", 1694] 1695 1696[[package]] 1697name = "yoke-derive" 1698version = "0.8.1" 1699source = "registry+https://github.com/rust-lang/crates.io-index" 1700checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 1701dependencies = [ 1702 "proc-macro2", 1703 "quote", 1704 "syn", 1705 "synstructure", 1706] 1707 1708[[package]] 1709name = "zerocopy" 1710version = "0.8.33" 1711source = "registry+https://github.com/rust-lang/crates.io-index" 1712checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd" 1713dependencies = [ 1714 "zerocopy-derive", 1715] 1716 1717[[package]] 1718name = "zerocopy-derive" 1719version = "0.8.33" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1" 1722dependencies = [ 1723 "proc-macro2", 1724 "quote", 1725 "syn", 1726] 1727 1728[[package]] 1729name = "zerofrom" 1730version = "0.1.6" 1731source = "registry+https://github.com/rust-lang/crates.io-index" 1732checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 1733dependencies = [ 1734 "zerofrom-derive", 1735] 1736 1737[[package]] 1738name = "zerofrom-derive" 1739version = "0.1.6" 1740source = "registry+https://github.com/rust-lang/crates.io-index" 1741checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 1742dependencies = [ 1743 "proc-macro2", 1744 "quote", 1745 "syn", 1746 "synstructure", 1747] 1748 1749[[package]] 1750name = "zeroize" 1751version = "1.8.2" 1752source = "registry+https://github.com/rust-lang/crates.io-index" 1753checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 1754 1755[[package]] 1756name = "zerotrie" 1757version = "0.2.3" 1758source = "registry+https://github.com/rust-lang/crates.io-index" 1759checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 1760dependencies = [ 1761 "displaydoc", 1762 "yoke", 1763 "zerofrom", 1764] 1765 1766[[package]] 1767name = "zerovec" 1768version = "0.11.5" 1769source = "registry+https://github.com/rust-lang/crates.io-index" 1770checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 1771dependencies = [ 1772 "yoke", 1773 "zerofrom", 1774 "zerovec-derive", 1775] 1776 1777[[package]] 1778name = "zerovec-derive" 1779version = "0.11.2" 1780source = "registry+https://github.com/rust-lang/crates.io-index" 1781checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 1782dependencies = [ 1783 "proc-macro2", 1784 "quote", 1785 "syn", 1786] 1787 1788[[package]] 1789name = "zmij" 1790version = "1.0.15" 1791source = "registry+https://github.com/rust-lang/crates.io-index" 1792checksum = "94f63c051f4fe3c1509da62131a678643c5b6fbdc9273b2b79d4378ebda003d2"