A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at fix/track-metadata 7891 lines 187 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 = "actix-codec" 7version = "0.5.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" 10dependencies = [ 11 "bitflags 2.9.1", 12 "bytes", 13 "futures-core", 14 "futures-sink", 15 "memchr", 16 "pin-project-lite", 17 "tokio", 18 "tokio-util", 19 "tracing", 20] 21 22[[package]] 23name = "actix-http" 24version = "3.11.0" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "44dfe5c9e0004c623edc65391dfd51daa201e7e30ebd9c9bedf873048ec32bc2" 27dependencies = [ 28 "actix-codec", 29 "actix-rt", 30 "actix-service", 31 "actix-utils", 32 "base64 0.22.1", 33 "bitflags 2.9.1", 34 "brotli", 35 "bytes", 36 "bytestring", 37 "derive_more 2.0.1", 38 "encoding_rs", 39 "flate2", 40 "foldhash", 41 "futures-core", 42 "h2 0.3.26", 43 "http 0.2.12", 44 "httparse", 45 "httpdate", 46 "itoa", 47 "language-tags", 48 "local-channel", 49 "mime", 50 "percent-encoding", 51 "pin-project-lite", 52 "rand 0.9.2", 53 "sha1", 54 "smallvec", 55 "tokio", 56 "tokio-util", 57 "tracing", 58 "zstd", 59] 60 61[[package]] 62name = "actix-limitation" 63version = "0.5.1" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "3bf9d4ce7fd50ab56efde47127bd5a2e5e27ae1dc3edbcb85be16672f477ff0a" 66dependencies = [ 67 "actix-session 0.8.0", 68 "actix-utils", 69 "actix-web", 70 "chrono", 71 "derive_more 0.99.20", 72 "log", 73 "redis 0.23.3", 74 "time", 75] 76 77[[package]] 78name = "actix-macros" 79version = "0.2.4" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" 82dependencies = [ 83 "quote", 84 "syn 2.0.101", 85] 86 87[[package]] 88name = "actix-router" 89version = "0.5.3" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" 92dependencies = [ 93 "bytestring", 94 "cfg-if", 95 "http 0.2.12", 96 "regex", 97 "regex-lite", 98 "serde", 99 "tracing", 100] 101 102[[package]] 103name = "actix-rt" 104version = "2.10.0" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" 107dependencies = [ 108 "futures-core", 109 "tokio", 110] 111 112[[package]] 113name = "actix-server" 114version = "2.6.0" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502" 117dependencies = [ 118 "actix-rt", 119 "actix-service", 120 "actix-utils", 121 "futures-core", 122 "futures-util", 123 "mio", 124 "socket2", 125 "tokio", 126 "tracing", 127] 128 129[[package]] 130name = "actix-service" 131version = "2.0.3" 132source = "registry+https://github.com/rust-lang/crates.io-index" 133checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f" 134dependencies = [ 135 "futures-core", 136 "pin-project-lite", 137] 138 139[[package]] 140name = "actix-session" 141version = "0.8.0" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "2e6a28f813a6671e1847d005cad0be36ae4d016287690f765c303379837c13d6" 144dependencies = [ 145 "actix-service", 146 "actix-utils", 147 "actix-web", 148 "anyhow", 149 "async-trait", 150 "derive_more 0.99.20", 151 "serde", 152 "serde_json", 153 "tracing", 154] 155 156[[package]] 157name = "actix-session" 158version = "0.10.1" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "efe6976a74f34f1b6d07a6c05aadc0ed0359304a7781c367fa5b4029418db08f" 161dependencies = [ 162 "actix-service", 163 "actix-utils", 164 "actix-web", 165 "anyhow", 166 "derive_more 1.0.0", 167 "rand 0.8.5", 168 "serde", 169 "serde_json", 170 "tracing", 171] 172 173[[package]] 174name = "actix-utils" 175version = "3.0.1" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 178dependencies = [ 179 "local-waker", 180 "pin-project-lite", 181] 182 183[[package]] 184name = "actix-web" 185version = "4.11.0" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea" 188dependencies = [ 189 "actix-codec", 190 "actix-http", 191 "actix-macros", 192 "actix-router", 193 "actix-rt", 194 "actix-server", 195 "actix-service", 196 "actix-utils", 197 "actix-web-codegen", 198 "bytes", 199 "bytestring", 200 "cfg-if", 201 "cookie", 202 "derive_more 2.0.1", 203 "encoding_rs", 204 "foldhash", 205 "futures-core", 206 "futures-util", 207 "impl-more", 208 "itoa", 209 "language-tags", 210 "log", 211 "mime", 212 "once_cell", 213 "pin-project-lite", 214 "regex", 215 "regex-lite", 216 "serde", 217 "serde_json", 218 "serde_urlencoded", 219 "smallvec", 220 "socket2", 221 "time", 222 "tracing", 223 "url", 224] 225 226[[package]] 227name = "actix-web-codegen" 228version = "4.3.0" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" 231dependencies = [ 232 "actix-router", 233 "proc-macro2", 234 "quote", 235 "syn 2.0.101", 236] 237 238[[package]] 239name = "addr2line" 240version = "0.24.2" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 243dependencies = [ 244 "gimli", 245] 246 247[[package]] 248name = "adler2" 249version = "2.0.0" 250source = "registry+https://github.com/rust-lang/crates.io-index" 251checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 252 253[[package]] 254name = "aead" 255version = "0.5.2" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 258dependencies = [ 259 "crypto-common", 260 "generic-array", 261] 262 263[[package]] 264name = "aes" 265version = "0.8.4" 266source = "registry+https://github.com/rust-lang/crates.io-index" 267checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 268dependencies = [ 269 "cfg-if", 270 "cipher", 271 "cpufeatures", 272] 273 274[[package]] 275name = "aes-gcm" 276version = "0.10.3" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 279dependencies = [ 280 "aead", 281 "aes", 282 "cipher", 283 "ctr", 284 "ghash", 285 "subtle", 286] 287 288[[package]] 289name = "ahash" 290version = "0.7.8" 291source = "registry+https://github.com/rust-lang/crates.io-index" 292checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 293dependencies = [ 294 "getrandom 0.2.16", 295 "once_cell", 296 "version_check", 297] 298 299[[package]] 300name = "ahash" 301version = "0.8.12" 302source = "registry+https://github.com/rust-lang/crates.io-index" 303checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 304dependencies = [ 305 "cfg-if", 306 "const-random", 307 "getrandom 0.3.3", 308 "once_cell", 309 "version_check", 310 "zerocopy", 311] 312 313[[package]] 314name = "aho-corasick" 315version = "1.1.3" 316source = "registry+https://github.com/rust-lang/crates.io-index" 317checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 318dependencies = [ 319 "memchr", 320] 321 322[[package]] 323name = "alloc-no-stdlib" 324version = "2.0.4" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 327 328[[package]] 329name = "alloc-stdlib" 330version = "0.2.2" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 333dependencies = [ 334 "alloc-no-stdlib", 335] 336 337[[package]] 338name = "allocator-api2" 339version = "0.2.21" 340source = "registry+https://github.com/rust-lang/crates.io-index" 341checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 342 343[[package]] 344name = "android-tzdata" 345version = "0.1.1" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 348 349[[package]] 350name = "android_system_properties" 351version = "0.1.5" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 354dependencies = [ 355 "libc", 356] 357 358[[package]] 359name = "annotate-snippets" 360version = "0.11.5" 361source = "registry+https://github.com/rust-lang/crates.io-index" 362checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4" 363dependencies = [ 364 "anstyle", 365 "unicode-width", 366] 367 368[[package]] 369name = "anstream" 370version = "0.6.18" 371source = "registry+https://github.com/rust-lang/crates.io-index" 372checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" 373dependencies = [ 374 "anstyle", 375 "anstyle-parse", 376 "anstyle-query", 377 "anstyle-wincon", 378 "colorchoice", 379 "is_terminal_polyfill", 380 "utf8parse", 381] 382 383[[package]] 384name = "anstyle" 385version = "1.0.10" 386source = "registry+https://github.com/rust-lang/crates.io-index" 387checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" 388 389[[package]] 390name = "anstyle-parse" 391version = "0.2.6" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" 394dependencies = [ 395 "utf8parse", 396] 397 398[[package]] 399name = "anstyle-query" 400version = "1.1.2" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" 403dependencies = [ 404 "windows-sys 0.59.0", 405] 406 407[[package]] 408name = "anstyle-wincon" 409version = "3.0.8" 410source = "registry+https://github.com/rust-lang/crates.io-index" 411checksum = "6680de5231bd6ee4c6191b8a1325daa282b415391ec9d3a37bd34f2060dc73fa" 412dependencies = [ 413 "anstyle", 414 "once_cell_polyfill", 415 "windows-sys 0.59.0", 416] 417 418[[package]] 419name = "anyhow" 420version = "1.0.98" 421source = "registry+https://github.com/rust-lang/crates.io-index" 422checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" 423 424[[package]] 425name = "arc-swap" 426version = "1.7.1" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 429 430[[package]] 431name = "argminmax" 432version = "0.6.3" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65" 435dependencies = [ 436 "num-traits", 437] 438 439[[package]] 440name = "array-init-cursor" 441version = "0.2.1" 442source = "registry+https://github.com/rust-lang/crates.io-index" 443checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3" 444 445[[package]] 446name = "arrayvec" 447version = "0.7.6" 448source = "registry+https://github.com/rust-lang/crates.io-index" 449checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 450 451[[package]] 452name = "arrow" 453version = "54.2.1" 454source = "registry+https://github.com/rust-lang/crates.io-index" 455checksum = "dc208515aa0151028e464cc94a692156e945ce5126abd3537bb7fd6ba2143ed1" 456dependencies = [ 457 "arrow-arith", 458 "arrow-array", 459 "arrow-buffer", 460 "arrow-cast", 461 "arrow-data", 462 "arrow-ord", 463 "arrow-row", 464 "arrow-schema", 465 "arrow-select", 466 "arrow-string", 467] 468 469[[package]] 470name = "arrow-arith" 471version = "54.2.1" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "e07e726e2b3f7816a85c6a45b6ec118eeeabf0b2a8c208122ad949437181f49a" 474dependencies = [ 475 "arrow-array", 476 "arrow-buffer", 477 "arrow-data", 478 "arrow-schema", 479 "chrono", 480 "num", 481] 482 483[[package]] 484name = "arrow-array" 485version = "54.2.1" 486source = "registry+https://github.com/rust-lang/crates.io-index" 487checksum = "a2262eba4f16c78496adfd559a29fe4b24df6088efc9985a873d58e92be022d5" 488dependencies = [ 489 "ahash 0.8.12", 490 "arrow-buffer", 491 "arrow-data", 492 "arrow-schema", 493 "chrono", 494 "half 2.6.0", 495 "hashbrown 0.15.3", 496 "num", 497] 498 499[[package]] 500name = "arrow-buffer" 501version = "54.3.1" 502source = "registry+https://github.com/rust-lang/crates.io-index" 503checksum = "263f4801ff1839ef53ebd06f99a56cecd1dbaf314ec893d93168e2e860e0291c" 504dependencies = [ 505 "bytes", 506 "half 2.6.0", 507 "num", 508] 509 510[[package]] 511name = "arrow-cast" 512version = "54.2.1" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "4103d88c5b441525ed4ac23153be7458494c2b0c9a11115848fdb9b81f6f886a" 515dependencies = [ 516 "arrow-array", 517 "arrow-buffer", 518 "arrow-data", 519 "arrow-schema", 520 "arrow-select", 521 "atoi", 522 "base64 0.22.1", 523 "chrono", 524 "comfy-table", 525 "half 2.6.0", 526 "lexical-core", 527 "num", 528 "ryu", 529] 530 531[[package]] 532name = "arrow-data" 533version = "54.3.1" 534source = "registry+https://github.com/rust-lang/crates.io-index" 535checksum = "61cfdd7d99b4ff618f167e548b2411e5dd2c98c0ddebedd7df433d34c20a4429" 536dependencies = [ 537 "arrow-buffer", 538 "arrow-schema", 539 "half 2.6.0", 540 "num", 541] 542 543[[package]] 544name = "arrow-ord" 545version = "54.2.1" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "f841bfcc1997ef6ac48ee0305c4dfceb1f7c786fe31e67c1186edf775e1f1160" 548dependencies = [ 549 "arrow-array", 550 "arrow-buffer", 551 "arrow-data", 552 "arrow-schema", 553 "arrow-select", 554] 555 556[[package]] 557name = "arrow-row" 558version = "54.2.1" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "1eeb55b0a0a83851aa01f2ca5ee5648f607e8506ba6802577afdda9d75cdedcd" 561dependencies = [ 562 "arrow-array", 563 "arrow-buffer", 564 "arrow-data", 565 "arrow-schema", 566 "half 2.6.0", 567] 568 569[[package]] 570name = "arrow-schema" 571version = "54.3.1" 572source = "registry+https://github.com/rust-lang/crates.io-index" 573checksum = "39cfaf5e440be44db5413b75b72c2a87c1f8f0627117d110264048f2969b99e9" 574dependencies = [ 575 "bitflags 2.9.1", 576] 577 578[[package]] 579name = "arrow-select" 580version = "54.2.1" 581source = "registry+https://github.com/rust-lang/crates.io-index" 582checksum = "7e2932aece2d0c869dd2125feb9bd1709ef5c445daa3838ac4112dcfa0fda52c" 583dependencies = [ 584 "ahash 0.8.12", 585 "arrow-array", 586 "arrow-buffer", 587 "arrow-data", 588 "arrow-schema", 589 "num", 590] 591 592[[package]] 593name = "arrow-string" 594version = "54.2.1" 595source = "registry+https://github.com/rust-lang/crates.io-index" 596checksum = "912e38bd6a7a7714c1d9b61df80315685553b7455e8a6045c27531d8ecd5b458" 597dependencies = [ 598 "arrow-array", 599 "arrow-buffer", 600 "arrow-data", 601 "arrow-schema", 602 "arrow-select", 603 "memchr", 604 "num", 605 "regex", 606 "regex-syntax", 607] 608 609[[package]] 610name = "async-nats" 611version = "0.39.0" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "a798aab0c0203b31d67d501e5ed1f3ac6c36a329899ce47fc93c3bea53f3ae89" 614dependencies = [ 615 "base64 0.22.1", 616 "bytes", 617 "futures", 618 "memchr", 619 "nkeys", 620 "nuid", 621 "once_cell", 622 "pin-project", 623 "portable-atomic", 624 "rand 0.8.5", 625 "regex", 626 "ring", 627 "rustls-native-certs 0.7.3", 628 "rustls-pemfile 2.2.0", 629 "rustls-webpki 0.102.8", 630 "serde", 631 "serde_json", 632 "serde_nanos", 633 "serde_repr", 634 "thiserror 1.0.69", 635 "time", 636 "tokio", 637 "tokio-rustls 0.26.2", 638 "tokio-util", 639 "tokio-websockets", 640 "tracing", 641 "tryhard", 642 "url", 643] 644 645[[package]] 646name = "async-stream" 647version = "0.3.6" 648source = "registry+https://github.com/rust-lang/crates.io-index" 649checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" 650dependencies = [ 651 "async-stream-impl", 652 "futures-core", 653 "pin-project-lite", 654] 655 656[[package]] 657name = "async-stream-impl" 658version = "0.3.6" 659source = "registry+https://github.com/rust-lang/crates.io-index" 660checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" 661dependencies = [ 662 "proc-macro2", 663 "quote", 664 "syn 2.0.101", 665] 666 667[[package]] 668name = "async-trait" 669version = "0.1.88" 670source = "registry+https://github.com/rust-lang/crates.io-index" 671checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" 672dependencies = [ 673 "proc-macro2", 674 "quote", 675 "syn 2.0.101", 676] 677 678[[package]] 679name = "atoi" 680version = "2.0.0" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 683dependencies = [ 684 "num-traits", 685] 686 687[[package]] 688name = "atoi_simd" 689version = "0.16.0" 690source = "registry+https://github.com/rust-lang/crates.io-index" 691checksum = "4790f9e8961209112beb783d85449b508673cf4a6a419c8449b210743ac4dbe9" 692 693[[package]] 694name = "atomic-traits" 695version = "0.4.0" 696source = "registry+https://github.com/rust-lang/crates.io-index" 697checksum = "707f750b93bd1b739cf9ddf85f8fe7c97a4a62c60ccf8b6f232514bd9103bedc" 698dependencies = [ 699 "cfg-if", 700 "rustc_version", 701] 702 703[[package]] 704name = "atomic-waker" 705version = "1.1.2" 706source = "registry+https://github.com/rust-lang/crates.io-index" 707checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 708 709[[package]] 710name = "attohttpc" 711version = "0.28.5" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "07a9b245ba0739fc90935094c29adbaee3f977218b5fb95e822e261cda7f56a3" 714dependencies = [ 715 "http 1.3.1", 716 "log", 717 "rustls 0.23.27", 718 "serde", 719 "serde_json", 720 "url", 721 "webpki-roots 0.26.11", 722] 723 724[[package]] 725name = "autocfg" 726version = "1.4.0" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 729 730[[package]] 731name = "aws-creds" 732version = "0.37.0" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "7f84143206b9c72b3c5cb65415de60c7539c79cd1559290fddec657939131be0" 735dependencies = [ 736 "attohttpc", 737 "home", 738 "log", 739 "quick-xml 0.32.0", 740 "rust-ini", 741 "serde", 742 "thiserror 1.0.69", 743 "time", 744 "url", 745] 746 747[[package]] 748name = "aws-region" 749version = "0.25.5" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "e9aed3f9c7eac9be28662fdb3b0f4d1951e812f7c64fed4f0327ba702f459b3b" 752dependencies = [ 753 "thiserror 1.0.69", 754] 755 756[[package]] 757name = "backtrace" 758version = "0.3.75" 759source = "registry+https://github.com/rust-lang/crates.io-index" 760checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 761dependencies = [ 762 "addr2line", 763 "cfg-if", 764 "libc", 765 "miniz_oxide", 766 "object", 767 "rustc-demangle", 768 "windows-targets 0.52.6", 769] 770 771[[package]] 772name = "base64" 773version = "0.20.0" 774source = "registry+https://github.com/rust-lang/crates.io-index" 775checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" 776 777[[package]] 778name = "base64" 779version = "0.21.7" 780source = "registry+https://github.com/rust-lang/crates.io-index" 781checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 782 783[[package]] 784name = "base64" 785version = "0.22.1" 786source = "registry+https://github.com/rust-lang/crates.io-index" 787checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 788 789[[package]] 790name = "base64ct" 791version = "1.7.3" 792source = "registry+https://github.com/rust-lang/crates.io-index" 793checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3" 794 795[[package]] 796name = "bindgen" 797version = "0.71.1" 798source = "registry+https://github.com/rust-lang/crates.io-index" 799checksum = "5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3" 800dependencies = [ 801 "annotate-snippets", 802 "bitflags 2.9.1", 803 "cexpr", 804 "clang-sys", 805 "itertools", 806 "proc-macro2", 807 "quote", 808 "regex", 809 "rustc-hash", 810 "shlex", 811 "syn 2.0.101", 812] 813 814[[package]] 815name = "bit-set" 816version = "0.8.0" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 819dependencies = [ 820 "bit-vec", 821] 822 823[[package]] 824name = "bit-vec" 825version = "0.8.0" 826source = "registry+https://github.com/rust-lang/crates.io-index" 827checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 828 829[[package]] 830name = "bitflags" 831version = "1.3.2" 832source = "registry+https://github.com/rust-lang/crates.io-index" 833checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 834 835[[package]] 836name = "bitflags" 837version = "2.9.1" 838source = "registry+https://github.com/rust-lang/crates.io-index" 839checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 840dependencies = [ 841 "serde", 842] 843 844[[package]] 845name = "bitvec" 846version = "1.0.1" 847source = "registry+https://github.com/rust-lang/crates.io-index" 848checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 849dependencies = [ 850 "funty", 851 "radium", 852 "tap", 853 "wyz", 854] 855 856[[package]] 857name = "block-buffer" 858version = "0.10.4" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 861dependencies = [ 862 "generic-array", 863] 864 865[[package]] 866name = "borsh" 867version = "1.5.7" 868source = "registry+https://github.com/rust-lang/crates.io-index" 869checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" 870dependencies = [ 871 "borsh-derive", 872 "cfg_aliases", 873] 874 875[[package]] 876name = "borsh-derive" 877version = "1.5.7" 878source = "registry+https://github.com/rust-lang/crates.io-index" 879checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3" 880dependencies = [ 881 "once_cell", 882 "proc-macro-crate", 883 "proc-macro2", 884 "quote", 885 "syn 2.0.101", 886] 887 888[[package]] 889name = "brotli" 890version = "8.0.1" 891source = "registry+https://github.com/rust-lang/crates.io-index" 892checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d" 893dependencies = [ 894 "alloc-no-stdlib", 895 "alloc-stdlib", 896 "brotli-decompressor", 897] 898 899[[package]] 900name = "brotli-decompressor" 901version = "5.0.0" 902source = "registry+https://github.com/rust-lang/crates.io-index" 903checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" 904dependencies = [ 905 "alloc-no-stdlib", 906 "alloc-stdlib", 907] 908 909[[package]] 910name = "bumpalo" 911version = "3.17.0" 912source = "registry+https://github.com/rust-lang/crates.io-index" 913checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" 914 915[[package]] 916name = "bytecheck" 917version = "0.6.12" 918source = "registry+https://github.com/rust-lang/crates.io-index" 919checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 920dependencies = [ 921 "bytecheck_derive", 922 "ptr_meta", 923 "simdutf8", 924] 925 926[[package]] 927name = "bytecheck_derive" 928version = "0.6.12" 929source = "registry+https://github.com/rust-lang/crates.io-index" 930checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 931dependencies = [ 932 "proc-macro2", 933 "quote", 934 "syn 1.0.109", 935] 936 937[[package]] 938name = "bytemuck" 939version = "1.23.0" 940source = "registry+https://github.com/rust-lang/crates.io-index" 941checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c" 942dependencies = [ 943 "bytemuck_derive", 944] 945 946[[package]] 947name = "bytemuck_derive" 948version = "1.9.3" 949source = "registry+https://github.com/rust-lang/crates.io-index" 950checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1" 951dependencies = [ 952 "proc-macro2", 953 "quote", 954 "syn 2.0.101", 955] 956 957[[package]] 958name = "byteorder" 959version = "1.5.0" 960source = "registry+https://github.com/rust-lang/crates.io-index" 961checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 962 963[[package]] 964name = "bytes" 965version = "1.10.1" 966source = "registry+https://github.com/rust-lang/crates.io-index" 967checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 968dependencies = [ 969 "serde", 970] 971 972[[package]] 973name = "bytestring" 974version = "1.4.0" 975source = "registry+https://github.com/rust-lang/crates.io-index" 976checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" 977dependencies = [ 978 "bytes", 979] 980 981[[package]] 982name = "camino" 983version = "1.1.10" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab" 986dependencies = [ 987 "serde", 988] 989 990[[package]] 991name = "cargo-platform" 992version = "0.1.9" 993source = "registry+https://github.com/rust-lang/crates.io-index" 994checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 995dependencies = [ 996 "serde", 997] 998 999[[package]] 1000name = "cargo_metadata" 1001version = "0.18.1" 1002source = "registry+https://github.com/rust-lang/crates.io-index" 1003checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" 1004dependencies = [ 1005 "camino", 1006 "cargo-platform", 1007 "semver", 1008 "serde", 1009 "serde_json", 1010 "thiserror 1.0.69", 1011] 1012 1013[[package]] 1014name = "cargo_toml" 1015version = "0.22.3" 1016source = "registry+https://github.com/rust-lang/crates.io-index" 1017checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" 1018dependencies = [ 1019 "serde", 1020 "toml 0.9.2", 1021] 1022 1023[[package]] 1024name = "cast" 1025version = "0.3.0" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 1028 1029[[package]] 1030name = "castaway" 1031version = "0.2.3" 1032source = "registry+https://github.com/rust-lang/crates.io-index" 1033checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5" 1034dependencies = [ 1035 "rustversion", 1036] 1037 1038[[package]] 1039name = "cc" 1040version = "1.2.24" 1041source = "registry+https://github.com/rust-lang/crates.io-index" 1042checksum = "16595d3be041c03b09d08d0858631facccee9221e579704070e6e9e4915d3bc7" 1043dependencies = [ 1044 "jobserver", 1045 "libc", 1046 "shlex", 1047] 1048 1049[[package]] 1050name = "cee-scape" 1051version = "0.2.0" 1052source = "registry+https://github.com/rust-lang/crates.io-index" 1053checksum = "4d67dfb052149f779f77e9ce089cea126e00657e8f0d11dafc7901fde4291101" 1054dependencies = [ 1055 "cc", 1056 "libc", 1057] 1058 1059[[package]] 1060name = "cesu8" 1061version = "1.1.0" 1062source = "registry+https://github.com/rust-lang/crates.io-index" 1063checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 1064 1065[[package]] 1066name = "cexpr" 1067version = "0.6.0" 1068source = "registry+https://github.com/rust-lang/crates.io-index" 1069checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 1070dependencies = [ 1071 "nom", 1072] 1073 1074[[package]] 1075name = "cfg-if" 1076version = "1.0.0" 1077source = "registry+https://github.com/rust-lang/crates.io-index" 1078checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 1079 1080[[package]] 1081name = "cfg_aliases" 1082version = "0.2.1" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 1085 1086[[package]] 1087name = "chrono" 1088version = "0.4.39" 1089source = "registry+https://github.com/rust-lang/crates.io-index" 1090checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" 1091dependencies = [ 1092 "android-tzdata", 1093 "iana-time-zone", 1094 "js-sys", 1095 "num-traits", 1096 "serde", 1097 "wasm-bindgen", 1098 "windows-targets 0.52.6", 1099] 1100 1101[[package]] 1102name = "chrono-tz" 1103version = "0.10.3" 1104source = "registry+https://github.com/rust-lang/crates.io-index" 1105checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3" 1106dependencies = [ 1107 "chrono", 1108 "chrono-tz-build", 1109 "phf", 1110] 1111 1112[[package]] 1113name = "chrono-tz-build" 1114version = "0.4.1" 1115source = "registry+https://github.com/rust-lang/crates.io-index" 1116checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402" 1117dependencies = [ 1118 "parse-zoneinfo", 1119 "phf_codegen", 1120] 1121 1122[[package]] 1123name = "cipher" 1124version = "0.4.4" 1125source = "registry+https://github.com/rust-lang/crates.io-index" 1126checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1127dependencies = [ 1128 "crypto-common", 1129 "inout", 1130] 1131 1132[[package]] 1133name = "clang-sys" 1134version = "1.8.1" 1135source = "registry+https://github.com/rust-lang/crates.io-index" 1136checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 1137dependencies = [ 1138 "glob", 1139 "libc", 1140 "libloading", 1141] 1142 1143[[package]] 1144name = "clap" 1145version = "4.5.38" 1146source = "registry+https://github.com/rust-lang/crates.io-index" 1147checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000" 1148dependencies = [ 1149 "clap_builder", 1150 "clap_derive", 1151] 1152 1153[[package]] 1154name = "clap-cargo" 1155version = "0.14.1" 1156source = "registry+https://github.com/rust-lang/crates.io-index" 1157checksum = "23b2ea69cefa96b848b73ad516ad1d59a195cdf9263087d977f648a818c8b43e" 1158dependencies = [ 1159 "anstyle", 1160 "cargo_metadata", 1161 "clap", 1162] 1163 1164[[package]] 1165name = "clap_builder" 1166version = "4.5.38" 1167source = "registry+https://github.com/rust-lang/crates.io-index" 1168checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120" 1169dependencies = [ 1170 "anstream", 1171 "anstyle", 1172 "clap_lex", 1173 "strsim", 1174] 1175 1176[[package]] 1177name = "clap_derive" 1178version = "4.5.32" 1179source = "registry+https://github.com/rust-lang/crates.io-index" 1180checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7" 1181dependencies = [ 1182 "heck 0.5.0", 1183 "proc-macro2", 1184 "quote", 1185 "syn 2.0.101", 1186] 1187 1188[[package]] 1189name = "clap_lex" 1190version = "0.7.4" 1191source = "registry+https://github.com/rust-lang/crates.io-index" 1192checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" 1193 1194[[package]] 1195name = "codepage" 1196version = "0.1.2" 1197source = "registry+https://github.com/rust-lang/crates.io-index" 1198checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4" 1199dependencies = [ 1200 "encoding_rs", 1201] 1202 1203[[package]] 1204name = "colorchoice" 1205version = "1.0.3" 1206source = "registry+https://github.com/rust-lang/crates.io-index" 1207checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" 1208 1209[[package]] 1210name = "combine" 1211version = "4.6.7" 1212source = "registry+https://github.com/rust-lang/crates.io-index" 1213checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 1214dependencies = [ 1215 "bytes", 1216 "futures-core", 1217 "memchr", 1218 "pin-project-lite", 1219 "tokio", 1220 "tokio-util", 1221] 1222 1223[[package]] 1224name = "comfy-table" 1225version = "7.1.4" 1226source = "registry+https://github.com/rust-lang/crates.io-index" 1227checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a" 1228dependencies = [ 1229 "crossterm", 1230 "unicode-segmentation", 1231 "unicode-width", 1232] 1233 1234[[package]] 1235name = "compact_str" 1236version = "0.8.1" 1237source = "registry+https://github.com/rust-lang/crates.io-index" 1238checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32" 1239dependencies = [ 1240 "castaway", 1241 "cfg-if", 1242 "itoa", 1243 "rustversion", 1244 "ryu", 1245 "serde", 1246 "static_assertions", 1247] 1248 1249[[package]] 1250name = "concurrent-queue" 1251version = "2.5.0" 1252source = "registry+https://github.com/rust-lang/crates.io-index" 1253checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 1254dependencies = [ 1255 "crossbeam-utils", 1256] 1257 1258[[package]] 1259name = "const-oid" 1260version = "0.9.6" 1261source = "registry+https://github.com/rust-lang/crates.io-index" 1262checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1263 1264[[package]] 1265name = "const-random" 1266version = "0.1.18" 1267source = "registry+https://github.com/rust-lang/crates.io-index" 1268checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" 1269dependencies = [ 1270 "const-random-macro", 1271] 1272 1273[[package]] 1274name = "const-random-macro" 1275version = "0.1.16" 1276source = "registry+https://github.com/rust-lang/crates.io-index" 1277checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" 1278dependencies = [ 1279 "getrandom 0.2.16", 1280 "once_cell", 1281 "tiny-keccak", 1282] 1283 1284[[package]] 1285name = "convert_case" 1286version = "0.4.0" 1287source = "registry+https://github.com/rust-lang/crates.io-index" 1288checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 1289 1290[[package]] 1291name = "convert_case" 1292version = "0.8.0" 1293source = "registry+https://github.com/rust-lang/crates.io-index" 1294checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f" 1295dependencies = [ 1296 "unicode-segmentation", 1297] 1298 1299[[package]] 1300name = "cookie" 1301version = "0.16.2" 1302source = "registry+https://github.com/rust-lang/crates.io-index" 1303checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 1304dependencies = [ 1305 "aes-gcm", 1306 "base64 0.20.0", 1307 "hkdf", 1308 "hmac", 1309 "percent-encoding", 1310 "rand 0.8.5", 1311 "sha2", 1312 "subtle", 1313 "time", 1314 "version_check", 1315] 1316 1317[[package]] 1318name = "core-foundation" 1319version = "0.9.4" 1320source = "registry+https://github.com/rust-lang/crates.io-index" 1321checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1322dependencies = [ 1323 "core-foundation-sys", 1324 "libc", 1325] 1326 1327[[package]] 1328name = "core-foundation" 1329version = "0.10.0" 1330source = "registry+https://github.com/rust-lang/crates.io-index" 1331checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" 1332dependencies = [ 1333 "core-foundation-sys", 1334 "libc", 1335] 1336 1337[[package]] 1338name = "core-foundation-sys" 1339version = "0.8.7" 1340source = "registry+https://github.com/rust-lang/crates.io-index" 1341checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 1342 1343[[package]] 1344name = "cpufeatures" 1345version = "0.2.17" 1346source = "registry+https://github.com/rust-lang/crates.io-index" 1347checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 1348dependencies = [ 1349 "libc", 1350] 1351 1352[[package]] 1353name = "crc" 1354version = "3.3.0" 1355source = "registry+https://github.com/rust-lang/crates.io-index" 1356checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" 1357dependencies = [ 1358 "crc-catalog", 1359] 1360 1361[[package]] 1362name = "crc-catalog" 1363version = "2.4.0" 1364source = "registry+https://github.com/rust-lang/crates.io-index" 1365checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1366 1367[[package]] 1368name = "crc32fast" 1369version = "1.4.2" 1370source = "registry+https://github.com/rust-lang/crates.io-index" 1371checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 1372dependencies = [ 1373 "cfg-if", 1374] 1375 1376[[package]] 1377name = "crossbeam-channel" 1378version = "0.5.15" 1379source = "registry+https://github.com/rust-lang/crates.io-index" 1380checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 1381dependencies = [ 1382 "crossbeam-utils", 1383] 1384 1385[[package]] 1386name = "crossbeam-deque" 1387version = "0.8.6" 1388source = "registry+https://github.com/rust-lang/crates.io-index" 1389checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 1390dependencies = [ 1391 "crossbeam-epoch", 1392 "crossbeam-utils", 1393] 1394 1395[[package]] 1396name = "crossbeam-epoch" 1397version = "0.9.18" 1398source = "registry+https://github.com/rust-lang/crates.io-index" 1399checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1400dependencies = [ 1401 "crossbeam-utils", 1402] 1403 1404[[package]] 1405name = "crossbeam-queue" 1406version = "0.3.12" 1407source = "registry+https://github.com/rust-lang/crates.io-index" 1408checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 1409dependencies = [ 1410 "crossbeam-utils", 1411] 1412 1413[[package]] 1414name = "crossbeam-utils" 1415version = "0.8.21" 1416source = "registry+https://github.com/rust-lang/crates.io-index" 1417checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 1418 1419[[package]] 1420name = "crossterm" 1421version = "0.28.1" 1422source = "registry+https://github.com/rust-lang/crates.io-index" 1423checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" 1424dependencies = [ 1425 "bitflags 2.9.1", 1426 "crossterm_winapi", 1427 "parking_lot", 1428 "rustix 0.38.44", 1429 "winapi", 1430] 1431 1432[[package]] 1433name = "crossterm_winapi" 1434version = "0.9.1" 1435source = "registry+https://github.com/rust-lang/crates.io-index" 1436checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 1437dependencies = [ 1438 "winapi", 1439] 1440 1441[[package]] 1442name = "crunchy" 1443version = "0.2.3" 1444source = "registry+https://github.com/rust-lang/crates.io-index" 1445checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929" 1446 1447[[package]] 1448name = "crypto-common" 1449version = "0.1.6" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1452dependencies = [ 1453 "generic-array", 1454 "rand_core 0.6.4", 1455 "typenum", 1456] 1457 1458[[package]] 1459name = "ctr" 1460version = "0.9.2" 1461source = "registry+https://github.com/rust-lang/crates.io-index" 1462checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1463dependencies = [ 1464 "cipher", 1465] 1466 1467[[package]] 1468name = "curve25519-dalek" 1469version = "4.1.3" 1470source = "registry+https://github.com/rust-lang/crates.io-index" 1471checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1472dependencies = [ 1473 "cfg-if", 1474 "cpufeatures", 1475 "curve25519-dalek-derive", 1476 "digest", 1477 "fiat-crypto", 1478 "rustc_version", 1479 "subtle", 1480] 1481 1482[[package]] 1483name = "curve25519-dalek-derive" 1484version = "0.1.1" 1485source = "registry+https://github.com/rust-lang/crates.io-index" 1486checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1487dependencies = [ 1488 "proc-macro2", 1489 "quote", 1490 "syn 2.0.101", 1491] 1492 1493[[package]] 1494name = "data-encoding" 1495version = "2.9.0" 1496source = "registry+https://github.com/rust-lang/crates.io-index" 1497checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 1498 1499[[package]] 1500name = "der" 1501version = "0.7.10" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1504dependencies = [ 1505 "const-oid", 1506 "pem-rfc7468", 1507 "zeroize", 1508] 1509 1510[[package]] 1511name = "deranged" 1512version = "0.5.3" 1513source = "registry+https://github.com/rust-lang/crates.io-index" 1514checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc" 1515dependencies = [ 1516 "powerfmt", 1517 "serde", 1518] 1519 1520[[package]] 1521name = "derive_more" 1522version = "0.99.20" 1523source = "registry+https://github.com/rust-lang/crates.io-index" 1524checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" 1525dependencies = [ 1526 "convert_case 0.4.0", 1527 "proc-macro2", 1528 "quote", 1529 "rustc_version", 1530 "syn 2.0.101", 1531] 1532 1533[[package]] 1534name = "derive_more" 1535version = "1.0.0" 1536source = "registry+https://github.com/rust-lang/crates.io-index" 1537checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 1538dependencies = [ 1539 "derive_more-impl 1.0.0", 1540] 1541 1542[[package]] 1543name = "derive_more" 1544version = "2.0.1" 1545source = "registry+https://github.com/rust-lang/crates.io-index" 1546checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" 1547dependencies = [ 1548 "derive_more-impl 2.0.1", 1549] 1550 1551[[package]] 1552name = "derive_more-impl" 1553version = "1.0.0" 1554source = "registry+https://github.com/rust-lang/crates.io-index" 1555checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 1556dependencies = [ 1557 "proc-macro2", 1558 "quote", 1559 "syn 2.0.101", 1560 "unicode-xid", 1561] 1562 1563[[package]] 1564name = "derive_more-impl" 1565version = "2.0.1" 1566source = "registry+https://github.com/rust-lang/crates.io-index" 1567checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" 1568dependencies = [ 1569 "proc-macro2", 1570 "quote", 1571 "syn 2.0.101", 1572 "unicode-xid", 1573] 1574 1575[[package]] 1576name = "digest" 1577version = "0.10.7" 1578source = "registry+https://github.com/rust-lang/crates.io-index" 1579checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1580dependencies = [ 1581 "block-buffer", 1582 "const-oid", 1583 "crypto-common", 1584 "subtle", 1585] 1586 1587[[package]] 1588name = "dirs" 1589version = "6.0.0" 1590source = "registry+https://github.com/rust-lang/crates.io-index" 1591checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" 1592dependencies = [ 1593 "dirs-sys", 1594] 1595 1596[[package]] 1597name = "dirs-sys" 1598version = "0.5.0" 1599source = "registry+https://github.com/rust-lang/crates.io-index" 1600checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" 1601dependencies = [ 1602 "libc", 1603 "option-ext", 1604 "redox_users", 1605 "windows-sys 0.59.0", 1606] 1607 1608[[package]] 1609name = "displaydoc" 1610version = "0.2.5" 1611source = "registry+https://github.com/rust-lang/crates.io-index" 1612checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1613dependencies = [ 1614 "proc-macro2", 1615 "quote", 1616 "syn 2.0.101", 1617] 1618 1619[[package]] 1620name = "dlv-list" 1621version = "0.5.2" 1622source = "registry+https://github.com/rust-lang/crates.io-index" 1623checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" 1624dependencies = [ 1625 "const-random", 1626] 1627 1628[[package]] 1629name = "dotenv" 1630version = "0.15.0" 1631source = "registry+https://github.com/rust-lang/crates.io-index" 1632checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 1633 1634[[package]] 1635name = "dotenvy" 1636version = "0.15.7" 1637source = "registry+https://github.com/rust-lang/crates.io-index" 1638checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1639 1640[[package]] 1641name = "duckdb" 1642version = "1.2.2" 1643source = "registry+https://github.com/rust-lang/crates.io-index" 1644checksum = "49ac283b6621e3becf8014d1efa655522794075834c72f744573debef9c9f6c8" 1645dependencies = [ 1646 "arrow", 1647 "cast", 1648 "chrono", 1649 "fallible-iterator 0.3.0", 1650 "fallible-streaming-iterator", 1651 "hashlink 0.9.1", 1652 "libduckdb-sys", 1653 "memchr", 1654 "num-integer", 1655 "rust_decimal", 1656 "smallvec", 1657 "strum", 1658] 1659 1660[[package]] 1661name = "dyn-clone" 1662version = "1.0.19" 1663source = "registry+https://github.com/rust-lang/crates.io-index" 1664checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" 1665 1666[[package]] 1667name = "ed25519" 1668version = "2.2.3" 1669source = "registry+https://github.com/rust-lang/crates.io-index" 1670checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 1671dependencies = [ 1672 "signature", 1673] 1674 1675[[package]] 1676name = "ed25519-dalek" 1677version = "2.1.1" 1678source = "registry+https://github.com/rust-lang/crates.io-index" 1679checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" 1680dependencies = [ 1681 "curve25519-dalek", 1682 "ed25519", 1683 "sha2", 1684 "signature", 1685 "subtle", 1686] 1687 1688[[package]] 1689name = "either" 1690version = "1.15.0" 1691source = "registry+https://github.com/rust-lang/crates.io-index" 1692checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1693dependencies = [ 1694 "serde", 1695] 1696 1697[[package]] 1698name = "encoding_rs" 1699version = "0.8.35" 1700source = "registry+https://github.com/rust-lang/crates.io-index" 1701checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1702dependencies = [ 1703 "cfg-if", 1704] 1705 1706[[package]] 1707name = "enum-map" 1708version = "2.7.3" 1709source = "registry+https://github.com/rust-lang/crates.io-index" 1710checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9" 1711dependencies = [ 1712 "enum-map-derive", 1713] 1714 1715[[package]] 1716name = "enum-map-derive" 1717version = "0.17.0" 1718source = "registry+https://github.com/rust-lang/crates.io-index" 1719checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb" 1720dependencies = [ 1721 "proc-macro2", 1722 "quote", 1723 "syn 2.0.101", 1724] 1725 1726[[package]] 1727name = "enum_dispatch" 1728version = "0.3.13" 1729source = "registry+https://github.com/rust-lang/crates.io-index" 1730checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" 1731dependencies = [ 1732 "once_cell", 1733 "proc-macro2", 1734 "quote", 1735 "syn 2.0.101", 1736] 1737 1738[[package]] 1739name = "equivalent" 1740version = "1.0.2" 1741source = "registry+https://github.com/rust-lang/crates.io-index" 1742checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1743 1744[[package]] 1745name = "errno" 1746version = "0.3.12" 1747source = "registry+https://github.com/rust-lang/crates.io-index" 1748checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18" 1749dependencies = [ 1750 "libc", 1751 "windows-sys 0.59.0", 1752] 1753 1754[[package]] 1755name = "etcetera" 1756version = "0.8.0" 1757source = "registry+https://github.com/rust-lang/crates.io-index" 1758checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 1759dependencies = [ 1760 "cfg-if", 1761 "home", 1762 "windows-sys 0.48.0", 1763] 1764 1765[[package]] 1766name = "ethnum" 1767version = "1.5.2" 1768source = "registry+https://github.com/rust-lang/crates.io-index" 1769checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b" 1770 1771[[package]] 1772name = "event-listener" 1773version = "5.4.0" 1774source = "registry+https://github.com/rust-lang/crates.io-index" 1775checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" 1776dependencies = [ 1777 "concurrent-queue", 1778 "parking", 1779 "pin-project-lite", 1780] 1781 1782[[package]] 1783name = "extended" 1784version = "0.1.0" 1785source = "registry+https://github.com/rust-lang/crates.io-index" 1786checksum = "af9673d8203fcb076b19dfd17e38b3d4ae9f44959416ea532ce72415a6020365" 1787 1788[[package]] 1789name = "eyre" 1790version = "0.6.12" 1791source = "registry+https://github.com/rust-lang/crates.io-index" 1792checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" 1793dependencies = [ 1794 "indenter", 1795 "once_cell", 1796] 1797 1798[[package]] 1799name = "fallible-iterator" 1800version = "0.2.0" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1803 1804[[package]] 1805name = "fallible-iterator" 1806version = "0.3.0" 1807source = "registry+https://github.com/rust-lang/crates.io-index" 1808checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 1809 1810[[package]] 1811name = "fallible-streaming-iterator" 1812version = "0.1.9" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1815 1816[[package]] 1817name = "fast-float2" 1818version = "0.2.3" 1819source = "registry+https://github.com/rust-lang/crates.io-index" 1820checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55" 1821 1822[[package]] 1823name = "fastrand" 1824version = "2.3.0" 1825source = "registry+https://github.com/rust-lang/crates.io-index" 1826checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1827 1828[[package]] 1829name = "fiat-crypto" 1830version = "0.2.9" 1831source = "registry+https://github.com/rust-lang/crates.io-index" 1832checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 1833 1834[[package]] 1835name = "filetime" 1836version = "0.2.25" 1837source = "registry+https://github.com/rust-lang/crates.io-index" 1838checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" 1839dependencies = [ 1840 "cfg-if", 1841 "libc", 1842 "libredox", 1843 "windows-sys 0.59.0", 1844] 1845 1846[[package]] 1847name = "fixedbitset" 1848version = "0.5.7" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" 1851 1852[[package]] 1853name = "flate2" 1854version = "1.1.1" 1855source = "registry+https://github.com/rust-lang/crates.io-index" 1856checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece" 1857dependencies = [ 1858 "crc32fast", 1859 "miniz_oxide", 1860] 1861 1862[[package]] 1863name = "flume" 1864version = "0.11.1" 1865source = "registry+https://github.com/rust-lang/crates.io-index" 1866checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 1867dependencies = [ 1868 "futures-core", 1869 "futures-sink", 1870 "spin", 1871] 1872 1873[[package]] 1874name = "fnv" 1875version = "1.0.7" 1876source = "registry+https://github.com/rust-lang/crates.io-index" 1877checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1878 1879[[package]] 1880name = "foldhash" 1881version = "0.1.5" 1882source = "registry+https://github.com/rust-lang/crates.io-index" 1883checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 1884 1885[[package]] 1886name = "form_urlencoded" 1887version = "1.2.1" 1888source = "registry+https://github.com/rust-lang/crates.io-index" 1889checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1890dependencies = [ 1891 "percent-encoding", 1892] 1893 1894[[package]] 1895name = "funty" 1896version = "2.0.0" 1897source = "registry+https://github.com/rust-lang/crates.io-index" 1898checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1899 1900[[package]] 1901name = "futures" 1902version = "0.3.31" 1903source = "registry+https://github.com/rust-lang/crates.io-index" 1904checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1905dependencies = [ 1906 "futures-channel", 1907 "futures-core", 1908 "futures-executor", 1909 "futures-io", 1910 "futures-sink", 1911 "futures-task", 1912 "futures-util", 1913] 1914 1915[[package]] 1916name = "futures-channel" 1917version = "0.3.31" 1918source = "registry+https://github.com/rust-lang/crates.io-index" 1919checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1920dependencies = [ 1921 "futures-core", 1922 "futures-sink", 1923] 1924 1925[[package]] 1926name = "futures-core" 1927version = "0.3.31" 1928source = "registry+https://github.com/rust-lang/crates.io-index" 1929checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1930 1931[[package]] 1932name = "futures-executor" 1933version = "0.3.31" 1934source = "registry+https://github.com/rust-lang/crates.io-index" 1935checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1936dependencies = [ 1937 "futures-core", 1938 "futures-task", 1939 "futures-util", 1940] 1941 1942[[package]] 1943name = "futures-intrusive" 1944version = "0.5.0" 1945source = "registry+https://github.com/rust-lang/crates.io-index" 1946checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 1947dependencies = [ 1948 "futures-core", 1949 "lock_api", 1950 "parking_lot", 1951] 1952 1953[[package]] 1954name = "futures-io" 1955version = "0.3.31" 1956source = "registry+https://github.com/rust-lang/crates.io-index" 1957checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1958 1959[[package]] 1960name = "futures-macro" 1961version = "0.3.31" 1962source = "registry+https://github.com/rust-lang/crates.io-index" 1963checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1964dependencies = [ 1965 "proc-macro2", 1966 "quote", 1967 "syn 2.0.101", 1968] 1969 1970[[package]] 1971name = "futures-sink" 1972version = "0.3.31" 1973source = "registry+https://github.com/rust-lang/crates.io-index" 1974checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1975 1976[[package]] 1977name = "futures-task" 1978version = "0.3.31" 1979source = "registry+https://github.com/rust-lang/crates.io-index" 1980checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1981 1982[[package]] 1983name = "futures-timer" 1984version = "3.0.3" 1985source = "registry+https://github.com/rust-lang/crates.io-index" 1986checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 1987dependencies = [ 1988 "gloo-timers", 1989 "send_wrapper", 1990] 1991 1992[[package]] 1993name = "futures-util" 1994version = "0.3.31" 1995source = "registry+https://github.com/rust-lang/crates.io-index" 1996checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1997dependencies = [ 1998 "futures-channel", 1999 "futures-core", 2000 "futures-io", 2001 "futures-macro", 2002 "futures-sink", 2003 "futures-task", 2004 "memchr", 2005 "pin-project-lite", 2006 "pin-utils", 2007 "slab", 2008] 2009 2010[[package]] 2011name = "generic-array" 2012version = "0.14.7" 2013source = "registry+https://github.com/rust-lang/crates.io-index" 2014checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2015dependencies = [ 2016 "typenum", 2017 "version_check", 2018] 2019 2020[[package]] 2021name = "getrandom" 2022version = "0.2.16" 2023source = "registry+https://github.com/rust-lang/crates.io-index" 2024checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 2025dependencies = [ 2026 "cfg-if", 2027 "js-sys", 2028 "libc", 2029 "wasi 0.11.0+wasi-snapshot-preview1", 2030 "wasm-bindgen", 2031] 2032 2033[[package]] 2034name = "getrandom" 2035version = "0.3.3" 2036source = "registry+https://github.com/rust-lang/crates.io-index" 2037checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 2038dependencies = [ 2039 "cfg-if", 2040 "js-sys", 2041 "libc", 2042 "r-efi", 2043 "wasi 0.14.2+wasi-0.2.4", 2044 "wasm-bindgen", 2045] 2046 2047[[package]] 2048name = "ghash" 2049version = "0.5.1" 2050source = "registry+https://github.com/rust-lang/crates.io-index" 2051checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 2052dependencies = [ 2053 "opaque-debug", 2054 "polyval", 2055] 2056 2057[[package]] 2058name = "gimli" 2059version = "0.31.1" 2060source = "registry+https://github.com/rust-lang/crates.io-index" 2061checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 2062 2063[[package]] 2064name = "glob" 2065version = "0.3.2" 2066source = "registry+https://github.com/rust-lang/crates.io-index" 2067checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 2068 2069[[package]] 2070name = "gloo-net" 2071version = "0.6.0" 2072source = "registry+https://github.com/rust-lang/crates.io-index" 2073checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580" 2074dependencies = [ 2075 "futures-channel", 2076 "futures-core", 2077 "futures-sink", 2078 "gloo-utils", 2079 "http 1.3.1", 2080 "js-sys", 2081 "pin-project", 2082 "serde", 2083 "serde_json", 2084 "thiserror 1.0.69", 2085 "wasm-bindgen", 2086 "wasm-bindgen-futures", 2087 "web-sys", 2088] 2089 2090[[package]] 2091name = "gloo-timers" 2092version = "0.2.6" 2093source = "registry+https://github.com/rust-lang/crates.io-index" 2094checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 2095dependencies = [ 2096 "futures-channel", 2097 "futures-core", 2098 "js-sys", 2099 "wasm-bindgen", 2100] 2101 2102[[package]] 2103name = "gloo-utils" 2104version = "0.2.0" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" 2107dependencies = [ 2108 "js-sys", 2109 "serde", 2110 "serde_json", 2111 "wasm-bindgen", 2112 "web-sys", 2113] 2114 2115[[package]] 2116name = "h2" 2117version = "0.3.26" 2118source = "registry+https://github.com/rust-lang/crates.io-index" 2119checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 2120dependencies = [ 2121 "bytes", 2122 "fnv", 2123 "futures-core", 2124 "futures-sink", 2125 "futures-util", 2126 "http 0.2.12", 2127 "indexmap", 2128 "slab", 2129 "tokio", 2130 "tokio-util", 2131 "tracing", 2132] 2133 2134[[package]] 2135name = "h2" 2136version = "0.4.10" 2137source = "registry+https://github.com/rust-lang/crates.io-index" 2138checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5" 2139dependencies = [ 2140 "atomic-waker", 2141 "bytes", 2142 "fnv", 2143 "futures-core", 2144 "futures-sink", 2145 "http 1.3.1", 2146 "indexmap", 2147 "slab", 2148 "tokio", 2149 "tokio-util", 2150 "tracing", 2151] 2152 2153[[package]] 2154name = "half" 2155version = "1.8.3" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" 2158 2159[[package]] 2160name = "half" 2161version = "2.6.0" 2162source = "registry+https://github.com/rust-lang/crates.io-index" 2163checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" 2164dependencies = [ 2165 "cfg-if", 2166 "crunchy", 2167 "num-traits", 2168] 2169 2170[[package]] 2171name = "hash32" 2172version = "0.3.1" 2173source = "registry+https://github.com/rust-lang/crates.io-index" 2174checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" 2175dependencies = [ 2176 "byteorder", 2177] 2178 2179[[package]] 2180name = "hashbrown" 2181version = "0.12.3" 2182source = "registry+https://github.com/rust-lang/crates.io-index" 2183checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2184dependencies = [ 2185 "ahash 0.7.8", 2186] 2187 2188[[package]] 2189name = "hashbrown" 2190version = "0.14.5" 2191source = "registry+https://github.com/rust-lang/crates.io-index" 2192checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 2193dependencies = [ 2194 "ahash 0.8.12", 2195 "allocator-api2", 2196 "rayon", 2197 "serde", 2198] 2199 2200[[package]] 2201name = "hashbrown" 2202version = "0.15.3" 2203source = "registry+https://github.com/rust-lang/crates.io-index" 2204checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" 2205dependencies = [ 2206 "allocator-api2", 2207 "equivalent", 2208 "foldhash", 2209 "rayon", 2210 "serde", 2211] 2212 2213[[package]] 2214name = "hashlink" 2215version = "0.9.1" 2216source = "registry+https://github.com/rust-lang/crates.io-index" 2217checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" 2218dependencies = [ 2219 "hashbrown 0.14.5", 2220] 2221 2222[[package]] 2223name = "hashlink" 2224version = "0.10.0" 2225source = "registry+https://github.com/rust-lang/crates.io-index" 2226checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 2227dependencies = [ 2228 "hashbrown 0.15.3", 2229] 2230 2231[[package]] 2232name = "heapless" 2233version = "0.8.0" 2234source = "registry+https://github.com/rust-lang/crates.io-index" 2235checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" 2236dependencies = [ 2237 "hash32", 2238 "stable_deref_trait", 2239] 2240 2241[[package]] 2242name = "heck" 2243version = "0.4.1" 2244source = "registry+https://github.com/rust-lang/crates.io-index" 2245checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2246 2247[[package]] 2248name = "heck" 2249version = "0.5.0" 2250source = "registry+https://github.com/rust-lang/crates.io-index" 2251checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2252 2253[[package]] 2254name = "hermit-abi" 2255version = "0.5.2" 2256source = "registry+https://github.com/rust-lang/crates.io-index" 2257checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 2258 2259[[package]] 2260name = "hex" 2261version = "0.4.3" 2262source = "registry+https://github.com/rust-lang/crates.io-index" 2263checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2264 2265[[package]] 2266name = "hkdf" 2267version = "0.12.4" 2268source = "registry+https://github.com/rust-lang/crates.io-index" 2269checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2270dependencies = [ 2271 "hmac", 2272] 2273 2274[[package]] 2275name = "hmac" 2276version = "0.12.1" 2277source = "registry+https://github.com/rust-lang/crates.io-index" 2278checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2279dependencies = [ 2280 "digest", 2281] 2282 2283[[package]] 2284name = "home" 2285version = "0.5.11" 2286source = "registry+https://github.com/rust-lang/crates.io-index" 2287checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" 2288dependencies = [ 2289 "windows-sys 0.59.0", 2290] 2291 2292[[package]] 2293name = "hostname" 2294version = "0.3.1" 2295source = "registry+https://github.com/rust-lang/crates.io-index" 2296checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 2297dependencies = [ 2298 "libc", 2299 "match_cfg", 2300 "winapi", 2301] 2302 2303[[package]] 2304name = "http" 2305version = "0.2.12" 2306source = "registry+https://github.com/rust-lang/crates.io-index" 2307checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2308dependencies = [ 2309 "bytes", 2310 "fnv", 2311 "itoa", 2312] 2313 2314[[package]] 2315name = "http" 2316version = "1.3.1" 2317source = "registry+https://github.com/rust-lang/crates.io-index" 2318checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 2319dependencies = [ 2320 "bytes", 2321 "fnv", 2322 "itoa", 2323] 2324 2325[[package]] 2326name = "http-body" 2327version = "0.4.6" 2328source = "registry+https://github.com/rust-lang/crates.io-index" 2329checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2330dependencies = [ 2331 "bytes", 2332 "http 0.2.12", 2333 "pin-project-lite", 2334] 2335 2336[[package]] 2337name = "http-body" 2338version = "1.0.1" 2339source = "registry+https://github.com/rust-lang/crates.io-index" 2340checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 2341dependencies = [ 2342 "bytes", 2343 "http 1.3.1", 2344] 2345 2346[[package]] 2347name = "http-body-util" 2348version = "0.1.3" 2349source = "registry+https://github.com/rust-lang/crates.io-index" 2350checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 2351dependencies = [ 2352 "bytes", 2353 "futures-core", 2354 "http 1.3.1", 2355 "http-body 1.0.1", 2356 "pin-project-lite", 2357] 2358 2359[[package]] 2360name = "httparse" 2361version = "1.10.1" 2362source = "registry+https://github.com/rust-lang/crates.io-index" 2363checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 2364 2365[[package]] 2366name = "httpdate" 2367version = "1.0.3" 2368source = "registry+https://github.com/rust-lang/crates.io-index" 2369checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2370 2371[[package]] 2372name = "hyper" 2373version = "0.14.32" 2374source = "registry+https://github.com/rust-lang/crates.io-index" 2375checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" 2376dependencies = [ 2377 "bytes", 2378 "futures-channel", 2379 "futures-core", 2380 "futures-util", 2381 "http 0.2.12", 2382 "http-body 0.4.6", 2383 "httparse", 2384 "httpdate", 2385 "itoa", 2386 "pin-project-lite", 2387 "socket2", 2388 "tokio", 2389 "tower-service", 2390 "tracing", 2391 "want", 2392] 2393 2394[[package]] 2395name = "hyper" 2396version = "1.6.0" 2397source = "registry+https://github.com/rust-lang/crates.io-index" 2398checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 2399dependencies = [ 2400 "bytes", 2401 "futures-channel", 2402 "futures-util", 2403 "h2 0.4.10", 2404 "http 1.3.1", 2405 "http-body 1.0.1", 2406 "httparse", 2407 "itoa", 2408 "pin-project-lite", 2409 "smallvec", 2410 "tokio", 2411 "want", 2412] 2413 2414[[package]] 2415name = "hyper-rustls" 2416version = "0.24.2" 2417source = "registry+https://github.com/rust-lang/crates.io-index" 2418checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2419dependencies = [ 2420 "futures-util", 2421 "http 0.2.12", 2422 "hyper 0.14.32", 2423 "rustls 0.21.12", 2424 "tokio", 2425 "tokio-rustls 0.24.1", 2426] 2427 2428[[package]] 2429name = "hyper-rustls" 2430version = "0.27.6" 2431source = "registry+https://github.com/rust-lang/crates.io-index" 2432checksum = "03a01595e11bdcec50946522c32dde3fc6914743000a68b93000965f2f02406d" 2433dependencies = [ 2434 "http 1.3.1", 2435 "hyper 1.6.0", 2436 "hyper-util", 2437 "log", 2438 "rustls 0.23.27", 2439 "rustls-pki-types", 2440 "tokio", 2441 "tokio-rustls 0.26.2", 2442 "tower-service", 2443 "webpki-roots 1.0.0", 2444] 2445 2446[[package]] 2447name = "hyper-util" 2448version = "0.1.12" 2449source = "registry+https://github.com/rust-lang/crates.io-index" 2450checksum = "cf9f1e950e0d9d1d3c47184416723cf29c0d1f93bd8cccf37e4beb6b44f31710" 2451dependencies = [ 2452 "bytes", 2453 "futures-channel", 2454 "futures-util", 2455 "http 1.3.1", 2456 "http-body 1.0.1", 2457 "hyper 1.6.0", 2458 "libc", 2459 "pin-project-lite", 2460 "socket2", 2461 "tokio", 2462 "tower-service", 2463 "tracing", 2464] 2465 2466[[package]] 2467name = "iana-time-zone" 2468version = "0.1.63" 2469source = "registry+https://github.com/rust-lang/crates.io-index" 2470checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" 2471dependencies = [ 2472 "android_system_properties", 2473 "core-foundation-sys", 2474 "iana-time-zone-haiku", 2475 "js-sys", 2476 "log", 2477 "wasm-bindgen", 2478 "windows-core 0.61.2", 2479] 2480 2481[[package]] 2482name = "iana-time-zone-haiku" 2483version = "0.1.2" 2484source = "registry+https://github.com/rust-lang/crates.io-index" 2485checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2486dependencies = [ 2487 "cc", 2488] 2489 2490[[package]] 2491name = "icu_collections" 2492version = "2.0.0" 2493source = "registry+https://github.com/rust-lang/crates.io-index" 2494checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 2495dependencies = [ 2496 "displaydoc", 2497 "potential_utf", 2498 "yoke", 2499 "zerofrom", 2500 "zerovec", 2501] 2502 2503[[package]] 2504name = "icu_locale_core" 2505version = "2.0.0" 2506source = "registry+https://github.com/rust-lang/crates.io-index" 2507checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 2508dependencies = [ 2509 "displaydoc", 2510 "litemap", 2511 "tinystr", 2512 "writeable", 2513 "zerovec", 2514] 2515 2516[[package]] 2517name = "icu_normalizer" 2518version = "2.0.0" 2519source = "registry+https://github.com/rust-lang/crates.io-index" 2520checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 2521dependencies = [ 2522 "displaydoc", 2523 "icu_collections", 2524 "icu_normalizer_data", 2525 "icu_properties", 2526 "icu_provider", 2527 "smallvec", 2528 "zerovec", 2529] 2530 2531[[package]] 2532name = "icu_normalizer_data" 2533version = "2.0.0" 2534source = "registry+https://github.com/rust-lang/crates.io-index" 2535checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 2536 2537[[package]] 2538name = "icu_properties" 2539version = "2.0.1" 2540source = "registry+https://github.com/rust-lang/crates.io-index" 2541checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 2542dependencies = [ 2543 "displaydoc", 2544 "icu_collections", 2545 "icu_locale_core", 2546 "icu_properties_data", 2547 "icu_provider", 2548 "potential_utf", 2549 "zerotrie", 2550 "zerovec", 2551] 2552 2553[[package]] 2554name = "icu_properties_data" 2555version = "2.0.1" 2556source = "registry+https://github.com/rust-lang/crates.io-index" 2557checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 2558 2559[[package]] 2560name = "icu_provider" 2561version = "2.0.0" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 2564dependencies = [ 2565 "displaydoc", 2566 "icu_locale_core", 2567 "stable_deref_trait", 2568 "tinystr", 2569 "writeable", 2570 "yoke", 2571 "zerofrom", 2572 "zerotrie", 2573 "zerovec", 2574] 2575 2576[[package]] 2577name = "idna" 2578version = "1.0.3" 2579source = "registry+https://github.com/rust-lang/crates.io-index" 2580checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 2581dependencies = [ 2582 "idna_adapter", 2583 "smallvec", 2584 "utf8_iter", 2585] 2586 2587[[package]] 2588name = "idna_adapter" 2589version = "1.2.1" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 2592dependencies = [ 2593 "icu_normalizer", 2594 "icu_properties", 2595] 2596 2597[[package]] 2598name = "impl-more" 2599version = "0.1.9" 2600source = "registry+https://github.com/rust-lang/crates.io-index" 2601checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" 2602 2603[[package]] 2604name = "indenter" 2605version = "0.3.3" 2606source = "registry+https://github.com/rust-lang/crates.io-index" 2607checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" 2608 2609[[package]] 2610name = "indexmap" 2611version = "2.9.0" 2612source = "registry+https://github.com/rust-lang/crates.io-index" 2613checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" 2614dependencies = [ 2615 "equivalent", 2616 "hashbrown 0.15.3", 2617 "serde", 2618] 2619 2620[[package]] 2621name = "inout" 2622version = "0.1.4" 2623source = "registry+https://github.com/rust-lang/crates.io-index" 2624checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 2625dependencies = [ 2626 "generic-array", 2627] 2628 2629[[package]] 2630name = "ipnet" 2631version = "2.11.0" 2632source = "registry+https://github.com/rust-lang/crates.io-index" 2633checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 2634 2635[[package]] 2636name = "is-terminal" 2637version = "0.4.16" 2638source = "registry+https://github.com/rust-lang/crates.io-index" 2639checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" 2640dependencies = [ 2641 "hermit-abi", 2642 "libc", 2643 "windows-sys 0.59.0", 2644] 2645 2646[[package]] 2647name = "is_ci" 2648version = "1.2.0" 2649source = "registry+https://github.com/rust-lang/crates.io-index" 2650checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" 2651 2652[[package]] 2653name = "is_terminal_polyfill" 2654version = "1.70.1" 2655source = "registry+https://github.com/rust-lang/crates.io-index" 2656checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 2657 2658[[package]] 2659name = "itertools" 2660version = "0.13.0" 2661source = "registry+https://github.com/rust-lang/crates.io-index" 2662checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 2663dependencies = [ 2664 "either", 2665] 2666 2667[[package]] 2668name = "itoa" 2669version = "1.0.15" 2670source = "registry+https://github.com/rust-lang/crates.io-index" 2671checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 2672 2673[[package]] 2674name = "jni" 2675version = "0.21.1" 2676source = "registry+https://github.com/rust-lang/crates.io-index" 2677checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 2678dependencies = [ 2679 "cesu8", 2680 "cfg-if", 2681 "combine", 2682 "jni-sys", 2683 "log", 2684 "thiserror 1.0.69", 2685 "walkdir", 2686 "windows-sys 0.45.0", 2687] 2688 2689[[package]] 2690name = "jni-sys" 2691version = "0.3.0" 2692source = "registry+https://github.com/rust-lang/crates.io-index" 2693checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 2694 2695[[package]] 2696name = "jobserver" 2697version = "0.1.33" 2698source = "registry+https://github.com/rust-lang/crates.io-index" 2699checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" 2700dependencies = [ 2701 "getrandom 0.3.3", 2702 "libc", 2703] 2704 2705[[package]] 2706name = "js-sys" 2707version = "0.3.77" 2708source = "registry+https://github.com/rust-lang/crates.io-index" 2709checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 2710dependencies = [ 2711 "once_cell", 2712 "wasm-bindgen", 2713] 2714 2715[[package]] 2716name = "jsonrpsee" 2717version = "0.25.1" 2718source = "registry+https://github.com/rust-lang/crates.io-index" 2719checksum = "1fba77a59c4c644fd48732367624d1bcf6f409f9c9a286fbc71d2f1fc0b2ea16" 2720dependencies = [ 2721 "jsonrpsee-client-transport", 2722 "jsonrpsee-core", 2723 "jsonrpsee-http-client", 2724 "jsonrpsee-types", 2725 "jsonrpsee-wasm-client", 2726 "jsonrpsee-ws-client", 2727 "tokio", 2728] 2729 2730[[package]] 2731name = "jsonrpsee-client-transport" 2732version = "0.25.1" 2733source = "registry+https://github.com/rust-lang/crates.io-index" 2734checksum = "a2a320a3f1464e4094f780c4d48413acd786ce5627aaaecfac9e9c7431d13ae1" 2735dependencies = [ 2736 "base64 0.22.1", 2737 "futures-channel", 2738 "futures-util", 2739 "gloo-net", 2740 "http 1.3.1", 2741 "jsonrpsee-core", 2742 "pin-project", 2743 "rustls 0.23.27", 2744 "rustls-pki-types", 2745 "rustls-platform-verifier", 2746 "soketto", 2747 "thiserror 2.0.12", 2748 "tokio", 2749 "tokio-rustls 0.26.2", 2750 "tokio-util", 2751 "tracing", 2752 "url", 2753] 2754 2755[[package]] 2756name = "jsonrpsee-core" 2757version = "0.25.1" 2758source = "registry+https://github.com/rust-lang/crates.io-index" 2759checksum = "693c93cbb7db25f4108ed121304b671a36002c2db67dff2ee4391a688c738547" 2760dependencies = [ 2761 "async-trait", 2762 "bytes", 2763 "futures-timer", 2764 "futures-util", 2765 "http 1.3.1", 2766 "http-body 1.0.1", 2767 "http-body-util", 2768 "jsonrpsee-types", 2769 "pin-project", 2770 "rustc-hash", 2771 "serde", 2772 "serde_json", 2773 "thiserror 2.0.12", 2774 "tokio", 2775 "tokio-stream", 2776 "tower", 2777 "tracing", 2778 "wasm-bindgen-futures", 2779] 2780 2781[[package]] 2782name = "jsonrpsee-http-client" 2783version = "0.25.1" 2784source = "registry+https://github.com/rust-lang/crates.io-index" 2785checksum = "6962d2bd295f75e97dd328891e58fce166894b974c1f7ce2e7597f02eeceb791" 2786dependencies = [ 2787 "base64 0.22.1", 2788 "http-body 1.0.1", 2789 "hyper 1.6.0", 2790 "hyper-rustls 0.27.6", 2791 "hyper-util", 2792 "jsonrpsee-core", 2793 "jsonrpsee-types", 2794 "rustls 0.23.27", 2795 "rustls-platform-verifier", 2796 "serde", 2797 "serde_json", 2798 "thiserror 2.0.12", 2799 "tokio", 2800 "tower", 2801 "url", 2802] 2803 2804[[package]] 2805name = "jsonrpsee-types" 2806version = "0.25.1" 2807source = "registry+https://github.com/rust-lang/crates.io-index" 2808checksum = "66df7256371c45621b3b7d2fb23aea923d577616b9c0e9c0b950a6ea5c2be0ca" 2809dependencies = [ 2810 "http 1.3.1", 2811 "serde", 2812 "serde_json", 2813 "thiserror 2.0.12", 2814] 2815 2816[[package]] 2817name = "jsonrpsee-wasm-client" 2818version = "0.25.1" 2819source = "registry+https://github.com/rust-lang/crates.io-index" 2820checksum = "6b67695cbcf4653f39f8f8738925547e0e23fd9fe315bccf951097b9f6a38781" 2821dependencies = [ 2822 "jsonrpsee-client-transport", 2823 "jsonrpsee-core", 2824 "jsonrpsee-types", 2825 "tower", 2826] 2827 2828[[package]] 2829name = "jsonrpsee-ws-client" 2830version = "0.25.1" 2831source = "registry+https://github.com/rust-lang/crates.io-index" 2832checksum = "2da2694c9ff271a9d3ebfe520f6b36820e85133a51be77a3cb549fd615095261" 2833dependencies = [ 2834 "http 1.3.1", 2835 "jsonrpsee-client-transport", 2836 "jsonrpsee-core", 2837 "jsonrpsee-types", 2838 "tower", 2839 "url", 2840] 2841 2842[[package]] 2843name = "jsonwebtoken" 2844version = "9.3.1" 2845source = "registry+https://github.com/rust-lang/crates.io-index" 2846checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" 2847dependencies = [ 2848 "base64 0.22.1", 2849 "js-sys", 2850 "pem", 2851 "ring", 2852 "serde", 2853 "serde_json", 2854 "simple_asn1", 2855] 2856 2857[[package]] 2858name = "language-tags" 2859version = "0.3.2" 2860source = "registry+https://github.com/rust-lang/crates.io-index" 2861checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 2862 2863[[package]] 2864name = "lazy_static" 2865version = "1.5.0" 2866source = "registry+https://github.com/rust-lang/crates.io-index" 2867checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2868dependencies = [ 2869 "spin", 2870] 2871 2872[[package]] 2873name = "lexical-core" 2874version = "1.0.5" 2875source = "registry+https://github.com/rust-lang/crates.io-index" 2876checksum = "b765c31809609075565a70b4b71402281283aeda7ecaf4818ac14a7b2ade8958" 2877dependencies = [ 2878 "lexical-parse-float", 2879 "lexical-parse-integer", 2880 "lexical-util", 2881 "lexical-write-float", 2882 "lexical-write-integer", 2883] 2884 2885[[package]] 2886name = "lexical-parse-float" 2887version = "1.0.5" 2888source = "registry+https://github.com/rust-lang/crates.io-index" 2889checksum = "de6f9cb01fb0b08060209a057c048fcbab8717b4c1ecd2eac66ebfe39a65b0f2" 2890dependencies = [ 2891 "lexical-parse-integer", 2892 "lexical-util", 2893 "static_assertions", 2894] 2895 2896[[package]] 2897name = "lexical-parse-integer" 2898version = "1.0.5" 2899source = "registry+https://github.com/rust-lang/crates.io-index" 2900checksum = "72207aae22fc0a121ba7b6d479e42cbfea549af1479c3f3a4f12c70dd66df12e" 2901dependencies = [ 2902 "lexical-util", 2903 "static_assertions", 2904] 2905 2906[[package]] 2907name = "lexical-util" 2908version = "1.0.6" 2909source = "registry+https://github.com/rust-lang/crates.io-index" 2910checksum = "5a82e24bf537fd24c177ffbbdc6ebcc8d54732c35b50a3f28cc3f4e4c949a0b3" 2911dependencies = [ 2912 "static_assertions", 2913] 2914 2915[[package]] 2916name = "lexical-write-float" 2917version = "1.0.5" 2918source = "registry+https://github.com/rust-lang/crates.io-index" 2919checksum = "c5afc668a27f460fb45a81a757b6bf2f43c2d7e30cb5a2dcd3abf294c78d62bd" 2920dependencies = [ 2921 "lexical-util", 2922 "lexical-write-integer", 2923 "static_assertions", 2924] 2925 2926[[package]] 2927name = "lexical-write-integer" 2928version = "1.0.5" 2929source = "registry+https://github.com/rust-lang/crates.io-index" 2930checksum = "629ddff1a914a836fb245616a7888b62903aae58fa771e1d83943035efa0f978" 2931dependencies = [ 2932 "lexical-util", 2933 "static_assertions", 2934] 2935 2936[[package]] 2937name = "libc" 2938version = "0.2.172" 2939source = "registry+https://github.com/rust-lang/crates.io-index" 2940checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" 2941 2942[[package]] 2943name = "libduckdb-sys" 2944version = "1.2.2" 2945source = "registry+https://github.com/rust-lang/crates.io-index" 2946checksum = "12cac9d03484c43fefac8b2066a253c9b0b3b0cd02cbe02a9ea2312f7e382618" 2947dependencies = [ 2948 "autocfg", 2949 "flate2", 2950 "pkg-config", 2951 "serde", 2952 "serde_json", 2953 "tar", 2954 "vcpkg", 2955] 2956 2957[[package]] 2958name = "libloading" 2959version = "0.8.8" 2960source = "registry+https://github.com/rust-lang/crates.io-index" 2961checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" 2962dependencies = [ 2963 "cfg-if", 2964 "windows-targets 0.53.0", 2965] 2966 2967[[package]] 2968name = "libm" 2969version = "0.2.15" 2970source = "registry+https://github.com/rust-lang/crates.io-index" 2971checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 2972 2973[[package]] 2974name = "libredox" 2975version = "0.1.3" 2976source = "registry+https://github.com/rust-lang/crates.io-index" 2977checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2978dependencies = [ 2979 "bitflags 2.9.1", 2980 "libc", 2981 "redox_syscall", 2982] 2983 2984[[package]] 2985name = "libsqlite3-sys" 2986version = "0.30.1" 2987source = "registry+https://github.com/rust-lang/crates.io-index" 2988checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 2989dependencies = [ 2990 "pkg-config", 2991 "vcpkg", 2992] 2993 2994[[package]] 2995name = "linux-raw-sys" 2996version = "0.4.15" 2997source = "registry+https://github.com/rust-lang/crates.io-index" 2998checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 2999 3000[[package]] 3001name = "linux-raw-sys" 3002version = "0.9.4" 3003source = "registry+https://github.com/rust-lang/crates.io-index" 3004checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 3005 3006[[package]] 3007name = "litemap" 3008version = "0.8.0" 3009source = "registry+https://github.com/rust-lang/crates.io-index" 3010checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 3011 3012[[package]] 3013name = "local-channel" 3014version = "0.1.5" 3015source = "registry+https://github.com/rust-lang/crates.io-index" 3016checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" 3017dependencies = [ 3018 "futures-core", 3019 "futures-sink", 3020 "local-waker", 3021] 3022 3023[[package]] 3024name = "local-waker" 3025version = "0.1.4" 3026source = "registry+https://github.com/rust-lang/crates.io-index" 3027checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" 3028 3029[[package]] 3030name = "lock_api" 3031version = "0.4.12" 3032source = "registry+https://github.com/rust-lang/crates.io-index" 3033checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 3034dependencies = [ 3035 "autocfg", 3036 "scopeguard", 3037] 3038 3039[[package]] 3040name = "lofty" 3041version = "0.22.4" 3042source = "registry+https://github.com/rust-lang/crates.io-index" 3043checksum = "ca260c51a9c71f823fbfd2e6fbc8eb2ee09834b98c00763d877ca8bfa85cde3e" 3044dependencies = [ 3045 "byteorder", 3046 "data-encoding", 3047 "flate2", 3048 "lofty_attr", 3049 "log", 3050 "ogg_pager", 3051 "paste", 3052] 3053 3054[[package]] 3055name = "lofty_attr" 3056version = "0.11.1" 3057source = "registry+https://github.com/rust-lang/crates.io-index" 3058checksum = "ed9983e64b2358522f745c1251924e3ab7252d55637e80f6a0a3de642d6a9efc" 3059dependencies = [ 3060 "proc-macro2", 3061 "quote", 3062 "syn 2.0.101", 3063] 3064 3065[[package]] 3066name = "log" 3067version = "0.4.28" 3068source = "registry+https://github.com/rust-lang/crates.io-index" 3069checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 3070 3071[[package]] 3072name = "lru-slab" 3073version = "0.1.2" 3074source = "registry+https://github.com/rust-lang/crates.io-index" 3075checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 3076 3077[[package]] 3078name = "lz4" 3079version = "1.28.1" 3080source = "registry+https://github.com/rust-lang/crates.io-index" 3081checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" 3082dependencies = [ 3083 "lz4-sys", 3084] 3085 3086[[package]] 3087name = "lz4-sys" 3088version = "1.11.1+lz4-1.10.0" 3089source = "registry+https://github.com/rust-lang/crates.io-index" 3090checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" 3091dependencies = [ 3092 "cc", 3093 "libc", 3094] 3095 3096[[package]] 3097name = "match_cfg" 3098version = "0.1.0" 3099source = "registry+https://github.com/rust-lang/crates.io-index" 3100checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 3101 3102[[package]] 3103name = "maybe-async" 3104version = "0.2.10" 3105source = "registry+https://github.com/rust-lang/crates.io-index" 3106checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11" 3107dependencies = [ 3108 "proc-macro2", 3109 "quote", 3110 "syn 2.0.101", 3111] 3112 3113[[package]] 3114name = "md-5" 3115version = "0.10.6" 3116source = "registry+https://github.com/rust-lang/crates.io-index" 3117checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 3118dependencies = [ 3119 "cfg-if", 3120 "digest", 3121] 3122 3123[[package]] 3124name = "md5" 3125version = "0.7.0" 3126source = "registry+https://github.com/rust-lang/crates.io-index" 3127checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 3128 3129[[package]] 3130name = "memchr" 3131version = "2.7.4" 3132source = "registry+https://github.com/rust-lang/crates.io-index" 3133checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 3134 3135[[package]] 3136name = "memmap2" 3137version = "0.9.5" 3138source = "registry+https://github.com/rust-lang/crates.io-index" 3139checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" 3140dependencies = [ 3141 "libc", 3142] 3143 3144[[package]] 3145name = "mime" 3146version = "0.3.17" 3147source = "registry+https://github.com/rust-lang/crates.io-index" 3148checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3149 3150[[package]] 3151name = "mime_guess" 3152version = "2.0.5" 3153source = "registry+https://github.com/rust-lang/crates.io-index" 3154checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 3155dependencies = [ 3156 "mime", 3157 "unicase", 3158] 3159 3160[[package]] 3161name = "minimal-lexical" 3162version = "0.2.1" 3163source = "registry+https://github.com/rust-lang/crates.io-index" 3164checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3165 3166[[package]] 3167name = "miniz_oxide" 3168version = "0.8.8" 3169source = "registry+https://github.com/rust-lang/crates.io-index" 3170checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" 3171dependencies = [ 3172 "adler2", 3173] 3174 3175[[package]] 3176name = "mio" 3177version = "1.0.4" 3178source = "registry+https://github.com/rust-lang/crates.io-index" 3179checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 3180dependencies = [ 3181 "libc", 3182 "log", 3183 "wasi 0.11.0+wasi-snapshot-preview1", 3184 "windows-sys 0.59.0", 3185] 3186 3187[[package]] 3188name = "nkeys" 3189version = "0.4.4" 3190source = "registry+https://github.com/rust-lang/crates.io-index" 3191checksum = "9f49e787f4c61cbd0f9320b31cc26e58719f6aa5068e34697dd3aea361412fe3" 3192dependencies = [ 3193 "data-encoding", 3194 "ed25519", 3195 "ed25519-dalek", 3196 "getrandom 0.2.16", 3197 "log", 3198 "rand 0.8.5", 3199 "signatory", 3200] 3201 3202[[package]] 3203name = "nom" 3204version = "7.1.3" 3205source = "registry+https://github.com/rust-lang/crates.io-index" 3206checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3207dependencies = [ 3208 "memchr", 3209 "minimal-lexical", 3210] 3211 3212[[package]] 3213name = "now" 3214version = "0.1.3" 3215source = "registry+https://github.com/rust-lang/crates.io-index" 3216checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0" 3217dependencies = [ 3218 "chrono", 3219] 3220 3221[[package]] 3222name = "ntapi" 3223version = "0.4.1" 3224source = "registry+https://github.com/rust-lang/crates.io-index" 3225checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 3226dependencies = [ 3227 "winapi", 3228] 3229 3230[[package]] 3231name = "nu-ansi-term" 3232version = "0.50.1" 3233source = "registry+https://github.com/rust-lang/crates.io-index" 3234checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" 3235dependencies = [ 3236 "windows-sys 0.52.0", 3237] 3238 3239[[package]] 3240name = "nuid" 3241version = "0.5.0" 3242source = "registry+https://github.com/rust-lang/crates.io-index" 3243checksum = "fc895af95856f929163a0aa20c26a78d26bfdc839f51b9d5aa7a5b79e52b7e83" 3244dependencies = [ 3245 "rand 0.8.5", 3246] 3247 3248[[package]] 3249name = "num" 3250version = "0.4.3" 3251source = "registry+https://github.com/rust-lang/crates.io-index" 3252checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 3253dependencies = [ 3254 "num-bigint", 3255 "num-complex", 3256 "num-integer", 3257 "num-iter", 3258 "num-rational", 3259 "num-traits", 3260] 3261 3262[[package]] 3263name = "num-bigint" 3264version = "0.4.6" 3265source = "registry+https://github.com/rust-lang/crates.io-index" 3266checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 3267dependencies = [ 3268 "num-integer", 3269 "num-traits", 3270] 3271 3272[[package]] 3273name = "num-bigint-dig" 3274version = "0.8.4" 3275source = "registry+https://github.com/rust-lang/crates.io-index" 3276checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 3277dependencies = [ 3278 "byteorder", 3279 "lazy_static", 3280 "libm", 3281 "num-integer", 3282 "num-iter", 3283 "num-traits", 3284 "rand 0.8.5", 3285 "smallvec", 3286 "zeroize", 3287] 3288 3289[[package]] 3290name = "num-complex" 3291version = "0.4.6" 3292source = "registry+https://github.com/rust-lang/crates.io-index" 3293checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 3294dependencies = [ 3295 "num-traits", 3296] 3297 3298[[package]] 3299name = "num-conv" 3300version = "0.1.0" 3301source = "registry+https://github.com/rust-lang/crates.io-index" 3302checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3303 3304[[package]] 3305name = "num-integer" 3306version = "0.1.46" 3307source = "registry+https://github.com/rust-lang/crates.io-index" 3308checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3309dependencies = [ 3310 "num-traits", 3311] 3312 3313[[package]] 3314name = "num-iter" 3315version = "0.1.45" 3316source = "registry+https://github.com/rust-lang/crates.io-index" 3317checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 3318dependencies = [ 3319 "autocfg", 3320 "num-integer", 3321 "num-traits", 3322] 3323 3324[[package]] 3325name = "num-rational" 3326version = "0.4.2" 3327source = "registry+https://github.com/rust-lang/crates.io-index" 3328checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 3329dependencies = [ 3330 "num-bigint", 3331 "num-integer", 3332 "num-traits", 3333] 3334 3335[[package]] 3336name = "num-traits" 3337version = "0.2.19" 3338source = "registry+https://github.com/rust-lang/crates.io-index" 3339checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3340dependencies = [ 3341 "autocfg", 3342 "libm", 3343] 3344 3345[[package]] 3346name = "objc2-core-foundation" 3347version = "0.3.1" 3348source = "registry+https://github.com/rust-lang/crates.io-index" 3349checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" 3350dependencies = [ 3351 "bitflags 2.9.1", 3352] 3353 3354[[package]] 3355name = "object" 3356version = "0.36.7" 3357source = "registry+https://github.com/rust-lang/crates.io-index" 3358checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 3359dependencies = [ 3360 "memchr", 3361] 3362 3363[[package]] 3364name = "ogg_pager" 3365version = "0.7.0" 3366source = "registry+https://github.com/rust-lang/crates.io-index" 3367checksum = "e034c10fb5c1c012c1b327b85df89fb0ef98ae66ec28af30f0d1eed804a40c19" 3368dependencies = [ 3369 "byteorder", 3370] 3371 3372[[package]] 3373name = "once_cell" 3374version = "1.21.3" 3375source = "registry+https://github.com/rust-lang/crates.io-index" 3376checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 3377 3378[[package]] 3379name = "once_cell_polyfill" 3380version = "1.70.1" 3381source = "registry+https://github.com/rust-lang/crates.io-index" 3382checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 3383 3384[[package]] 3385name = "opaque-debug" 3386version = "0.3.1" 3387source = "registry+https://github.com/rust-lang/crates.io-index" 3388checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 3389 3390[[package]] 3391name = "openssl-probe" 3392version = "0.1.6" 3393source = "registry+https://github.com/rust-lang/crates.io-index" 3394checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 3395 3396[[package]] 3397name = "option-ext" 3398version = "0.2.0" 3399source = "registry+https://github.com/rust-lang/crates.io-index" 3400checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 3401 3402[[package]] 3403name = "ordered-multimap" 3404version = "0.7.3" 3405source = "registry+https://github.com/rust-lang/crates.io-index" 3406checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" 3407dependencies = [ 3408 "dlv-list", 3409 "hashbrown 0.14.5", 3410] 3411 3412[[package]] 3413name = "owo-colors" 3414version = "4.2.2" 3415source = "registry+https://github.com/rust-lang/crates.io-index" 3416checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e" 3417dependencies = [ 3418 "supports-color 2.1.0", 3419 "supports-color 3.0.2", 3420] 3421 3422[[package]] 3423name = "parking" 3424version = "2.2.1" 3425source = "registry+https://github.com/rust-lang/crates.io-index" 3426checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 3427 3428[[package]] 3429name = "parking_lot" 3430version = "0.12.3" 3431source = "registry+https://github.com/rust-lang/crates.io-index" 3432checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 3433dependencies = [ 3434 "lock_api", 3435 "parking_lot_core", 3436] 3437 3438[[package]] 3439name = "parking_lot_core" 3440version = "0.9.10" 3441source = "registry+https://github.com/rust-lang/crates.io-index" 3442checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 3443dependencies = [ 3444 "cfg-if", 3445 "libc", 3446 "redox_syscall", 3447 "smallvec", 3448 "windows-targets 0.52.6", 3449] 3450 3451[[package]] 3452name = "parse-zoneinfo" 3453version = "0.3.1" 3454source = "registry+https://github.com/rust-lang/crates.io-index" 3455checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" 3456dependencies = [ 3457 "regex", 3458] 3459 3460[[package]] 3461name = "paste" 3462version = "1.0.15" 3463source = "registry+https://github.com/rust-lang/crates.io-index" 3464checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 3465 3466[[package]] 3467name = "pathsearch" 3468version = "0.2.0" 3469source = "registry+https://github.com/rust-lang/crates.io-index" 3470checksum = "da983bc5e582ab17179c190b4b66c7d76c5943a69c6d34df2a2b6bf8a2977b05" 3471dependencies = [ 3472 "anyhow", 3473 "libc", 3474] 3475 3476[[package]] 3477name = "pem" 3478version = "3.0.5" 3479source = "registry+https://github.com/rust-lang/crates.io-index" 3480checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" 3481dependencies = [ 3482 "base64 0.22.1", 3483 "serde", 3484] 3485 3486[[package]] 3487name = "pem-rfc7468" 3488version = "0.7.0" 3489source = "registry+https://github.com/rust-lang/crates.io-index" 3490checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 3491dependencies = [ 3492 "base64ct", 3493] 3494 3495[[package]] 3496name = "percent-encoding" 3497version = "2.3.1" 3498source = "registry+https://github.com/rust-lang/crates.io-index" 3499checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 3500 3501[[package]] 3502name = "petgraph" 3503version = "0.8.2" 3504source = "registry+https://github.com/rust-lang/crates.io-index" 3505checksum = "54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca" 3506dependencies = [ 3507 "fixedbitset", 3508 "hashbrown 0.15.3", 3509 "indexmap", 3510 "serde", 3511] 3512 3513[[package]] 3514name = "pgrx" 3515version = "0.15.0" 3516source = "registry+https://github.com/rust-lang/crates.io-index" 3517checksum = "bab5bc1d60d3bc3c966d307a3c7313b1ebfb49a0ec183be3f1a057df0bcc9988" 3518dependencies = [ 3519 "atomic-traits", 3520 "bitflags 2.9.1", 3521 "bitvec", 3522 "enum-map", 3523 "heapless", 3524 "libc", 3525 "once_cell", 3526 "pgrx-macros", 3527 "pgrx-pg-sys", 3528 "pgrx-sql-entity-graph", 3529 "seahash", 3530 "serde", 3531 "serde_cbor", 3532 "serde_json", 3533 "thiserror 2.0.12", 3534 "uuid", 3535] 3536 3537[[package]] 3538name = "pgrx-bindgen" 3539version = "0.15.0" 3540source = "registry+https://github.com/rust-lang/crates.io-index" 3541checksum = "9804b74c211a9edd550cd974718f8cc407dec50d8e9cafb906e0b042ba434af0" 3542dependencies = [ 3543 "bindgen", 3544 "cc", 3545 "clang-sys", 3546 "eyre", 3547 "pgrx-pg-config", 3548 "proc-macro2", 3549 "quote", 3550 "regex", 3551 "shlex", 3552 "syn 2.0.101", 3553 "walkdir", 3554] 3555 3556[[package]] 3557name = "pgrx-macros" 3558version = "0.15.0" 3559source = "registry+https://github.com/rust-lang/crates.io-index" 3560checksum = "f230769493bf567f137de23264d604d267dd72b8a77c596528e43cf423c6208e" 3561dependencies = [ 3562 "pgrx-sql-entity-graph", 3563 "proc-macro2", 3564 "quote", 3565 "syn 2.0.101", 3566] 3567 3568[[package]] 3569name = "pgrx-pg-config" 3570version = "0.15.0" 3571source = "registry+https://github.com/rust-lang/crates.io-index" 3572checksum = "49b64c071c2a46a19ab4521120a25b02b598f4abf6e9b4b1769a7922edeee3de" 3573dependencies = [ 3574 "cargo_toml", 3575 "codepage", 3576 "encoding_rs", 3577 "eyre", 3578 "home", 3579 "owo-colors", 3580 "pathsearch", 3581 "serde", 3582 "serde_json", 3583 "thiserror 2.0.12", 3584 "toml 0.8.23", 3585 "url", 3586 "winapi", 3587] 3588 3589[[package]] 3590name = "pgrx-pg-sys" 3591version = "0.15.0" 3592source = "registry+https://github.com/rust-lang/crates.io-index" 3593checksum = "fcbfa98ec7a90252d13a78ac666541173dbb01a2fc1ba20131db6490c0711125" 3594dependencies = [ 3595 "cee-scape", 3596 "libc", 3597 "pgrx-bindgen", 3598 "pgrx-macros", 3599 "pgrx-sql-entity-graph", 3600 "serde", 3601 "sptr", 3602] 3603 3604[[package]] 3605name = "pgrx-sql-entity-graph" 3606version = "0.15.0" 3607source = "registry+https://github.com/rust-lang/crates.io-index" 3608checksum = "e79bbf5a33cff6cfdc6dda3a976cd931c995eaa2c073a7c59b8f8fe8f6faa073" 3609dependencies = [ 3610 "convert_case 0.8.0", 3611 "eyre", 3612 "petgraph", 3613 "proc-macro2", 3614 "quote", 3615 "syn 2.0.101", 3616 "thiserror 2.0.12", 3617 "unescape", 3618] 3619 3620[[package]] 3621name = "pgrx-tests" 3622version = "0.15.0" 3623source = "registry+https://github.com/rust-lang/crates.io-index" 3624checksum = "9791c709882f3af9545bcca71670fdd82768f67a428b416b6210eae3773dbd0d" 3625dependencies = [ 3626 "clap-cargo", 3627 "eyre", 3628 "libc", 3629 "owo-colors", 3630 "paste", 3631 "pgrx", 3632 "pgrx-macros", 3633 "pgrx-pg-config", 3634 "postgres", 3635 "proptest", 3636 "rand 0.9.2", 3637 "regex", 3638 "serde", 3639 "serde_json", 3640 "shlex", 3641 "sysinfo 0.34.2", 3642 "tempfile", 3643 "thiserror 2.0.12", 3644 "winapi", 3645] 3646 3647[[package]] 3648name = "phf" 3649version = "0.11.3" 3650source = "registry+https://github.com/rust-lang/crates.io-index" 3651checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 3652dependencies = [ 3653 "phf_shared", 3654] 3655 3656[[package]] 3657name = "phf_codegen" 3658version = "0.11.3" 3659source = "registry+https://github.com/rust-lang/crates.io-index" 3660checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 3661dependencies = [ 3662 "phf_generator", 3663 "phf_shared", 3664] 3665 3666[[package]] 3667name = "phf_generator" 3668version = "0.11.3" 3669source = "registry+https://github.com/rust-lang/crates.io-index" 3670checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 3671dependencies = [ 3672 "phf_shared", 3673 "rand 0.8.5", 3674] 3675 3676[[package]] 3677name = "phf_shared" 3678version = "0.11.3" 3679source = "registry+https://github.com/rust-lang/crates.io-index" 3680checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 3681dependencies = [ 3682 "siphasher", 3683] 3684 3685[[package]] 3686name = "pin-project" 3687version = "1.1.10" 3688source = "registry+https://github.com/rust-lang/crates.io-index" 3689checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 3690dependencies = [ 3691 "pin-project-internal", 3692] 3693 3694[[package]] 3695name = "pin-project-internal" 3696version = "1.1.10" 3697source = "registry+https://github.com/rust-lang/crates.io-index" 3698checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 3699dependencies = [ 3700 "proc-macro2", 3701 "quote", 3702 "syn 2.0.101", 3703] 3704 3705[[package]] 3706name = "pin-project-lite" 3707version = "0.2.16" 3708source = "registry+https://github.com/rust-lang/crates.io-index" 3709checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 3710 3711[[package]] 3712name = "pin-utils" 3713version = "0.1.0" 3714source = "registry+https://github.com/rust-lang/crates.io-index" 3715checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3716 3717[[package]] 3718name = "pkcs1" 3719version = "0.7.5" 3720source = "registry+https://github.com/rust-lang/crates.io-index" 3721checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 3722dependencies = [ 3723 "der", 3724 "pkcs8", 3725 "spki", 3726] 3727 3728[[package]] 3729name = "pkcs8" 3730version = "0.10.2" 3731source = "registry+https://github.com/rust-lang/crates.io-index" 3732checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3733dependencies = [ 3734 "der", 3735 "spki", 3736] 3737 3738[[package]] 3739name = "pkg-config" 3740version = "0.3.32" 3741source = "registry+https://github.com/rust-lang/crates.io-index" 3742checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 3743 3744[[package]] 3745name = "planus" 3746version = "0.3.1" 3747source = "registry+https://github.com/rust-lang/crates.io-index" 3748checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f" 3749dependencies = [ 3750 "array-init-cursor", 3751] 3752 3753[[package]] 3754name = "polars" 3755version = "0.46.0" 3756source = "registry+https://github.com/rust-lang/crates.io-index" 3757checksum = "72571dde488ecccbe799798bf99ab7308ebdb7cf5d95bcc498dbd5a132f0da4d" 3758dependencies = [ 3759 "getrandom 0.2.16", 3760 "polars-arrow", 3761 "polars-core", 3762 "polars-error", 3763 "polars-io", 3764 "polars-lazy", 3765 "polars-ops", 3766 "polars-parquet", 3767 "polars-sql", 3768 "polars-time", 3769 "polars-utils", 3770 "version_check", 3771] 3772 3773[[package]] 3774name = "polars-arrow" 3775version = "0.46.0" 3776source = "registry+https://github.com/rust-lang/crates.io-index" 3777checksum = "6611c758d52e799761cc25900666b71552e6c929d88052811bc9daad4b3321a8" 3778dependencies = [ 3779 "ahash 0.8.12", 3780 "atoi_simd", 3781 "bytemuck", 3782 "chrono", 3783 "chrono-tz", 3784 "dyn-clone", 3785 "either", 3786 "ethnum", 3787 "getrandom 0.2.16", 3788 "hashbrown 0.15.3", 3789 "itoa", 3790 "lz4", 3791 "num-traits", 3792 "parking_lot", 3793 "polars-arrow-format", 3794 "polars-error", 3795 "polars-schema", 3796 "polars-utils", 3797 "simdutf8", 3798 "streaming-iterator", 3799 "strength_reduce", 3800 "strum_macros 0.26.4", 3801 "version_check", 3802 "zstd", 3803] 3804 3805[[package]] 3806name = "polars-arrow-format" 3807version = "0.1.0" 3808source = "registry+https://github.com/rust-lang/crates.io-index" 3809checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c" 3810dependencies = [ 3811 "planus", 3812 "serde", 3813] 3814 3815[[package]] 3816name = "polars-compute" 3817version = "0.46.0" 3818source = "registry+https://github.com/rust-lang/crates.io-index" 3819checksum = "332f2547dbb27599a8ffe68e56159f5996ba03d1dad0382ccb62c109ceacdeb6" 3820dependencies = [ 3821 "atoi_simd", 3822 "bytemuck", 3823 "chrono", 3824 "either", 3825 "fast-float2", 3826 "itoa", 3827 "num-traits", 3828 "polars-arrow", 3829 "polars-error", 3830 "polars-utils", 3831 "ryu", 3832 "strength_reduce", 3833 "version_check", 3834] 3835 3836[[package]] 3837name = "polars-core" 3838version = "0.46.0" 3839source = "registry+https://github.com/rust-lang/crates.io-index" 3840checksum = "796d06eae7e6e74ed28ea54a8fccc584ebac84e6cf0e1e9ba41ffc807b169a01" 3841dependencies = [ 3842 "ahash 0.8.12", 3843 "bitflags 2.9.1", 3844 "bytemuck", 3845 "chrono", 3846 "chrono-tz", 3847 "comfy-table", 3848 "either", 3849 "hashbrown 0.14.5", 3850 "hashbrown 0.15.3", 3851 "indexmap", 3852 "itoa", 3853 "num-traits", 3854 "once_cell", 3855 "polars-arrow", 3856 "polars-compute", 3857 "polars-error", 3858 "polars-row", 3859 "polars-schema", 3860 "polars-utils", 3861 "rand 0.8.5", 3862 "rand_distr", 3863 "rayon", 3864 "regex", 3865 "strum_macros 0.26.4", 3866 "thiserror 2.0.12", 3867 "version_check", 3868 "xxhash-rust", 3869] 3870 3871[[package]] 3872name = "polars-error" 3873version = "0.46.0" 3874source = "registry+https://github.com/rust-lang/crates.io-index" 3875checksum = "19d6529cae0d1db5ed690e47de41fac9b35ae0c26d476830c2079f130887b847" 3876dependencies = [ 3877 "polars-arrow-format", 3878 "regex", 3879 "simdutf8", 3880 "thiserror 2.0.12", 3881] 3882 3883[[package]] 3884name = "polars-expr" 3885version = "0.46.0" 3886source = "registry+https://github.com/rust-lang/crates.io-index" 3887checksum = "c8e639991a8ad4fb12880ab44bcc3cf44a5703df003142334d9caf86d77d77e7" 3888dependencies = [ 3889 "ahash 0.8.12", 3890 "bitflags 2.9.1", 3891 "hashbrown 0.15.3", 3892 "num-traits", 3893 "once_cell", 3894 "polars-arrow", 3895 "polars-compute", 3896 "polars-core", 3897 "polars-io", 3898 "polars-ops", 3899 "polars-plan", 3900 "polars-row", 3901 "polars-time", 3902 "polars-utils", 3903 "rand 0.8.5", 3904 "rayon", 3905] 3906 3907[[package]] 3908name = "polars-io" 3909version = "0.46.0" 3910source = "registry+https://github.com/rust-lang/crates.io-index" 3911checksum = "719a77e94480f6be090512da196e378cbcbeb3584c6fe1134c600aee906e38ab" 3912dependencies = [ 3913 "ahash 0.8.12", 3914 "async-trait", 3915 "atoi_simd", 3916 "bytes", 3917 "chrono", 3918 "fast-float2", 3919 "futures", 3920 "glob", 3921 "hashbrown 0.15.3", 3922 "home", 3923 "itoa", 3924 "memchr", 3925 "memmap2", 3926 "num-traits", 3927 "once_cell", 3928 "percent-encoding", 3929 "polars-arrow", 3930 "polars-core", 3931 "polars-error", 3932 "polars-parquet", 3933 "polars-schema", 3934 "polars-time", 3935 "polars-utils", 3936 "rayon", 3937 "regex", 3938 "ryu", 3939 "simdutf8", 3940 "tokio", 3941 "tokio-util", 3942] 3943 3944[[package]] 3945name = "polars-lazy" 3946version = "0.46.0" 3947source = "registry+https://github.com/rust-lang/crates.io-index" 3948checksum = "a0a731a672dfc8ac38c1f73c9a4b2ae38d2fc8ac363bfb64c5f3a3e072ffc5ad" 3949dependencies = [ 3950 "ahash 0.8.12", 3951 "bitflags 2.9.1", 3952 "chrono", 3953 "memchr", 3954 "once_cell", 3955 "polars-arrow", 3956 "polars-core", 3957 "polars-expr", 3958 "polars-io", 3959 "polars-mem-engine", 3960 "polars-ops", 3961 "polars-pipe", 3962 "polars-plan", 3963 "polars-stream", 3964 "polars-time", 3965 "polars-utils", 3966 "rayon", 3967 "version_check", 3968] 3969 3970[[package]] 3971name = "polars-mem-engine" 3972version = "0.46.0" 3973source = "registry+https://github.com/rust-lang/crates.io-index" 3974checksum = "33442189bcbf2e2559aa7914db3835429030a13f4f18e43af5fba9d1b018cf12" 3975dependencies = [ 3976 "memmap2", 3977 "polars-arrow", 3978 "polars-core", 3979 "polars-error", 3980 "polars-expr", 3981 "polars-io", 3982 "polars-ops", 3983 "polars-plan", 3984 "polars-time", 3985 "polars-utils", 3986 "rayon", 3987] 3988 3989[[package]] 3990name = "polars-ops" 3991version = "0.46.0" 3992source = "registry+https://github.com/rust-lang/crates.io-index" 3993checksum = "cbb83218b0c216104f0076cd1a005128be078f958125f3d59b094ee73d78c18e" 3994dependencies = [ 3995 "ahash 0.8.12", 3996 "argminmax", 3997 "base64 0.22.1", 3998 "bytemuck", 3999 "chrono", 4000 "chrono-tz", 4001 "either", 4002 "hashbrown 0.15.3", 4003 "hex", 4004 "indexmap", 4005 "memchr", 4006 "num-traits", 4007 "once_cell", 4008 "polars-arrow", 4009 "polars-compute", 4010 "polars-core", 4011 "polars-error", 4012 "polars-schema", 4013 "polars-utils", 4014 "rayon", 4015 "regex", 4016 "regex-syntax", 4017 "strum_macros 0.26.4", 4018 "unicode-normalization", 4019 "unicode-reverse", 4020 "version_check", 4021] 4022 4023[[package]] 4024name = "polars-parquet" 4025version = "0.46.0" 4026source = "registry+https://github.com/rust-lang/crates.io-index" 4027checksum = "5c60ee85535590a38db6c703a21be4cb25342e40f573f070d1e16f9d84a53ac7" 4028dependencies = [ 4029 "ahash 0.8.12", 4030 "async-stream", 4031 "base64 0.22.1", 4032 "bytemuck", 4033 "ethnum", 4034 "futures", 4035 "hashbrown 0.15.3", 4036 "num-traits", 4037 "polars-arrow", 4038 "polars-compute", 4039 "polars-error", 4040 "polars-parquet-format", 4041 "polars-utils", 4042 "simdutf8", 4043 "streaming-decompression", 4044] 4045 4046[[package]] 4047name = "polars-parquet-format" 4048version = "0.1.0" 4049source = "registry+https://github.com/rust-lang/crates.io-index" 4050checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1" 4051dependencies = [ 4052 "async-trait", 4053 "futures", 4054] 4055 4056[[package]] 4057name = "polars-pipe" 4058version = "0.46.0" 4059source = "registry+https://github.com/rust-lang/crates.io-index" 4060checksum = "42d238fb76698f56e51ddfa89b135e4eda56a4767c6e8859eed0ab78386fcd52" 4061dependencies = [ 4062 "crossbeam-channel", 4063 "crossbeam-queue", 4064 "enum_dispatch", 4065 "hashbrown 0.15.3", 4066 "num-traits", 4067 "once_cell", 4068 "polars-arrow", 4069 "polars-compute", 4070 "polars-core", 4071 "polars-expr", 4072 "polars-io", 4073 "polars-ops", 4074 "polars-plan", 4075 "polars-row", 4076 "polars-utils", 4077 "rayon", 4078 "uuid", 4079 "version_check", 4080] 4081 4082[[package]] 4083name = "polars-plan" 4084version = "0.46.0" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "4f03533a93aa66127fcb909a87153a3c7cfee6f0ae59f497e73d7736208da54c" 4087dependencies = [ 4088 "ahash 0.8.12", 4089 "bitflags 2.9.1", 4090 "bytemuck", 4091 "bytes", 4092 "chrono", 4093 "chrono-tz", 4094 "either", 4095 "hashbrown 0.15.3", 4096 "memmap2", 4097 "num-traits", 4098 "once_cell", 4099 "percent-encoding", 4100 "polars-arrow", 4101 "polars-compute", 4102 "polars-core", 4103 "polars-io", 4104 "polars-ops", 4105 "polars-time", 4106 "polars-utils", 4107 "rayon", 4108 "recursive", 4109 "regex", 4110 "strum_macros 0.26.4", 4111 "version_check", 4112] 4113 4114[[package]] 4115name = "polars-row" 4116version = "0.46.0" 4117source = "registry+https://github.com/rust-lang/crates.io-index" 4118checksum = "6bf47f7409f8e75328d7d034be390842924eb276716d0458607be0bddb8cc839" 4119dependencies = [ 4120 "bitflags 2.9.1", 4121 "bytemuck", 4122 "polars-arrow", 4123 "polars-compute", 4124 "polars-error", 4125 "polars-utils", 4126] 4127 4128[[package]] 4129name = "polars-schema" 4130version = "0.46.0" 4131source = "registry+https://github.com/rust-lang/crates.io-index" 4132checksum = "416621ae82b84466cf4ff36838a9b0aeb4a67e76bd3065edc8c9cb7da19b1bc7" 4133dependencies = [ 4134 "indexmap", 4135 "polars-error", 4136 "polars-utils", 4137 "version_check", 4138] 4139 4140[[package]] 4141name = "polars-sql" 4142version = "0.46.0" 4143source = "registry+https://github.com/rust-lang/crates.io-index" 4144checksum = "edaab553b90aa4d6743bb538978e1982368acb58a94408d7dd3299cad49c7083" 4145dependencies = [ 4146 "hex", 4147 "polars-core", 4148 "polars-error", 4149 "polars-lazy", 4150 "polars-ops", 4151 "polars-plan", 4152 "polars-time", 4153 "polars-utils", 4154 "rand 0.8.5", 4155 "regex", 4156 "serde", 4157 "sqlparser", 4158] 4159 4160[[package]] 4161name = "polars-stream" 4162version = "0.46.0" 4163source = "registry+https://github.com/rust-lang/crates.io-index" 4164checksum = "498997b656c779610c1496b3d96a59fe569ef22a5b81ccfe5325cb3df8dff2fd" 4165dependencies = [ 4166 "atomic-waker", 4167 "crossbeam-deque", 4168 "crossbeam-utils", 4169 "futures", 4170 "memmap2", 4171 "parking_lot", 4172 "pin-project-lite", 4173 "polars-core", 4174 "polars-error", 4175 "polars-expr", 4176 "polars-io", 4177 "polars-mem-engine", 4178 "polars-ops", 4179 "polars-parquet", 4180 "polars-plan", 4181 "polars-utils", 4182 "rand 0.8.5", 4183 "rayon", 4184 "recursive", 4185 "slotmap", 4186 "tokio", 4187 "version_check", 4188] 4189 4190[[package]] 4191name = "polars-time" 4192version = "0.46.0" 4193source = "registry+https://github.com/rust-lang/crates.io-index" 4194checksum = "d192efbdab516d28b3fab1709a969e3385bd5cda050b7c9aa9e2502a01fda879" 4195dependencies = [ 4196 "atoi_simd", 4197 "bytemuck", 4198 "chrono", 4199 "chrono-tz", 4200 "now", 4201 "num-traits", 4202 "once_cell", 4203 "polars-arrow", 4204 "polars-compute", 4205 "polars-core", 4206 "polars-error", 4207 "polars-ops", 4208 "polars-utils", 4209 "rayon", 4210 "regex", 4211 "strum_macros 0.26.4", 4212] 4213 4214[[package]] 4215name = "polars-utils" 4216version = "0.46.0" 4217source = "registry+https://github.com/rust-lang/crates.io-index" 4218checksum = "a8f6c8166a4a7fbc15b87c81645ed9e1f0651ff2e8c96cafc40ac5bf43441a10" 4219dependencies = [ 4220 "ahash 0.8.12", 4221 "bytemuck", 4222 "bytes", 4223 "compact_str", 4224 "hashbrown 0.15.3", 4225 "indexmap", 4226 "libc", 4227 "memmap2", 4228 "num-traits", 4229 "once_cell", 4230 "polars-error", 4231 "rand 0.8.5", 4232 "raw-cpuid", 4233 "rayon", 4234 "stacker", 4235 "sysinfo 0.33.1", 4236 "version_check", 4237] 4238 4239[[package]] 4240name = "polyval" 4241version = "0.6.2" 4242source = "registry+https://github.com/rust-lang/crates.io-index" 4243checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 4244dependencies = [ 4245 "cfg-if", 4246 "cpufeatures", 4247 "opaque-debug", 4248 "universal-hash", 4249] 4250 4251[[package]] 4252name = "portable-atomic" 4253version = "1.11.0" 4254source = "registry+https://github.com/rust-lang/crates.io-index" 4255checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" 4256 4257[[package]] 4258name = "postgres" 4259version = "0.19.10" 4260source = "registry+https://github.com/rust-lang/crates.io-index" 4261checksum = "363e6dfbdd780d3aa3597b6eb430db76bb315fa9bad7fae595bb8def808b8470" 4262dependencies = [ 4263 "bytes", 4264 "fallible-iterator 0.2.0", 4265 "futures-util", 4266 "log", 4267 "tokio", 4268 "tokio-postgres", 4269] 4270 4271[[package]] 4272name = "postgres-protocol" 4273version = "0.6.8" 4274source = "registry+https://github.com/rust-lang/crates.io-index" 4275checksum = "76ff0abab4a9b844b93ef7b81f1efc0a366062aaef2cd702c76256b5dc075c54" 4276dependencies = [ 4277 "base64 0.22.1", 4278 "byteorder", 4279 "bytes", 4280 "fallible-iterator 0.2.0", 4281 "hmac", 4282 "md-5", 4283 "memchr", 4284 "rand 0.9.2", 4285 "sha2", 4286 "stringprep", 4287] 4288 4289[[package]] 4290name = "postgres-types" 4291version = "0.2.9" 4292source = "registry+https://github.com/rust-lang/crates.io-index" 4293checksum = "613283563cd90e1dfc3518d548caee47e0e725455ed619881f5cf21f36de4b48" 4294dependencies = [ 4295 "bytes", 4296 "fallible-iterator 0.2.0", 4297 "postgres-protocol", 4298] 4299 4300[[package]] 4301name = "potential_utf" 4302version = "0.1.2" 4303source = "registry+https://github.com/rust-lang/crates.io-index" 4304checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 4305dependencies = [ 4306 "zerovec", 4307] 4308 4309[[package]] 4310name = "powerfmt" 4311version = "0.2.0" 4312source = "registry+https://github.com/rust-lang/crates.io-index" 4313checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4314 4315[[package]] 4316name = "ppv-lite86" 4317version = "0.2.21" 4318source = "registry+https://github.com/rust-lang/crates.io-index" 4319checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 4320dependencies = [ 4321 "zerocopy", 4322] 4323 4324[[package]] 4325name = "proc-macro-crate" 4326version = "3.3.0" 4327source = "registry+https://github.com/rust-lang/crates.io-index" 4328checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" 4329dependencies = [ 4330 "toml_edit", 4331] 4332 4333[[package]] 4334name = "proc-macro2" 4335version = "1.0.95" 4336source = "registry+https://github.com/rust-lang/crates.io-index" 4337checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 4338dependencies = [ 4339 "unicode-ident", 4340] 4341 4342[[package]] 4343name = "proptest" 4344version = "1.7.0" 4345source = "registry+https://github.com/rust-lang/crates.io-index" 4346checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f" 4347dependencies = [ 4348 "bit-set", 4349 "bit-vec", 4350 "bitflags 2.9.1", 4351 "lazy_static", 4352 "num-traits", 4353 "rand 0.9.2", 4354 "rand_chacha 0.9.0", 4355 "rand_xorshift", 4356 "regex-syntax", 4357 "rusty-fork", 4358 "tempfile", 4359 "unarray", 4360] 4361 4362[[package]] 4363name = "psm" 4364version = "0.1.26" 4365source = "registry+https://github.com/rust-lang/crates.io-index" 4366checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f" 4367dependencies = [ 4368 "cc", 4369] 4370 4371[[package]] 4372name = "ptr_meta" 4373version = "0.1.4" 4374source = "registry+https://github.com/rust-lang/crates.io-index" 4375checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 4376dependencies = [ 4377 "ptr_meta_derive", 4378] 4379 4380[[package]] 4381name = "ptr_meta_derive" 4382version = "0.1.4" 4383source = "registry+https://github.com/rust-lang/crates.io-index" 4384checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 4385dependencies = [ 4386 "proc-macro2", 4387 "quote", 4388 "syn 1.0.109", 4389] 4390 4391[[package]] 4392name = "quick-error" 4393version = "1.2.3" 4394source = "registry+https://github.com/rust-lang/crates.io-index" 4395checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 4396 4397[[package]] 4398name = "quick-xml" 4399version = "0.32.0" 4400source = "registry+https://github.com/rust-lang/crates.io-index" 4401checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" 4402dependencies = [ 4403 "memchr", 4404 "serde", 4405] 4406 4407[[package]] 4408name = "quick-xml" 4409version = "0.37.5" 4410source = "registry+https://github.com/rust-lang/crates.io-index" 4411checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" 4412dependencies = [ 4413 "memchr", 4414 "serde", 4415] 4416 4417[[package]] 4418name = "quinn" 4419version = "0.11.8" 4420source = "registry+https://github.com/rust-lang/crates.io-index" 4421checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8" 4422dependencies = [ 4423 "bytes", 4424 "cfg_aliases", 4425 "pin-project-lite", 4426 "quinn-proto", 4427 "quinn-udp", 4428 "rustc-hash", 4429 "rustls 0.23.27", 4430 "socket2", 4431 "thiserror 2.0.12", 4432 "tokio", 4433 "tracing", 4434 "web-time", 4435] 4436 4437[[package]] 4438name = "quinn-proto" 4439version = "0.11.12" 4440source = "registry+https://github.com/rust-lang/crates.io-index" 4441checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e" 4442dependencies = [ 4443 "bytes", 4444 "getrandom 0.3.3", 4445 "lru-slab", 4446 "rand 0.9.2", 4447 "ring", 4448 "rustc-hash", 4449 "rustls 0.23.27", 4450 "rustls-pki-types", 4451 "slab", 4452 "thiserror 2.0.12", 4453 "tinyvec", 4454 "tracing", 4455 "web-time", 4456] 4457 4458[[package]] 4459name = "quinn-udp" 4460version = "0.5.12" 4461source = "registry+https://github.com/rust-lang/crates.io-index" 4462checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842" 4463dependencies = [ 4464 "cfg_aliases", 4465 "libc", 4466 "once_cell", 4467 "socket2", 4468 "tracing", 4469 "windows-sys 0.59.0", 4470] 4471 4472[[package]] 4473name = "quote" 4474version = "1.0.40" 4475source = "registry+https://github.com/rust-lang/crates.io-index" 4476checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 4477dependencies = [ 4478 "proc-macro2", 4479] 4480 4481[[package]] 4482name = "r-efi" 4483version = "5.2.0" 4484source = "registry+https://github.com/rust-lang/crates.io-index" 4485checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 4486 4487[[package]] 4488name = "radium" 4489version = "0.7.0" 4490source = "registry+https://github.com/rust-lang/crates.io-index" 4491checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 4492 4493[[package]] 4494name = "raichu" 4495version = "0.1.0" 4496dependencies = [ 4497 "base64 0.22.1", 4498 "getrandom 0.2.16", 4499 "js-sys", 4500 "rand 0.8.5", 4501 "serde_json", 4502 "symphonia", 4503 "wasm-bindgen", 4504 "web-sys", 4505] 4506 4507[[package]] 4508name = "rand" 4509version = "0.8.5" 4510source = "registry+https://github.com/rust-lang/crates.io-index" 4511checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4512dependencies = [ 4513 "libc", 4514 "rand_chacha 0.3.1", 4515 "rand_core 0.6.4", 4516] 4517 4518[[package]] 4519name = "rand" 4520version = "0.9.2" 4521source = "registry+https://github.com/rust-lang/crates.io-index" 4522checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 4523dependencies = [ 4524 "rand_chacha 0.9.0", 4525 "rand_core 0.9.3", 4526] 4527 4528[[package]] 4529name = "rand_chacha" 4530version = "0.3.1" 4531source = "registry+https://github.com/rust-lang/crates.io-index" 4532checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4533dependencies = [ 4534 "ppv-lite86", 4535 "rand_core 0.6.4", 4536] 4537 4538[[package]] 4539name = "rand_chacha" 4540version = "0.9.0" 4541source = "registry+https://github.com/rust-lang/crates.io-index" 4542checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 4543dependencies = [ 4544 "ppv-lite86", 4545 "rand_core 0.9.3", 4546] 4547 4548[[package]] 4549name = "rand_core" 4550version = "0.6.4" 4551source = "registry+https://github.com/rust-lang/crates.io-index" 4552checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4553dependencies = [ 4554 "getrandom 0.2.16", 4555] 4556 4557[[package]] 4558name = "rand_core" 4559version = "0.9.3" 4560source = "registry+https://github.com/rust-lang/crates.io-index" 4561checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 4562dependencies = [ 4563 "getrandom 0.3.3", 4564] 4565 4566[[package]] 4567name = "rand_distr" 4568version = "0.4.3" 4569source = "registry+https://github.com/rust-lang/crates.io-index" 4570checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" 4571dependencies = [ 4572 "num-traits", 4573 "rand 0.8.5", 4574] 4575 4576[[package]] 4577name = "rand_xorshift" 4578version = "0.4.0" 4579source = "registry+https://github.com/rust-lang/crates.io-index" 4580checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" 4581dependencies = [ 4582 "rand_core 0.9.3", 4583] 4584 4585[[package]] 4586name = "raw-cpuid" 4587version = "11.5.0" 4588source = "registry+https://github.com/rust-lang/crates.io-index" 4589checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146" 4590dependencies = [ 4591 "bitflags 2.9.1", 4592] 4593 4594[[package]] 4595name = "rayon" 4596version = "1.10.0" 4597source = "registry+https://github.com/rust-lang/crates.io-index" 4598checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 4599dependencies = [ 4600 "either", 4601 "rayon-core", 4602] 4603 4604[[package]] 4605name = "rayon-core" 4606version = "1.12.1" 4607source = "registry+https://github.com/rust-lang/crates.io-index" 4608checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 4609dependencies = [ 4610 "crossbeam-deque", 4611 "crossbeam-utils", 4612] 4613 4614[[package]] 4615name = "recursive" 4616version = "0.1.1" 4617source = "registry+https://github.com/rust-lang/crates.io-index" 4618checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e" 4619dependencies = [ 4620 "recursive-proc-macro-impl", 4621 "stacker", 4622] 4623 4624[[package]] 4625name = "recursive-proc-macro-impl" 4626version = "0.1.1" 4627source = "registry+https://github.com/rust-lang/crates.io-index" 4628checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b" 4629dependencies = [ 4630 "quote", 4631 "syn 2.0.101", 4632] 4633 4634[[package]] 4635name = "redis" 4636version = "0.23.3" 4637source = "registry+https://github.com/rust-lang/crates.io-index" 4638checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba" 4639dependencies = [ 4640 "async-trait", 4641 "bytes", 4642 "combine", 4643 "futures-util", 4644 "itoa", 4645 "percent-encoding", 4646 "pin-project-lite", 4647 "ryu", 4648 "tokio", 4649 "tokio-util", 4650 "url", 4651] 4652 4653[[package]] 4654name = "redis" 4655version = "0.29.5" 4656source = "registry+https://github.com/rust-lang/crates.io-index" 4657checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f" 4658dependencies = [ 4659 "arc-swap", 4660 "bytes", 4661 "combine", 4662 "futures-util", 4663 "itoa", 4664 "num-bigint", 4665 "percent-encoding", 4666 "pin-project-lite", 4667 "rustls 0.23.27", 4668 "rustls-native-certs 0.8.1", 4669 "ryu", 4670 "sha1_smol", 4671 "socket2", 4672 "tokio", 4673 "tokio-rustls 0.26.2", 4674 "tokio-util", 4675 "url", 4676] 4677 4678[[package]] 4679name = "redox_syscall" 4680version = "0.5.12" 4681source = "registry+https://github.com/rust-lang/crates.io-index" 4682checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af" 4683dependencies = [ 4684 "bitflags 2.9.1", 4685] 4686 4687[[package]] 4688name = "redox_users" 4689version = "0.5.0" 4690source = "registry+https://github.com/rust-lang/crates.io-index" 4691checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" 4692dependencies = [ 4693 "getrandom 0.2.16", 4694 "libredox", 4695 "thiserror 2.0.12", 4696] 4697 4698[[package]] 4699name = "regex" 4700version = "1.11.1" 4701source = "registry+https://github.com/rust-lang/crates.io-index" 4702checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 4703dependencies = [ 4704 "aho-corasick", 4705 "memchr", 4706 "regex-automata", 4707 "regex-syntax", 4708] 4709 4710[[package]] 4711name = "regex-automata" 4712version = "0.4.9" 4713source = "registry+https://github.com/rust-lang/crates.io-index" 4714checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 4715dependencies = [ 4716 "aho-corasick", 4717 "memchr", 4718 "regex-syntax", 4719] 4720 4721[[package]] 4722name = "regex-lite" 4723version = "0.1.6" 4724source = "registry+https://github.com/rust-lang/crates.io-index" 4725checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 4726 4727[[package]] 4728name = "regex-syntax" 4729version = "0.8.5" 4730source = "registry+https://github.com/rust-lang/crates.io-index" 4731checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 4732 4733[[package]] 4734name = "rend" 4735version = "0.4.2" 4736source = "registry+https://github.com/rust-lang/crates.io-index" 4737checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 4738dependencies = [ 4739 "bytecheck", 4740] 4741 4742[[package]] 4743name = "reqwest" 4744version = "0.12.15" 4745source = "registry+https://github.com/rust-lang/crates.io-index" 4746checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb" 4747dependencies = [ 4748 "base64 0.22.1", 4749 "bytes", 4750 "futures-core", 4751 "futures-util", 4752 "http 1.3.1", 4753 "http-body 1.0.1", 4754 "http-body-util", 4755 "hyper 1.6.0", 4756 "hyper-rustls 0.27.6", 4757 "hyper-util", 4758 "ipnet", 4759 "js-sys", 4760 "log", 4761 "mime", 4762 "mime_guess", 4763 "once_cell", 4764 "percent-encoding", 4765 "pin-project-lite", 4766 "quinn", 4767 "rustls 0.23.27", 4768 "rustls-pemfile 2.2.0", 4769 "rustls-pki-types", 4770 "serde", 4771 "serde_json", 4772 "serde_urlencoded", 4773 "sync_wrapper", 4774 "tokio", 4775 "tokio-rustls 0.26.2", 4776 "tokio-util", 4777 "tower", 4778 "tower-service", 4779 "url", 4780 "wasm-bindgen", 4781 "wasm-bindgen-futures", 4782 "wasm-streams", 4783 "web-sys", 4784 "webpki-roots 0.26.11", 4785 "windows-registry", 4786] 4787 4788[[package]] 4789name = "ring" 4790version = "0.17.14" 4791source = "registry+https://github.com/rust-lang/crates.io-index" 4792checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 4793dependencies = [ 4794 "cc", 4795 "cfg-if", 4796 "getrandom 0.2.16", 4797 "libc", 4798 "untrusted", 4799 "windows-sys 0.52.0", 4800] 4801 4802[[package]] 4803name = "rkyv" 4804version = "0.7.45" 4805source = "registry+https://github.com/rust-lang/crates.io-index" 4806checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" 4807dependencies = [ 4808 "bitvec", 4809 "bytecheck", 4810 "bytes", 4811 "hashbrown 0.12.3", 4812 "ptr_meta", 4813 "rend", 4814 "rkyv_derive", 4815 "seahash", 4816 "tinyvec", 4817 "uuid", 4818] 4819 4820[[package]] 4821name = "rkyv_derive" 4822version = "0.7.45" 4823source = "registry+https://github.com/rust-lang/crates.io-index" 4824checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" 4825dependencies = [ 4826 "proc-macro2", 4827 "quote", 4828 "syn 1.0.109", 4829] 4830 4831[[package]] 4832name = "rocksky-analytics" 4833version = "0.1.0" 4834dependencies = [ 4835 "actix-web", 4836 "anyhow", 4837 "async-nats", 4838 "chrono", 4839 "clap", 4840 "dotenv", 4841 "duckdb", 4842 "owo-colors", 4843 "polars", 4844 "serde", 4845 "serde_json", 4846 "sqlx", 4847 "tokio", 4848 "tokio-stream", 4849 "tracing", 4850] 4851 4852[[package]] 4853name = "rocksky-connect" 4854version = "0.1.0" 4855dependencies = [ 4856 "anyhow", 4857 "async-trait", 4858 "base64 0.22.1", 4859 "dirs", 4860 "futures-util", 4861 "http 1.3.1", 4862 "jsonrpsee", 4863 "owo-colors", 4864 "reqwest", 4865 "serde", 4866 "serde_json", 4867 "tokio", 4868 "tokio-stream", 4869 "tokio-tungstenite", 4870 "tungstenite", 4871] 4872 4873[[package]] 4874name = "rocksky-dropbox" 4875version = "0.1.0" 4876dependencies = [ 4877 "actix-web", 4878 "aes", 4879 "anyhow", 4880 "async-nats", 4881 "chrono", 4882 "clap", 4883 "ctr", 4884 "dotenv", 4885 "futures", 4886 "hex", 4887 "jsonwebtoken", 4888 "lofty", 4889 "md5", 4890 "owo-colors", 4891 "redis 0.29.5", 4892 "reqwest", 4893 "serde", 4894 "serde_json", 4895 "sha256", 4896 "sqlx", 4897 "symphonia", 4898 "tempfile", 4899 "tokio", 4900 "tokio-stream", 4901 "tracing", 4902] 4903 4904[[package]] 4905name = "rocksky-googledrive" 4906version = "0.1.0" 4907dependencies = [ 4908 "actix-web", 4909 "aes", 4910 "anyhow", 4911 "async-nats", 4912 "chrono", 4913 "clap", 4914 "ctr", 4915 "dotenv", 4916 "futures", 4917 "hex", 4918 "jsonwebtoken", 4919 "lofty", 4920 "md5", 4921 "owo-colors", 4922 "redis 0.29.5", 4923 "reqwest", 4924 "serde", 4925 "serde_json", 4926 "serde_urlencoded", 4927 "sha256", 4928 "sqlx", 4929 "symphonia", 4930 "tempfile", 4931 "tokio", 4932 "tokio-stream", 4933 "tracing", 4934] 4935 4936[[package]] 4937name = "rocksky-jetstream" 4938version = "0.1.0" 4939dependencies = [ 4940 "anyhow", 4941 "async-nats", 4942 "chrono", 4943 "dotenv", 4944 "futures-util", 4945 "owo-colors", 4946 "redis 0.29.5", 4947 "reqwest", 4948 "serde", 4949 "serde_json", 4950 "sha256", 4951 "sqlx", 4952 "time", 4953 "tokio", 4954 "tokio-stream", 4955 "tokio-tungstenite", 4956 "tracing", 4957 "tungstenite", 4958 "url", 4959] 4960 4961[[package]] 4962name = "rocksky-playlists" 4963version = "0.1.0" 4964dependencies = [ 4965 "aes", 4966 "anyhow", 4967 "async-nats", 4968 "chrono", 4969 "clap", 4970 "ctr", 4971 "dotenv", 4972 "duckdb", 4973 "hex", 4974 "jsonwebtoken", 4975 "owo-colors", 4976 "polars", 4977 "reqwest", 4978 "serde", 4979 "serde_json", 4980 "sha2", 4981 "sqlx", 4982 "tokio", 4983 "tokio-stream", 4984 "tracing", 4985] 4986 4987[[package]] 4988name = "rocksky-scrobbler" 4989version = "0.1.0" 4990dependencies = [ 4991 "actix-limitation", 4992 "actix-session 0.10.1", 4993 "actix-web", 4994 "aes", 4995 "anyhow", 4996 "chrono", 4997 "ctr", 4998 "dotenv", 4999 "hex", 5000 "jsonwebtoken", 5001 "md5", 5002 "owo-colors", 5003 "quick-xml 0.37.5", 5004 "rand 0.9.2", 5005 "redis 0.29.5", 5006 "reqwest", 5007 "serde", 5008 "serde_json", 5009 "sqlx", 5010 "tokio", 5011 "tokio-stream", 5012 "tracing", 5013 "uuid", 5014] 5015 5016[[package]] 5017name = "rocksky-spotify" 5018version = "0.1.0" 5019dependencies = [ 5020 "aes", 5021 "anyhow", 5022 "async-nats", 5023 "chrono", 5024 "ctr", 5025 "dotenv", 5026 "hex", 5027 "jsonwebtoken", 5028 "owo-colors", 5029 "redis 0.29.5", 5030 "reqwest", 5031 "serde", 5032 "serde_json", 5033 "sqlx", 5034 "tokio", 5035 "tokio-stream", 5036 "tracing", 5037] 5038 5039[[package]] 5040name = "rocksky-storage" 5041version = "0.1.0" 5042dependencies = [ 5043 "actix-web", 5044 "anyhow", 5045 "dotenv", 5046 "owo-colors", 5047 "rust-s3", 5048 "serde", 5049 "serde_json", 5050 "sqlx", 5051 "tokio", 5052 "tokio-stream", 5053 "tracing", 5054] 5055 5056[[package]] 5057name = "rocksky-tracklist" 5058version = "0.1.0" 5059dependencies = [ 5060 "actix-web", 5061 "anyhow", 5062 "async-nats", 5063 "clap", 5064 "dotenv", 5065 "owo-colors", 5066 "polars", 5067 "rand 0.9.2", 5068 "redis 0.29.5", 5069 "serde", 5070 "serde_json", 5071 "tokio", 5072 "tokio-stream", 5073 "tracing", 5074 "uuid", 5075] 5076 5077[[package]] 5078name = "rocksky-webscrobbler" 5079version = "0.1.0" 5080dependencies = [ 5081 "actix-limitation", 5082 "actix-session 0.10.1", 5083 "actix-web", 5084 "aes", 5085 "anyhow", 5086 "chrono", 5087 "ctr", 5088 "dotenv", 5089 "hex", 5090 "jsonwebtoken", 5091 "md5", 5092 "owo-colors", 5093 "rand 0.9.2", 5094 "redis 0.29.5", 5095 "reqwest", 5096 "serde", 5097 "serde_json", 5098 "sqlx", 5099 "tokio", 5100 "tokio-stream", 5101 "tracing", 5102] 5103 5104[[package]] 5105name = "rockskyd" 5106version = "0.1.0" 5107dependencies = [ 5108 "anyhow", 5109 "clap", 5110 "dotenv", 5111 "owo-colors", 5112 "rocksky-analytics", 5113 "rocksky-dropbox", 5114 "rocksky-googledrive", 5115 "rocksky-jetstream", 5116 "rocksky-playlists", 5117 "rocksky-scrobbler", 5118 "rocksky-spotify", 5119 "rocksky-tracklist", 5120 "rocksky-webscrobbler", 5121 "tokio", 5122 "tracing", 5123 "tracing-log", 5124 "tracing-subscriber", 5125] 5126 5127[[package]] 5128name = "rsa" 5129version = "0.9.8" 5130source = "registry+https://github.com/rust-lang/crates.io-index" 5131checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b" 5132dependencies = [ 5133 "const-oid", 5134 "digest", 5135 "num-bigint-dig", 5136 "num-integer", 5137 "num-traits", 5138 "pkcs1", 5139 "pkcs8", 5140 "rand_core 0.6.4", 5141 "signature", 5142 "spki", 5143 "subtle", 5144 "zeroize", 5145] 5146 5147[[package]] 5148name = "rust-ini" 5149version = "0.21.1" 5150source = "registry+https://github.com/rust-lang/crates.io-index" 5151checksum = "4e310ef0e1b6eeb79169a1171daf9abcb87a2e17c03bee2c4bb100b55c75409f" 5152dependencies = [ 5153 "cfg-if", 5154 "ordered-multimap", 5155 "trim-in-place", 5156] 5157 5158[[package]] 5159name = "rust-s3" 5160version = "0.35.1" 5161source = "registry+https://github.com/rust-lang/crates.io-index" 5162checksum = "c3df3f353b1f4209dcf437d777cda90279c397ab15a0cd6fd06bd32c88591533" 5163dependencies = [ 5164 "async-trait", 5165 "aws-creds", 5166 "aws-region", 5167 "base64 0.22.1", 5168 "bytes", 5169 "cfg-if", 5170 "futures", 5171 "hex", 5172 "hmac", 5173 "http 0.2.12", 5174 "hyper 0.14.32", 5175 "hyper-rustls 0.24.2", 5176 "log", 5177 "maybe-async", 5178 "md5", 5179 "percent-encoding", 5180 "quick-xml 0.32.0", 5181 "rustls 0.21.12", 5182 "rustls-native-certs 0.6.3", 5183 "serde", 5184 "serde_derive", 5185 "serde_json", 5186 "sha2", 5187 "thiserror 1.0.69", 5188 "time", 5189 "tokio", 5190 "tokio-rustls 0.24.1", 5191 "tokio-stream", 5192 "url", 5193] 5194 5195[[package]] 5196name = "rust_decimal" 5197version = "1.37.1" 5198source = "registry+https://github.com/rust-lang/crates.io-index" 5199checksum = "faa7de2ba56ac291bd90c6b9bece784a52ae1411f9506544b3eae36dd2356d50" 5200dependencies = [ 5201 "arrayvec", 5202 "borsh", 5203 "bytes", 5204 "num-traits", 5205 "rand 0.8.5", 5206 "rkyv", 5207 "serde", 5208 "serde_json", 5209] 5210 5211[[package]] 5212name = "rustc-demangle" 5213version = "0.1.24" 5214source = "registry+https://github.com/rust-lang/crates.io-index" 5215checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 5216 5217[[package]] 5218name = "rustc-hash" 5219version = "2.1.1" 5220source = "registry+https://github.com/rust-lang/crates.io-index" 5221checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 5222 5223[[package]] 5224name = "rustc_version" 5225version = "0.4.1" 5226source = "registry+https://github.com/rust-lang/crates.io-index" 5227checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 5228dependencies = [ 5229 "semver", 5230] 5231 5232[[package]] 5233name = "rustix" 5234version = "0.38.44" 5235source = "registry+https://github.com/rust-lang/crates.io-index" 5236checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 5237dependencies = [ 5238 "bitflags 2.9.1", 5239 "errno", 5240 "libc", 5241 "linux-raw-sys 0.4.15", 5242 "windows-sys 0.59.0", 5243] 5244 5245[[package]] 5246name = "rustix" 5247version = "1.0.7" 5248source = "registry+https://github.com/rust-lang/crates.io-index" 5249checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" 5250dependencies = [ 5251 "bitflags 2.9.1", 5252 "errno", 5253 "libc", 5254 "linux-raw-sys 0.9.4", 5255 "windows-sys 0.59.0", 5256] 5257 5258[[package]] 5259name = "rustls" 5260version = "0.21.12" 5261source = "registry+https://github.com/rust-lang/crates.io-index" 5262checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 5263dependencies = [ 5264 "log", 5265 "ring", 5266 "rustls-webpki 0.101.7", 5267 "sct", 5268] 5269 5270[[package]] 5271name = "rustls" 5272version = "0.23.27" 5273source = "registry+https://github.com/rust-lang/crates.io-index" 5274checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321" 5275dependencies = [ 5276 "log", 5277 "once_cell", 5278 "ring", 5279 "rustls-pki-types", 5280 "rustls-webpki 0.103.3", 5281 "subtle", 5282 "zeroize", 5283] 5284 5285[[package]] 5286name = "rustls-native-certs" 5287version = "0.6.3" 5288source = "registry+https://github.com/rust-lang/crates.io-index" 5289checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" 5290dependencies = [ 5291 "openssl-probe", 5292 "rustls-pemfile 1.0.4", 5293 "schannel", 5294 "security-framework 2.11.1", 5295] 5296 5297[[package]] 5298name = "rustls-native-certs" 5299version = "0.7.3" 5300source = "registry+https://github.com/rust-lang/crates.io-index" 5301checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" 5302dependencies = [ 5303 "openssl-probe", 5304 "rustls-pemfile 2.2.0", 5305 "rustls-pki-types", 5306 "schannel", 5307 "security-framework 2.11.1", 5308] 5309 5310[[package]] 5311name = "rustls-native-certs" 5312version = "0.8.1" 5313source = "registry+https://github.com/rust-lang/crates.io-index" 5314checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" 5315dependencies = [ 5316 "openssl-probe", 5317 "rustls-pki-types", 5318 "schannel", 5319 "security-framework 3.2.0", 5320] 5321 5322[[package]] 5323name = "rustls-pemfile" 5324version = "1.0.4" 5325source = "registry+https://github.com/rust-lang/crates.io-index" 5326checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 5327dependencies = [ 5328 "base64 0.21.7", 5329] 5330 5331[[package]] 5332name = "rustls-pemfile" 5333version = "2.2.0" 5334source = "registry+https://github.com/rust-lang/crates.io-index" 5335checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 5336dependencies = [ 5337 "rustls-pki-types", 5338] 5339 5340[[package]] 5341name = "rustls-pki-types" 5342version = "1.12.0" 5343source = "registry+https://github.com/rust-lang/crates.io-index" 5344checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 5345dependencies = [ 5346 "web-time", 5347 "zeroize", 5348] 5349 5350[[package]] 5351name = "rustls-platform-verifier" 5352version = "0.5.3" 5353source = "registry+https://github.com/rust-lang/crates.io-index" 5354checksum = "19787cda76408ec5404443dc8b31795c87cd8fec49762dc75fa727740d34acc1" 5355dependencies = [ 5356 "core-foundation 0.10.0", 5357 "core-foundation-sys", 5358 "jni", 5359 "log", 5360 "once_cell", 5361 "rustls 0.23.27", 5362 "rustls-native-certs 0.8.1", 5363 "rustls-platform-verifier-android", 5364 "rustls-webpki 0.103.3", 5365 "security-framework 3.2.0", 5366 "security-framework-sys", 5367 "webpki-root-certs", 5368 "windows-sys 0.59.0", 5369] 5370 5371[[package]] 5372name = "rustls-platform-verifier-android" 5373version = "0.1.1" 5374source = "registry+https://github.com/rust-lang/crates.io-index" 5375checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" 5376 5377[[package]] 5378name = "rustls-webpki" 5379version = "0.101.7" 5380source = "registry+https://github.com/rust-lang/crates.io-index" 5381checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 5382dependencies = [ 5383 "ring", 5384 "untrusted", 5385] 5386 5387[[package]] 5388name = "rustls-webpki" 5389version = "0.102.8" 5390source = "registry+https://github.com/rust-lang/crates.io-index" 5391checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 5392dependencies = [ 5393 "rustls-pki-types", 5394 "untrusted", 5395] 5396 5397[[package]] 5398name = "rustls-webpki" 5399version = "0.103.3" 5400source = "registry+https://github.com/rust-lang/crates.io-index" 5401checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" 5402dependencies = [ 5403 "ring", 5404 "rustls-pki-types", 5405 "untrusted", 5406] 5407 5408[[package]] 5409name = "rustversion" 5410version = "1.0.21" 5411source = "registry+https://github.com/rust-lang/crates.io-index" 5412checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 5413 5414[[package]] 5415name = "rusty-fork" 5416version = "0.3.0" 5417source = "registry+https://github.com/rust-lang/crates.io-index" 5418checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" 5419dependencies = [ 5420 "fnv", 5421 "quick-error", 5422 "tempfile", 5423 "wait-timeout", 5424] 5425 5426[[package]] 5427name = "ryu" 5428version = "1.0.20" 5429source = "registry+https://github.com/rust-lang/crates.io-index" 5430checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 5431 5432[[package]] 5433name = "same-file" 5434version = "1.0.6" 5435source = "registry+https://github.com/rust-lang/crates.io-index" 5436checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 5437dependencies = [ 5438 "winapi-util", 5439] 5440 5441[[package]] 5442name = "schannel" 5443version = "0.1.27" 5444source = "registry+https://github.com/rust-lang/crates.io-index" 5445checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 5446dependencies = [ 5447 "windows-sys 0.59.0", 5448] 5449 5450[[package]] 5451name = "scopeguard" 5452version = "1.2.0" 5453source = "registry+https://github.com/rust-lang/crates.io-index" 5454checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 5455 5456[[package]] 5457name = "sct" 5458version = "0.7.1" 5459source = "registry+https://github.com/rust-lang/crates.io-index" 5460checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 5461dependencies = [ 5462 "ring", 5463 "untrusted", 5464] 5465 5466[[package]] 5467name = "seahash" 5468version = "4.1.0" 5469source = "registry+https://github.com/rust-lang/crates.io-index" 5470checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 5471 5472[[package]] 5473name = "security-framework" 5474version = "2.11.1" 5475source = "registry+https://github.com/rust-lang/crates.io-index" 5476checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 5477dependencies = [ 5478 "bitflags 2.9.1", 5479 "core-foundation 0.9.4", 5480 "core-foundation-sys", 5481 "libc", 5482 "security-framework-sys", 5483] 5484 5485[[package]] 5486name = "security-framework" 5487version = "3.2.0" 5488source = "registry+https://github.com/rust-lang/crates.io-index" 5489checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" 5490dependencies = [ 5491 "bitflags 2.9.1", 5492 "core-foundation 0.10.0", 5493 "core-foundation-sys", 5494 "libc", 5495 "security-framework-sys", 5496] 5497 5498[[package]] 5499name = "security-framework-sys" 5500version = "2.14.0" 5501source = "registry+https://github.com/rust-lang/crates.io-index" 5502checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 5503dependencies = [ 5504 "core-foundation-sys", 5505 "libc", 5506] 5507 5508[[package]] 5509name = "semver" 5510version = "1.0.26" 5511source = "registry+https://github.com/rust-lang/crates.io-index" 5512checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 5513dependencies = [ 5514 "serde", 5515] 5516 5517[[package]] 5518name = "send_wrapper" 5519version = "0.4.0" 5520source = "registry+https://github.com/rust-lang/crates.io-index" 5521checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" 5522 5523[[package]] 5524name = "serde" 5525version = "1.0.219" 5526source = "registry+https://github.com/rust-lang/crates.io-index" 5527checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 5528dependencies = [ 5529 "serde_derive", 5530] 5531 5532[[package]] 5533name = "serde_cbor" 5534version = "0.11.2" 5535source = "registry+https://github.com/rust-lang/crates.io-index" 5536checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 5537dependencies = [ 5538 "half 1.8.3", 5539 "serde", 5540] 5541 5542[[package]] 5543name = "serde_derive" 5544version = "1.0.219" 5545source = "registry+https://github.com/rust-lang/crates.io-index" 5546checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 5547dependencies = [ 5548 "proc-macro2", 5549 "quote", 5550 "syn 2.0.101", 5551] 5552 5553[[package]] 5554name = "serde_json" 5555version = "1.0.140" 5556source = "registry+https://github.com/rust-lang/crates.io-index" 5557checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 5558dependencies = [ 5559 "itoa", 5560 "memchr", 5561 "ryu", 5562 "serde", 5563] 5564 5565[[package]] 5566name = "serde_nanos" 5567version = "0.1.4" 5568source = "registry+https://github.com/rust-lang/crates.io-index" 5569checksum = "a93142f0367a4cc53ae0fead1bcda39e85beccfad3dcd717656cacab94b12985" 5570dependencies = [ 5571 "serde", 5572] 5573 5574[[package]] 5575name = "serde_repr" 5576version = "0.1.20" 5577source = "registry+https://github.com/rust-lang/crates.io-index" 5578checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 5579dependencies = [ 5580 "proc-macro2", 5581 "quote", 5582 "syn 2.0.101", 5583] 5584 5585[[package]] 5586name = "serde_spanned" 5587version = "0.6.9" 5588source = "registry+https://github.com/rust-lang/crates.io-index" 5589checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 5590dependencies = [ 5591 "serde", 5592] 5593 5594[[package]] 5595name = "serde_spanned" 5596version = "1.0.0" 5597source = "registry+https://github.com/rust-lang/crates.io-index" 5598checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83" 5599dependencies = [ 5600 "serde", 5601] 5602 5603[[package]] 5604name = "serde_urlencoded" 5605version = "0.7.1" 5606source = "registry+https://github.com/rust-lang/crates.io-index" 5607checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 5608dependencies = [ 5609 "form_urlencoded", 5610 "itoa", 5611 "ryu", 5612 "serde", 5613] 5614 5615[[package]] 5616name = "sha1" 5617version = "0.10.6" 5618source = "registry+https://github.com/rust-lang/crates.io-index" 5619checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 5620dependencies = [ 5621 "cfg-if", 5622 "cpufeatures", 5623 "digest", 5624] 5625 5626[[package]] 5627name = "sha1_smol" 5628version = "1.0.1" 5629source = "registry+https://github.com/rust-lang/crates.io-index" 5630checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 5631 5632[[package]] 5633name = "sha2" 5634version = "0.10.9" 5635source = "registry+https://github.com/rust-lang/crates.io-index" 5636checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 5637dependencies = [ 5638 "cfg-if", 5639 "cpufeatures", 5640 "digest", 5641] 5642 5643[[package]] 5644name = "sha256" 5645version = "1.6.0" 5646source = "registry+https://github.com/rust-lang/crates.io-index" 5647checksum = "f880fc8562bdeb709793f00eb42a2ad0e672c4f883bbe59122b926eca935c8f6" 5648dependencies = [ 5649 "async-trait", 5650 "bytes", 5651 "hex", 5652 "sha2", 5653 "tokio", 5654] 5655 5656[[package]] 5657name = "sharded-slab" 5658version = "0.1.7" 5659source = "registry+https://github.com/rust-lang/crates.io-index" 5660checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 5661dependencies = [ 5662 "lazy_static", 5663] 5664 5665[[package]] 5666name = "shlex" 5667version = "1.3.0" 5668source = "registry+https://github.com/rust-lang/crates.io-index" 5669checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 5670 5671[[package]] 5672name = "signal-hook-registry" 5673version = "1.4.5" 5674source = "registry+https://github.com/rust-lang/crates.io-index" 5675checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" 5676dependencies = [ 5677 "libc", 5678] 5679 5680[[package]] 5681name = "signatory" 5682version = "0.27.1" 5683source = "registry+https://github.com/rust-lang/crates.io-index" 5684checksum = "c1e303f8205714074f6068773f0e29527e0453937fe837c9717d066635b65f31" 5685dependencies = [ 5686 "pkcs8", 5687 "rand_core 0.6.4", 5688 "signature", 5689 "zeroize", 5690] 5691 5692[[package]] 5693name = "signature" 5694version = "2.2.0" 5695source = "registry+https://github.com/rust-lang/crates.io-index" 5696checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 5697dependencies = [ 5698 "digest", 5699 "rand_core 0.6.4", 5700] 5701 5702[[package]] 5703name = "simdutf8" 5704version = "0.1.5" 5705source = "registry+https://github.com/rust-lang/crates.io-index" 5706checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 5707 5708[[package]] 5709name = "simple_asn1" 5710version = "0.6.3" 5711source = "registry+https://github.com/rust-lang/crates.io-index" 5712checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" 5713dependencies = [ 5714 "num-bigint", 5715 "num-traits", 5716 "thiserror 2.0.12", 5717 "time", 5718] 5719 5720[[package]] 5721name = "siphasher" 5722version = "1.0.1" 5723source = "registry+https://github.com/rust-lang/crates.io-index" 5724checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 5725 5726[[package]] 5727name = "slab" 5728version = "0.4.9" 5729source = "registry+https://github.com/rust-lang/crates.io-index" 5730checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 5731dependencies = [ 5732 "autocfg", 5733] 5734 5735[[package]] 5736name = "slotmap" 5737version = "1.0.7" 5738source = "registry+https://github.com/rust-lang/crates.io-index" 5739checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" 5740dependencies = [ 5741 "version_check", 5742] 5743 5744[[package]] 5745name = "smallvec" 5746version = "1.15.0" 5747source = "registry+https://github.com/rust-lang/crates.io-index" 5748checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" 5749dependencies = [ 5750 "serde", 5751] 5752 5753[[package]] 5754name = "socket2" 5755version = "0.5.9" 5756source = "registry+https://github.com/rust-lang/crates.io-index" 5757checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef" 5758dependencies = [ 5759 "libc", 5760 "windows-sys 0.52.0", 5761] 5762 5763[[package]] 5764name = "soketto" 5765version = "0.8.1" 5766source = "registry+https://github.com/rust-lang/crates.io-index" 5767checksum = "2e859df029d160cb88608f5d7df7fb4753fd20fdfb4de5644f3d8b8440841721" 5768dependencies = [ 5769 "base64 0.22.1", 5770 "bytes", 5771 "futures", 5772 "httparse", 5773 "log", 5774 "rand 0.8.5", 5775 "sha1", 5776] 5777 5778[[package]] 5779name = "spin" 5780version = "0.9.8" 5781source = "registry+https://github.com/rust-lang/crates.io-index" 5782checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 5783dependencies = [ 5784 "lock_api", 5785] 5786 5787[[package]] 5788name = "spki" 5789version = "0.7.3" 5790source = "registry+https://github.com/rust-lang/crates.io-index" 5791checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 5792dependencies = [ 5793 "base64ct", 5794 "der", 5795] 5796 5797[[package]] 5798name = "sptr" 5799version = "0.3.2" 5800source = "registry+https://github.com/rust-lang/crates.io-index" 5801checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a" 5802 5803[[package]] 5804name = "sqlparser" 5805version = "0.53.0" 5806source = "registry+https://github.com/rust-lang/crates.io-index" 5807checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8" 5808dependencies = [ 5809 "log", 5810] 5811 5812[[package]] 5813name = "sqlx" 5814version = "0.8.6" 5815source = "registry+https://github.com/rust-lang/crates.io-index" 5816checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 5817dependencies = [ 5818 "sqlx-core", 5819 "sqlx-macros", 5820 "sqlx-mysql", 5821 "sqlx-postgres", 5822 "sqlx-sqlite", 5823] 5824 5825[[package]] 5826name = "sqlx-core" 5827version = "0.8.6" 5828source = "registry+https://github.com/rust-lang/crates.io-index" 5829checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 5830dependencies = [ 5831 "base64 0.22.1", 5832 "bytes", 5833 "chrono", 5834 "crc", 5835 "crossbeam-queue", 5836 "either", 5837 "event-listener", 5838 "futures-core", 5839 "futures-intrusive", 5840 "futures-io", 5841 "futures-util", 5842 "hashbrown 0.15.3", 5843 "hashlink 0.10.0", 5844 "indexmap", 5845 "log", 5846 "memchr", 5847 "once_cell", 5848 "percent-encoding", 5849 "rustls 0.23.27", 5850 "serde", 5851 "serde_json", 5852 "sha2", 5853 "smallvec", 5854 "thiserror 2.0.12", 5855 "tokio", 5856 "tokio-stream", 5857 "tracing", 5858 "url", 5859 "webpki-roots 0.26.11", 5860] 5861 5862[[package]] 5863name = "sqlx-macros" 5864version = "0.8.6" 5865source = "registry+https://github.com/rust-lang/crates.io-index" 5866checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 5867dependencies = [ 5868 "proc-macro2", 5869 "quote", 5870 "sqlx-core", 5871 "sqlx-macros-core", 5872 "syn 2.0.101", 5873] 5874 5875[[package]] 5876name = "sqlx-macros-core" 5877version = "0.8.6" 5878source = "registry+https://github.com/rust-lang/crates.io-index" 5879checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 5880dependencies = [ 5881 "dotenvy", 5882 "either", 5883 "heck 0.5.0", 5884 "hex", 5885 "once_cell", 5886 "proc-macro2", 5887 "quote", 5888 "serde", 5889 "serde_json", 5890 "sha2", 5891 "sqlx-core", 5892 "sqlx-mysql", 5893 "sqlx-postgres", 5894 "sqlx-sqlite", 5895 "syn 2.0.101", 5896 "tokio", 5897 "url", 5898] 5899 5900[[package]] 5901name = "sqlx-mysql" 5902version = "0.8.6" 5903source = "registry+https://github.com/rust-lang/crates.io-index" 5904checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 5905dependencies = [ 5906 "atoi", 5907 "base64 0.22.1", 5908 "bitflags 2.9.1", 5909 "byteorder", 5910 "bytes", 5911 "chrono", 5912 "crc", 5913 "digest", 5914 "dotenvy", 5915 "either", 5916 "futures-channel", 5917 "futures-core", 5918 "futures-io", 5919 "futures-util", 5920 "generic-array", 5921 "hex", 5922 "hkdf", 5923 "hmac", 5924 "itoa", 5925 "log", 5926 "md-5", 5927 "memchr", 5928 "once_cell", 5929 "percent-encoding", 5930 "rand 0.8.5", 5931 "rsa", 5932 "serde", 5933 "sha1", 5934 "sha2", 5935 "smallvec", 5936 "sqlx-core", 5937 "stringprep", 5938 "thiserror 2.0.12", 5939 "tracing", 5940 "whoami", 5941] 5942 5943[[package]] 5944name = "sqlx-postgres" 5945version = "0.8.6" 5946source = "registry+https://github.com/rust-lang/crates.io-index" 5947checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 5948dependencies = [ 5949 "atoi", 5950 "base64 0.22.1", 5951 "bitflags 2.9.1", 5952 "byteorder", 5953 "chrono", 5954 "crc", 5955 "dotenvy", 5956 "etcetera", 5957 "futures-channel", 5958 "futures-core", 5959 "futures-util", 5960 "hex", 5961 "hkdf", 5962 "hmac", 5963 "home", 5964 "itoa", 5965 "log", 5966 "md-5", 5967 "memchr", 5968 "once_cell", 5969 "rand 0.8.5", 5970 "serde", 5971 "serde_json", 5972 "sha2", 5973 "smallvec", 5974 "sqlx-core", 5975 "stringprep", 5976 "thiserror 2.0.12", 5977 "tracing", 5978 "whoami", 5979] 5980 5981[[package]] 5982name = "sqlx-sqlite" 5983version = "0.8.6" 5984source = "registry+https://github.com/rust-lang/crates.io-index" 5985checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 5986dependencies = [ 5987 "atoi", 5988 "chrono", 5989 "flume", 5990 "futures-channel", 5991 "futures-core", 5992 "futures-executor", 5993 "futures-intrusive", 5994 "futures-util", 5995 "libsqlite3-sys", 5996 "log", 5997 "percent-encoding", 5998 "serde", 5999 "serde_urlencoded", 6000 "sqlx-core", 6001 "thiserror 2.0.12", 6002 "tracing", 6003 "url", 6004] 6005 6006[[package]] 6007name = "stable_deref_trait" 6008version = "1.2.0" 6009source = "registry+https://github.com/rust-lang/crates.io-index" 6010checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 6011 6012[[package]] 6013name = "stacker" 6014version = "0.1.21" 6015source = "registry+https://github.com/rust-lang/crates.io-index" 6016checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b" 6017dependencies = [ 6018 "cc", 6019 "cfg-if", 6020 "libc", 6021 "psm", 6022 "windows-sys 0.59.0", 6023] 6024 6025[[package]] 6026name = "static_assertions" 6027version = "1.1.0" 6028source = "registry+https://github.com/rust-lang/crates.io-index" 6029checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 6030 6031[[package]] 6032name = "streaming-decompression" 6033version = "0.1.2" 6034source = "registry+https://github.com/rust-lang/crates.io-index" 6035checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3" 6036dependencies = [ 6037 "fallible-streaming-iterator", 6038] 6039 6040[[package]] 6041name = "streaming-iterator" 6042version = "0.1.9" 6043source = "registry+https://github.com/rust-lang/crates.io-index" 6044checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" 6045 6046[[package]] 6047name = "strength_reduce" 6048version = "0.2.4" 6049source = "registry+https://github.com/rust-lang/crates.io-index" 6050checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" 6051 6052[[package]] 6053name = "stringprep" 6054version = "0.1.5" 6055source = "registry+https://github.com/rust-lang/crates.io-index" 6056checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 6057dependencies = [ 6058 "unicode-bidi", 6059 "unicode-normalization", 6060 "unicode-properties", 6061] 6062 6063[[package]] 6064name = "strsim" 6065version = "0.11.1" 6066source = "registry+https://github.com/rust-lang/crates.io-index" 6067checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 6068 6069[[package]] 6070name = "strum" 6071version = "0.25.0" 6072source = "registry+https://github.com/rust-lang/crates.io-index" 6073checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 6074dependencies = [ 6075 "strum_macros 0.25.3", 6076] 6077 6078[[package]] 6079name = "strum_macros" 6080version = "0.25.3" 6081source = "registry+https://github.com/rust-lang/crates.io-index" 6082checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" 6083dependencies = [ 6084 "heck 0.4.1", 6085 "proc-macro2", 6086 "quote", 6087 "rustversion", 6088 "syn 2.0.101", 6089] 6090 6091[[package]] 6092name = "strum_macros" 6093version = "0.26.4" 6094source = "registry+https://github.com/rust-lang/crates.io-index" 6095checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 6096dependencies = [ 6097 "heck 0.5.0", 6098 "proc-macro2", 6099 "quote", 6100 "rustversion", 6101 "syn 2.0.101", 6102] 6103 6104[[package]] 6105name = "subtle" 6106version = "2.6.1" 6107source = "registry+https://github.com/rust-lang/crates.io-index" 6108checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 6109 6110[[package]] 6111name = "supports-color" 6112version = "2.1.0" 6113source = "registry+https://github.com/rust-lang/crates.io-index" 6114checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89" 6115dependencies = [ 6116 "is-terminal", 6117 "is_ci", 6118] 6119 6120[[package]] 6121name = "supports-color" 6122version = "3.0.2" 6123source = "registry+https://github.com/rust-lang/crates.io-index" 6124checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6" 6125dependencies = [ 6126 "is_ci", 6127] 6128 6129[[package]] 6130name = "symphonia" 6131version = "0.5.4" 6132source = "registry+https://github.com/rust-lang/crates.io-index" 6133checksum = "815c942ae7ee74737bb00f965fa5b5a2ac2ce7b6c01c0cc169bbeaf7abd5f5a9" 6134dependencies = [ 6135 "lazy_static", 6136 "symphonia-bundle-flac", 6137 "symphonia-bundle-mp3", 6138 "symphonia-codec-aac", 6139 "symphonia-codec-adpcm", 6140 "symphonia-codec-alac", 6141 "symphonia-codec-pcm", 6142 "symphonia-codec-vorbis", 6143 "symphonia-core", 6144 "symphonia-format-caf", 6145 "symphonia-format-isomp4", 6146 "symphonia-format-mkv", 6147 "symphonia-format-ogg", 6148 "symphonia-format-riff", 6149 "symphonia-metadata", 6150] 6151 6152[[package]] 6153name = "symphonia-bundle-flac" 6154version = "0.5.4" 6155source = "registry+https://github.com/rust-lang/crates.io-index" 6156checksum = "72e34f34298a7308d4397a6c7fbf5b84c5d491231ce3dd379707ba673ab3bd97" 6157dependencies = [ 6158 "log", 6159 "symphonia-core", 6160 "symphonia-metadata", 6161 "symphonia-utils-xiph", 6162] 6163 6164[[package]] 6165name = "symphonia-bundle-mp3" 6166version = "0.5.4" 6167source = "registry+https://github.com/rust-lang/crates.io-index" 6168checksum = "c01c2aae70f0f1fb096b6f0ff112a930b1fb3626178fba3ae68b09dce71706d4" 6169dependencies = [ 6170 "lazy_static", 6171 "log", 6172 "symphonia-core", 6173 "symphonia-metadata", 6174] 6175 6176[[package]] 6177name = "symphonia-codec-aac" 6178version = "0.5.4" 6179source = "registry+https://github.com/rust-lang/crates.io-index" 6180checksum = "cdbf25b545ad0d3ee3e891ea643ad115aff4ca92f6aec472086b957a58522f70" 6181dependencies = [ 6182 "lazy_static", 6183 "log", 6184 "symphonia-core", 6185] 6186 6187[[package]] 6188name = "symphonia-codec-adpcm" 6189version = "0.5.4" 6190source = "registry+https://github.com/rust-lang/crates.io-index" 6191checksum = "c94e1feac3327cd616e973d5be69ad36b3945f16b06f19c6773fc3ac0b426a0f" 6192dependencies = [ 6193 "log", 6194 "symphonia-core", 6195] 6196 6197[[package]] 6198name = "symphonia-codec-alac" 6199version = "0.5.4" 6200source = "registry+https://github.com/rust-lang/crates.io-index" 6201checksum = "2d8a6666649a08412906476a8b0efd9b9733e241180189e9f92b09c08d0e38f3" 6202dependencies = [ 6203 "log", 6204 "symphonia-core", 6205] 6206 6207[[package]] 6208name = "symphonia-codec-pcm" 6209version = "0.5.4" 6210source = "registry+https://github.com/rust-lang/crates.io-index" 6211checksum = "f395a67057c2ebc5e84d7bb1be71cce1a7ba99f64e0f0f0e303a03f79116f89b" 6212dependencies = [ 6213 "log", 6214 "symphonia-core", 6215] 6216 6217[[package]] 6218name = "symphonia-codec-vorbis" 6219version = "0.5.4" 6220source = "registry+https://github.com/rust-lang/crates.io-index" 6221checksum = "5a98765fb46a0a6732b007f7e2870c2129b6f78d87db7987e6533c8f164a9f30" 6222dependencies = [ 6223 "log", 6224 "symphonia-core", 6225 "symphonia-utils-xiph", 6226] 6227 6228[[package]] 6229name = "symphonia-core" 6230version = "0.5.4" 6231source = "registry+https://github.com/rust-lang/crates.io-index" 6232checksum = "798306779e3dc7d5231bd5691f5a813496dc79d3f56bf82e25789f2094e022c3" 6233dependencies = [ 6234 "arrayvec", 6235 "bitflags 1.3.2", 6236 "bytemuck", 6237 "lazy_static", 6238 "log", 6239] 6240 6241[[package]] 6242name = "symphonia-format-caf" 6243version = "0.5.4" 6244source = "registry+https://github.com/rust-lang/crates.io-index" 6245checksum = "e43c99c696a388295a29fe71b133079f5d8b18041cf734c5459c35ad9097af50" 6246dependencies = [ 6247 "log", 6248 "symphonia-core", 6249 "symphonia-metadata", 6250] 6251 6252[[package]] 6253name = "symphonia-format-isomp4" 6254version = "0.5.4" 6255source = "registry+https://github.com/rust-lang/crates.io-index" 6256checksum = "abfdf178d697e50ce1e5d9b982ba1b94c47218e03ec35022d9f0e071a16dc844" 6257dependencies = [ 6258 "encoding_rs", 6259 "log", 6260 "symphonia-core", 6261 "symphonia-metadata", 6262 "symphonia-utils-xiph", 6263] 6264 6265[[package]] 6266name = "symphonia-format-mkv" 6267version = "0.5.4" 6268source = "registry+https://github.com/rust-lang/crates.io-index" 6269checksum = "1bb43471a100f7882dc9937395bd5ebee8329298e766250b15b3875652fe3d6f" 6270dependencies = [ 6271 "lazy_static", 6272 "log", 6273 "symphonia-core", 6274 "symphonia-metadata", 6275 "symphonia-utils-xiph", 6276] 6277 6278[[package]] 6279name = "symphonia-format-ogg" 6280version = "0.5.4" 6281source = "registry+https://github.com/rust-lang/crates.io-index" 6282checksum = "ada3505789516bcf00fc1157c67729eded428b455c27ca370e41f4d785bfa931" 6283dependencies = [ 6284 "log", 6285 "symphonia-core", 6286 "symphonia-metadata", 6287 "symphonia-utils-xiph", 6288] 6289 6290[[package]] 6291name = "symphonia-format-riff" 6292version = "0.5.4" 6293source = "registry+https://github.com/rust-lang/crates.io-index" 6294checksum = "05f7be232f962f937f4b7115cbe62c330929345434c834359425e043bfd15f50" 6295dependencies = [ 6296 "extended", 6297 "log", 6298 "symphonia-core", 6299 "symphonia-metadata", 6300] 6301 6302[[package]] 6303name = "symphonia-metadata" 6304version = "0.5.4" 6305source = "registry+https://github.com/rust-lang/crates.io-index" 6306checksum = "bc622b9841a10089c5b18e99eb904f4341615d5aa55bbf4eedde1be721a4023c" 6307dependencies = [ 6308 "encoding_rs", 6309 "lazy_static", 6310 "log", 6311 "symphonia-core", 6312] 6313 6314[[package]] 6315name = "symphonia-utils-xiph" 6316version = "0.5.4" 6317source = "registry+https://github.com/rust-lang/crates.io-index" 6318checksum = "484472580fa49991afda5f6550ece662237b00c6f562c7d9638d1b086ed010fe" 6319dependencies = [ 6320 "symphonia-core", 6321 "symphonia-metadata", 6322] 6323 6324[[package]] 6325name = "syn" 6326version = "1.0.109" 6327source = "registry+https://github.com/rust-lang/crates.io-index" 6328checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 6329dependencies = [ 6330 "proc-macro2", 6331 "quote", 6332 "unicode-ident", 6333] 6334 6335[[package]] 6336name = "syn" 6337version = "2.0.101" 6338source = "registry+https://github.com/rust-lang/crates.io-index" 6339checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" 6340dependencies = [ 6341 "proc-macro2", 6342 "quote", 6343 "unicode-ident", 6344] 6345 6346[[package]] 6347name = "sync_wrapper" 6348version = "1.0.2" 6349source = "registry+https://github.com/rust-lang/crates.io-index" 6350checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 6351dependencies = [ 6352 "futures-core", 6353] 6354 6355[[package]] 6356name = "synstructure" 6357version = "0.13.2" 6358source = "registry+https://github.com/rust-lang/crates.io-index" 6359checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 6360dependencies = [ 6361 "proc-macro2", 6362 "quote", 6363 "syn 2.0.101", 6364] 6365 6366[[package]] 6367name = "sysctl" 6368version = "0.4.6" 6369source = "registry+https://github.com/rust-lang/crates.io-index" 6370checksum = "225e483f02d0ad107168dc57381a8a40c3aeea6abe47f37506931f861643cfa8" 6371dependencies = [ 6372 "bitflags 1.3.2", 6373 "byteorder", 6374 "libc", 6375 "thiserror 1.0.69", 6376 "walkdir", 6377] 6378 6379[[package]] 6380name = "sysinfo" 6381version = "0.33.1" 6382source = "registry+https://github.com/rust-lang/crates.io-index" 6383checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01" 6384dependencies = [ 6385 "core-foundation-sys", 6386 "libc", 6387 "memchr", 6388 "ntapi", 6389 "windows", 6390] 6391 6392[[package]] 6393name = "sysinfo" 6394version = "0.34.2" 6395source = "registry+https://github.com/rust-lang/crates.io-index" 6396checksum = "a4b93974b3d3aeaa036504b8eefd4c039dced109171c1ae973f1dc63b2c7e4b2" 6397dependencies = [ 6398 "libc", 6399 "memchr", 6400 "ntapi", 6401 "objc2-core-foundation", 6402 "windows", 6403] 6404 6405[[package]] 6406name = "tap" 6407version = "1.0.1" 6408source = "registry+https://github.com/rust-lang/crates.io-index" 6409checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 6410 6411[[package]] 6412name = "tar" 6413version = "0.4.44" 6414source = "registry+https://github.com/rust-lang/crates.io-index" 6415checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" 6416dependencies = [ 6417 "filetime", 6418 "libc", 6419 "xattr", 6420] 6421 6422[[package]] 6423name = "tempfile" 6424version = "3.20.0" 6425source = "registry+https://github.com/rust-lang/crates.io-index" 6426checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" 6427dependencies = [ 6428 "fastrand", 6429 "getrandom 0.3.3", 6430 "once_cell", 6431 "rustix 1.0.7", 6432 "windows-sys 0.59.0", 6433] 6434 6435[[package]] 6436name = "thiserror" 6437version = "1.0.69" 6438source = "registry+https://github.com/rust-lang/crates.io-index" 6439checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 6440dependencies = [ 6441 "thiserror-impl 1.0.69", 6442] 6443 6444[[package]] 6445name = "thiserror" 6446version = "2.0.12" 6447source = "registry+https://github.com/rust-lang/crates.io-index" 6448checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 6449dependencies = [ 6450 "thiserror-impl 2.0.12", 6451] 6452 6453[[package]] 6454name = "thiserror-impl" 6455version = "1.0.69" 6456source = "registry+https://github.com/rust-lang/crates.io-index" 6457checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 6458dependencies = [ 6459 "proc-macro2", 6460 "quote", 6461 "syn 2.0.101", 6462] 6463 6464[[package]] 6465name = "thiserror-impl" 6466version = "2.0.12" 6467source = "registry+https://github.com/rust-lang/crates.io-index" 6468checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 6469dependencies = [ 6470 "proc-macro2", 6471 "quote", 6472 "syn 2.0.101", 6473] 6474 6475[[package]] 6476name = "thread_local" 6477version = "1.1.9" 6478source = "registry+https://github.com/rust-lang/crates.io-index" 6479checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 6480dependencies = [ 6481 "cfg-if", 6482] 6483 6484[[package]] 6485name = "time" 6486version = "0.3.44" 6487source = "registry+https://github.com/rust-lang/crates.io-index" 6488checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 6489dependencies = [ 6490 "deranged", 6491 "itoa", 6492 "num-conv", 6493 "powerfmt", 6494 "serde", 6495 "time-core", 6496 "time-macros", 6497] 6498 6499[[package]] 6500name = "time-core" 6501version = "0.1.6" 6502source = "registry+https://github.com/rust-lang/crates.io-index" 6503checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 6504 6505[[package]] 6506name = "time-macros" 6507version = "0.2.24" 6508source = "registry+https://github.com/rust-lang/crates.io-index" 6509checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 6510dependencies = [ 6511 "num-conv", 6512 "time-core", 6513] 6514 6515[[package]] 6516name = "tiny-keccak" 6517version = "2.0.2" 6518source = "registry+https://github.com/rust-lang/crates.io-index" 6519checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 6520dependencies = [ 6521 "crunchy", 6522] 6523 6524[[package]] 6525name = "tinystr" 6526version = "0.8.1" 6527source = "registry+https://github.com/rust-lang/crates.io-index" 6528checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 6529dependencies = [ 6530 "displaydoc", 6531 "zerovec", 6532] 6533 6534[[package]] 6535name = "tinyvec" 6536version = "1.9.0" 6537source = "registry+https://github.com/rust-lang/crates.io-index" 6538checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" 6539dependencies = [ 6540 "tinyvec_macros", 6541] 6542 6543[[package]] 6544name = "tinyvec_macros" 6545version = "0.1.1" 6546source = "registry+https://github.com/rust-lang/crates.io-index" 6547checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 6548 6549[[package]] 6550name = "tokio" 6551version = "1.45.1" 6552source = "registry+https://github.com/rust-lang/crates.io-index" 6553checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" 6554dependencies = [ 6555 "backtrace", 6556 "bytes", 6557 "libc", 6558 "mio", 6559 "parking_lot", 6560 "pin-project-lite", 6561 "signal-hook-registry", 6562 "socket2", 6563 "tokio-macros", 6564 "windows-sys 0.52.0", 6565] 6566 6567[[package]] 6568name = "tokio-macros" 6569version = "2.5.0" 6570source = "registry+https://github.com/rust-lang/crates.io-index" 6571checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 6572dependencies = [ 6573 "proc-macro2", 6574 "quote", 6575 "syn 2.0.101", 6576] 6577 6578[[package]] 6579name = "tokio-postgres" 6580version = "0.7.13" 6581source = "registry+https://github.com/rust-lang/crates.io-index" 6582checksum = "6c95d533c83082bb6490e0189acaa0bbeef9084e60471b696ca6988cd0541fb0" 6583dependencies = [ 6584 "async-trait", 6585 "byteorder", 6586 "bytes", 6587 "fallible-iterator 0.2.0", 6588 "futures-channel", 6589 "futures-util", 6590 "log", 6591 "parking_lot", 6592 "percent-encoding", 6593 "phf", 6594 "pin-project-lite", 6595 "postgres-protocol", 6596 "postgres-types", 6597 "rand 0.9.2", 6598 "socket2", 6599 "tokio", 6600 "tokio-util", 6601 "whoami", 6602] 6603 6604[[package]] 6605name = "tokio-rustls" 6606version = "0.24.1" 6607source = "registry+https://github.com/rust-lang/crates.io-index" 6608checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 6609dependencies = [ 6610 "rustls 0.21.12", 6611 "tokio", 6612] 6613 6614[[package]] 6615name = "tokio-rustls" 6616version = "0.26.2" 6617source = "registry+https://github.com/rust-lang/crates.io-index" 6618checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" 6619dependencies = [ 6620 "rustls 0.23.27", 6621 "tokio", 6622] 6623 6624[[package]] 6625name = "tokio-stream" 6626version = "0.1.17" 6627source = "registry+https://github.com/rust-lang/crates.io-index" 6628checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 6629dependencies = [ 6630 "futures-core", 6631 "pin-project-lite", 6632 "tokio", 6633 "tokio-util", 6634] 6635 6636[[package]] 6637name = "tokio-tungstenite" 6638version = "0.26.2" 6639source = "registry+https://github.com/rust-lang/crates.io-index" 6640checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" 6641dependencies = [ 6642 "futures-util", 6643 "log", 6644 "rustls 0.23.27", 6645 "rustls-pki-types", 6646 "tokio", 6647 "tokio-rustls 0.26.2", 6648 "tungstenite", 6649 "webpki-roots 0.26.11", 6650] 6651 6652[[package]] 6653name = "tokio-util" 6654version = "0.7.15" 6655source = "registry+https://github.com/rust-lang/crates.io-index" 6656checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" 6657dependencies = [ 6658 "bytes", 6659 "futures-core", 6660 "futures-io", 6661 "futures-sink", 6662 "pin-project-lite", 6663 "tokio", 6664] 6665 6666[[package]] 6667name = "tokio-websockets" 6668version = "0.10.1" 6669source = "registry+https://github.com/rust-lang/crates.io-index" 6670checksum = "f591660438b3038dd04d16c938271c79e7e06260ad2ea2885a4861bfb238605d" 6671dependencies = [ 6672 "base64 0.22.1", 6673 "bytes", 6674 "futures-core", 6675 "futures-sink", 6676 "http 1.3.1", 6677 "httparse", 6678 "rand 0.8.5", 6679 "ring", 6680 "rustls-pki-types", 6681 "tokio", 6682 "tokio-rustls 0.26.2", 6683 "tokio-util", 6684 "webpki-roots 0.26.11", 6685] 6686 6687[[package]] 6688name = "toml" 6689version = "0.8.23" 6690source = "registry+https://github.com/rust-lang/crates.io-index" 6691checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 6692dependencies = [ 6693 "serde", 6694 "serde_spanned 0.6.9", 6695 "toml_datetime 0.6.11", 6696 "toml_edit", 6697] 6698 6699[[package]] 6700name = "toml" 6701version = "0.9.2" 6702source = "registry+https://github.com/rust-lang/crates.io-index" 6703checksum = "ed0aee96c12fa71097902e0bb061a5e1ebd766a6636bb605ba401c45c1650eac" 6704dependencies = [ 6705 "indexmap", 6706 "serde", 6707 "serde_spanned 1.0.0", 6708 "toml_datetime 0.7.0", 6709 "toml_parser", 6710 "toml_writer", 6711 "winnow", 6712] 6713 6714[[package]] 6715name = "toml_datetime" 6716version = "0.6.11" 6717source = "registry+https://github.com/rust-lang/crates.io-index" 6718checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 6719dependencies = [ 6720 "serde", 6721] 6722 6723[[package]] 6724name = "toml_datetime" 6725version = "0.7.0" 6726source = "registry+https://github.com/rust-lang/crates.io-index" 6727checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3" 6728dependencies = [ 6729 "serde", 6730] 6731 6732[[package]] 6733name = "toml_edit" 6734version = "0.22.27" 6735source = "registry+https://github.com/rust-lang/crates.io-index" 6736checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 6737dependencies = [ 6738 "indexmap", 6739 "serde", 6740 "serde_spanned 0.6.9", 6741 "toml_datetime 0.6.11", 6742 "toml_write", 6743 "winnow", 6744] 6745 6746[[package]] 6747name = "toml_parser" 6748version = "1.0.1" 6749source = "registry+https://github.com/rust-lang/crates.io-index" 6750checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30" 6751dependencies = [ 6752 "winnow", 6753] 6754 6755[[package]] 6756name = "toml_write" 6757version = "0.1.2" 6758source = "registry+https://github.com/rust-lang/crates.io-index" 6759checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 6760 6761[[package]] 6762name = "toml_writer" 6763version = "1.0.2" 6764source = "registry+https://github.com/rust-lang/crates.io-index" 6765checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64" 6766 6767[[package]] 6768name = "tower" 6769version = "0.5.2" 6770source = "registry+https://github.com/rust-lang/crates.io-index" 6771checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 6772dependencies = [ 6773 "futures-core", 6774 "futures-util", 6775 "pin-project-lite", 6776 "sync_wrapper", 6777 "tokio", 6778 "tower-layer", 6779 "tower-service", 6780] 6781 6782[[package]] 6783name = "tower-layer" 6784version = "0.3.3" 6785source = "registry+https://github.com/rust-lang/crates.io-index" 6786checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 6787 6788[[package]] 6789name = "tower-service" 6790version = "0.3.3" 6791source = "registry+https://github.com/rust-lang/crates.io-index" 6792checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 6793 6794[[package]] 6795name = "tracing" 6796version = "0.1.41" 6797source = "registry+https://github.com/rust-lang/crates.io-index" 6798checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 6799dependencies = [ 6800 "log", 6801 "pin-project-lite", 6802 "tracing-attributes", 6803 "tracing-core", 6804] 6805 6806[[package]] 6807name = "tracing-attributes" 6808version = "0.1.28" 6809source = "registry+https://github.com/rust-lang/crates.io-index" 6810checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 6811dependencies = [ 6812 "proc-macro2", 6813 "quote", 6814 "syn 2.0.101", 6815] 6816 6817[[package]] 6818name = "tracing-core" 6819version = "0.1.33" 6820source = "registry+https://github.com/rust-lang/crates.io-index" 6821checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 6822dependencies = [ 6823 "once_cell", 6824 "valuable", 6825] 6826 6827[[package]] 6828name = "tracing-log" 6829version = "0.2.0" 6830source = "registry+https://github.com/rust-lang/crates.io-index" 6831checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 6832dependencies = [ 6833 "log", 6834 "once_cell", 6835 "tracing-core", 6836] 6837 6838[[package]] 6839name = "tracing-subscriber" 6840version = "0.3.20" 6841source = "registry+https://github.com/rust-lang/crates.io-index" 6842checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" 6843dependencies = [ 6844 "nu-ansi-term", 6845 "sharded-slab", 6846 "smallvec", 6847 "thread_local", 6848 "tracing-core", 6849 "tracing-log", 6850] 6851 6852[[package]] 6853name = "trim-in-place" 6854version = "0.1.7" 6855source = "registry+https://github.com/rust-lang/crates.io-index" 6856checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc" 6857 6858[[package]] 6859name = "try-lock" 6860version = "0.2.5" 6861source = "registry+https://github.com/rust-lang/crates.io-index" 6862checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 6863 6864[[package]] 6865name = "tryhard" 6866version = "0.5.1" 6867source = "registry+https://github.com/rust-lang/crates.io-index" 6868checksum = "9c9f0a709784e86923586cff0d872dba54cd2d2e116b3bc57587d15737cfce9d" 6869dependencies = [ 6870 "futures", 6871 "pin-project-lite", 6872 "tokio", 6873] 6874 6875[[package]] 6876name = "tungstenite" 6877version = "0.26.2" 6878source = "registry+https://github.com/rust-lang/crates.io-index" 6879checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" 6880dependencies = [ 6881 "bytes", 6882 "data-encoding", 6883 "http 1.3.1", 6884 "httparse", 6885 "log", 6886 "rand 0.9.2", 6887 "rustls 0.23.27", 6888 "rustls-pki-types", 6889 "sha1", 6890 "thiserror 2.0.12", 6891 "utf-8", 6892] 6893 6894[[package]] 6895name = "typenum" 6896version = "1.18.0" 6897source = "registry+https://github.com/rust-lang/crates.io-index" 6898checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 6899 6900[[package]] 6901name = "unarray" 6902version = "0.1.4" 6903source = "registry+https://github.com/rust-lang/crates.io-index" 6904checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 6905 6906[[package]] 6907name = "unescape" 6908version = "0.1.0" 6909source = "registry+https://github.com/rust-lang/crates.io-index" 6910checksum = "ccb97dac3243214f8d8507998906ca3e2e0b900bf9bf4870477f125b82e68f6e" 6911 6912[[package]] 6913name = "unicase" 6914version = "2.8.1" 6915source = "registry+https://github.com/rust-lang/crates.io-index" 6916checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 6917 6918[[package]] 6919name = "unicode-bidi" 6920version = "0.3.18" 6921source = "registry+https://github.com/rust-lang/crates.io-index" 6922checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 6923 6924[[package]] 6925name = "unicode-ident" 6926version = "1.0.18" 6927source = "registry+https://github.com/rust-lang/crates.io-index" 6928checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 6929 6930[[package]] 6931name = "unicode-normalization" 6932version = "0.1.24" 6933source = "registry+https://github.com/rust-lang/crates.io-index" 6934checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 6935dependencies = [ 6936 "tinyvec", 6937] 6938 6939[[package]] 6940name = "unicode-properties" 6941version = "0.1.3" 6942source = "registry+https://github.com/rust-lang/crates.io-index" 6943checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 6944 6945[[package]] 6946name = "unicode-reverse" 6947version = "1.0.9" 6948source = "registry+https://github.com/rust-lang/crates.io-index" 6949checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76" 6950dependencies = [ 6951 "unicode-segmentation", 6952] 6953 6954[[package]] 6955name = "unicode-segmentation" 6956version = "1.12.0" 6957source = "registry+https://github.com/rust-lang/crates.io-index" 6958checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 6959 6960[[package]] 6961name = "unicode-width" 6962version = "0.2.0" 6963source = "registry+https://github.com/rust-lang/crates.io-index" 6964checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" 6965 6966[[package]] 6967name = "unicode-xid" 6968version = "0.2.6" 6969source = "registry+https://github.com/rust-lang/crates.io-index" 6970checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 6971 6972[[package]] 6973name = "universal-hash" 6974version = "0.5.1" 6975source = "registry+https://github.com/rust-lang/crates.io-index" 6976checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 6977dependencies = [ 6978 "crypto-common", 6979 "subtle", 6980] 6981 6982[[package]] 6983name = "untrusted" 6984version = "0.9.0" 6985source = "registry+https://github.com/rust-lang/crates.io-index" 6986checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 6987 6988[[package]] 6989name = "url" 6990version = "2.5.4" 6991source = "registry+https://github.com/rust-lang/crates.io-index" 6992checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 6993dependencies = [ 6994 "form_urlencoded", 6995 "idna", 6996 "percent-encoding", 6997] 6998 6999[[package]] 7000name = "utf-8" 7001version = "0.7.6" 7002source = "registry+https://github.com/rust-lang/crates.io-index" 7003checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 7004 7005[[package]] 7006name = "utf8_iter" 7007version = "1.0.4" 7008source = "registry+https://github.com/rust-lang/crates.io-index" 7009checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 7010 7011[[package]] 7012name = "utf8parse" 7013version = "0.2.2" 7014source = "registry+https://github.com/rust-lang/crates.io-index" 7015checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 7016 7017[[package]] 7018name = "uuid" 7019version = "1.18.0" 7020source = "registry+https://github.com/rust-lang/crates.io-index" 7021checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be" 7022dependencies = [ 7023 "getrandom 0.3.3", 7024 "js-sys", 7025 "wasm-bindgen", 7026] 7027 7028[[package]] 7029name = "valuable" 7030version = "0.1.1" 7031source = "registry+https://github.com/rust-lang/crates.io-index" 7032checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 7033 7034[[package]] 7035name = "vcpkg" 7036version = "0.2.15" 7037source = "registry+https://github.com/rust-lang/crates.io-index" 7038checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 7039 7040[[package]] 7041name = "version_check" 7042version = "0.9.5" 7043source = "registry+https://github.com/rust-lang/crates.io-index" 7044checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 7045 7046[[package]] 7047name = "wait-timeout" 7048version = "0.2.1" 7049source = "registry+https://github.com/rust-lang/crates.io-index" 7050checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" 7051dependencies = [ 7052 "libc", 7053] 7054 7055[[package]] 7056name = "walkdir" 7057version = "2.5.0" 7058source = "registry+https://github.com/rust-lang/crates.io-index" 7059checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 7060dependencies = [ 7061 "same-file", 7062 "winapi-util", 7063] 7064 7065[[package]] 7066name = "want" 7067version = "0.3.1" 7068source = "registry+https://github.com/rust-lang/crates.io-index" 7069checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 7070dependencies = [ 7071 "try-lock", 7072] 7073 7074[[package]] 7075name = "wasi" 7076version = "0.11.0+wasi-snapshot-preview1" 7077source = "registry+https://github.com/rust-lang/crates.io-index" 7078checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 7079 7080[[package]] 7081name = "wasi" 7082version = "0.14.2+wasi-0.2.4" 7083source = "registry+https://github.com/rust-lang/crates.io-index" 7084checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 7085dependencies = [ 7086 "wit-bindgen-rt", 7087] 7088 7089[[package]] 7090name = "wasite" 7091version = "0.1.0" 7092source = "registry+https://github.com/rust-lang/crates.io-index" 7093checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 7094 7095[[package]] 7096name = "wasm-bindgen" 7097version = "0.2.100" 7098source = "registry+https://github.com/rust-lang/crates.io-index" 7099checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 7100dependencies = [ 7101 "cfg-if", 7102 "once_cell", 7103 "rustversion", 7104 "wasm-bindgen-macro", 7105] 7106 7107[[package]] 7108name = "wasm-bindgen-backend" 7109version = "0.2.100" 7110source = "registry+https://github.com/rust-lang/crates.io-index" 7111checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 7112dependencies = [ 7113 "bumpalo", 7114 "log", 7115 "proc-macro2", 7116 "quote", 7117 "syn 2.0.101", 7118 "wasm-bindgen-shared", 7119] 7120 7121[[package]] 7122name = "wasm-bindgen-futures" 7123version = "0.4.50" 7124source = "registry+https://github.com/rust-lang/crates.io-index" 7125checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 7126dependencies = [ 7127 "cfg-if", 7128 "js-sys", 7129 "once_cell", 7130 "wasm-bindgen", 7131 "web-sys", 7132] 7133 7134[[package]] 7135name = "wasm-bindgen-macro" 7136version = "0.2.100" 7137source = "registry+https://github.com/rust-lang/crates.io-index" 7138checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 7139dependencies = [ 7140 "quote", 7141 "wasm-bindgen-macro-support", 7142] 7143 7144[[package]] 7145name = "wasm-bindgen-macro-support" 7146version = "0.2.100" 7147source = "registry+https://github.com/rust-lang/crates.io-index" 7148checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 7149dependencies = [ 7150 "proc-macro2", 7151 "quote", 7152 "syn 2.0.101", 7153 "wasm-bindgen-backend", 7154 "wasm-bindgen-shared", 7155] 7156 7157[[package]] 7158name = "wasm-bindgen-shared" 7159version = "0.2.100" 7160source = "registry+https://github.com/rust-lang/crates.io-index" 7161checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 7162dependencies = [ 7163 "unicode-ident", 7164] 7165 7166[[package]] 7167name = "wasm-streams" 7168version = "0.4.2" 7169source = "registry+https://github.com/rust-lang/crates.io-index" 7170checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 7171dependencies = [ 7172 "futures-util", 7173 "js-sys", 7174 "wasm-bindgen", 7175 "wasm-bindgen-futures", 7176 "web-sys", 7177] 7178 7179[[package]] 7180name = "web-sys" 7181version = "0.3.77" 7182source = "registry+https://github.com/rust-lang/crates.io-index" 7183checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 7184dependencies = [ 7185 "js-sys", 7186 "wasm-bindgen", 7187] 7188 7189[[package]] 7190name = "web-time" 7191version = "1.1.0" 7192source = "registry+https://github.com/rust-lang/crates.io-index" 7193checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 7194dependencies = [ 7195 "js-sys", 7196 "wasm-bindgen", 7197] 7198 7199[[package]] 7200name = "webpki-root-certs" 7201version = "0.26.8" 7202source = "registry+https://github.com/rust-lang/crates.io-index" 7203checksum = "09aed61f5e8d2c18344b3faa33a4c837855fe56642757754775548fee21386c4" 7204dependencies = [ 7205 "rustls-pki-types", 7206] 7207 7208[[package]] 7209name = "webpki-roots" 7210version = "0.26.11" 7211source = "registry+https://github.com/rust-lang/crates.io-index" 7212checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 7213dependencies = [ 7214 "webpki-roots 1.0.0", 7215] 7216 7217[[package]] 7218name = "webpki-roots" 7219version = "1.0.0" 7220source = "registry+https://github.com/rust-lang/crates.io-index" 7221checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb" 7222dependencies = [ 7223 "rustls-pki-types", 7224] 7225 7226[[package]] 7227name = "whoami" 7228version = "1.6.0" 7229source = "registry+https://github.com/rust-lang/crates.io-index" 7230checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7" 7231dependencies = [ 7232 "redox_syscall", 7233 "wasite", 7234 "web-sys", 7235] 7236 7237[[package]] 7238name = "winapi" 7239version = "0.3.9" 7240source = "registry+https://github.com/rust-lang/crates.io-index" 7241checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 7242dependencies = [ 7243 "winapi-i686-pc-windows-gnu", 7244 "winapi-x86_64-pc-windows-gnu", 7245] 7246 7247[[package]] 7248name = "winapi-i686-pc-windows-gnu" 7249version = "0.4.0" 7250source = "registry+https://github.com/rust-lang/crates.io-index" 7251checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 7252 7253[[package]] 7254name = "winapi-util" 7255version = "0.1.9" 7256source = "registry+https://github.com/rust-lang/crates.io-index" 7257checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 7258dependencies = [ 7259 "windows-sys 0.59.0", 7260] 7261 7262[[package]] 7263name = "winapi-x86_64-pc-windows-gnu" 7264version = "0.4.0" 7265source = "registry+https://github.com/rust-lang/crates.io-index" 7266checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 7267 7268[[package]] 7269name = "windows" 7270version = "0.57.0" 7271source = "registry+https://github.com/rust-lang/crates.io-index" 7272checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143" 7273dependencies = [ 7274 "windows-core 0.57.0", 7275 "windows-targets 0.52.6", 7276] 7277 7278[[package]] 7279name = "windows-core" 7280version = "0.57.0" 7281source = "registry+https://github.com/rust-lang/crates.io-index" 7282checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d" 7283dependencies = [ 7284 "windows-implement 0.57.0", 7285 "windows-interface 0.57.0", 7286 "windows-result 0.1.2", 7287 "windows-targets 0.52.6", 7288] 7289 7290[[package]] 7291name = "windows-core" 7292version = "0.61.2" 7293source = "registry+https://github.com/rust-lang/crates.io-index" 7294checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 7295dependencies = [ 7296 "windows-implement 0.60.0", 7297 "windows-interface 0.59.1", 7298 "windows-link", 7299 "windows-result 0.3.4", 7300 "windows-strings 0.4.2", 7301] 7302 7303[[package]] 7304name = "windows-implement" 7305version = "0.57.0" 7306source = "registry+https://github.com/rust-lang/crates.io-index" 7307checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7" 7308dependencies = [ 7309 "proc-macro2", 7310 "quote", 7311 "syn 2.0.101", 7312] 7313 7314[[package]] 7315name = "windows-implement" 7316version = "0.60.0" 7317source = "registry+https://github.com/rust-lang/crates.io-index" 7318checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 7319dependencies = [ 7320 "proc-macro2", 7321 "quote", 7322 "syn 2.0.101", 7323] 7324 7325[[package]] 7326name = "windows-interface" 7327version = "0.57.0" 7328source = "registry+https://github.com/rust-lang/crates.io-index" 7329checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7" 7330dependencies = [ 7331 "proc-macro2", 7332 "quote", 7333 "syn 2.0.101", 7334] 7335 7336[[package]] 7337name = "windows-interface" 7338version = "0.59.1" 7339source = "registry+https://github.com/rust-lang/crates.io-index" 7340checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 7341dependencies = [ 7342 "proc-macro2", 7343 "quote", 7344 "syn 2.0.101", 7345] 7346 7347[[package]] 7348name = "windows-link" 7349version = "0.1.1" 7350source = "registry+https://github.com/rust-lang/crates.io-index" 7351checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" 7352 7353[[package]] 7354name = "windows-registry" 7355version = "0.4.0" 7356source = "registry+https://github.com/rust-lang/crates.io-index" 7357checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" 7358dependencies = [ 7359 "windows-result 0.3.4", 7360 "windows-strings 0.3.1", 7361 "windows-targets 0.53.0", 7362] 7363 7364[[package]] 7365name = "windows-result" 7366version = "0.1.2" 7367source = "registry+https://github.com/rust-lang/crates.io-index" 7368checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 7369dependencies = [ 7370 "windows-targets 0.52.6", 7371] 7372 7373[[package]] 7374name = "windows-result" 7375version = "0.3.4" 7376source = "registry+https://github.com/rust-lang/crates.io-index" 7377checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 7378dependencies = [ 7379 "windows-link", 7380] 7381 7382[[package]] 7383name = "windows-strings" 7384version = "0.3.1" 7385source = "registry+https://github.com/rust-lang/crates.io-index" 7386checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319" 7387dependencies = [ 7388 "windows-link", 7389] 7390 7391[[package]] 7392name = "windows-strings" 7393version = "0.4.2" 7394source = "registry+https://github.com/rust-lang/crates.io-index" 7395checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 7396dependencies = [ 7397 "windows-link", 7398] 7399 7400[[package]] 7401name = "windows-sys" 7402version = "0.45.0" 7403source = "registry+https://github.com/rust-lang/crates.io-index" 7404checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 7405dependencies = [ 7406 "windows-targets 0.42.2", 7407] 7408 7409[[package]] 7410name = "windows-sys" 7411version = "0.48.0" 7412source = "registry+https://github.com/rust-lang/crates.io-index" 7413checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 7414dependencies = [ 7415 "windows-targets 0.48.5", 7416] 7417 7418[[package]] 7419name = "windows-sys" 7420version = "0.52.0" 7421source = "registry+https://github.com/rust-lang/crates.io-index" 7422checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 7423dependencies = [ 7424 "windows-targets 0.52.6", 7425] 7426 7427[[package]] 7428name = "windows-sys" 7429version = "0.59.0" 7430source = "registry+https://github.com/rust-lang/crates.io-index" 7431checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 7432dependencies = [ 7433 "windows-targets 0.52.6", 7434] 7435 7436[[package]] 7437name = "windows-targets" 7438version = "0.42.2" 7439source = "registry+https://github.com/rust-lang/crates.io-index" 7440checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 7441dependencies = [ 7442 "windows_aarch64_gnullvm 0.42.2", 7443 "windows_aarch64_msvc 0.42.2", 7444 "windows_i686_gnu 0.42.2", 7445 "windows_i686_msvc 0.42.2", 7446 "windows_x86_64_gnu 0.42.2", 7447 "windows_x86_64_gnullvm 0.42.2", 7448 "windows_x86_64_msvc 0.42.2", 7449] 7450 7451[[package]] 7452name = "windows-targets" 7453version = "0.48.5" 7454source = "registry+https://github.com/rust-lang/crates.io-index" 7455checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 7456dependencies = [ 7457 "windows_aarch64_gnullvm 0.48.5", 7458 "windows_aarch64_msvc 0.48.5", 7459 "windows_i686_gnu 0.48.5", 7460 "windows_i686_msvc 0.48.5", 7461 "windows_x86_64_gnu 0.48.5", 7462 "windows_x86_64_gnullvm 0.48.5", 7463 "windows_x86_64_msvc 0.48.5", 7464] 7465 7466[[package]] 7467name = "windows-targets" 7468version = "0.52.6" 7469source = "registry+https://github.com/rust-lang/crates.io-index" 7470checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 7471dependencies = [ 7472 "windows_aarch64_gnullvm 0.52.6", 7473 "windows_aarch64_msvc 0.52.6", 7474 "windows_i686_gnu 0.52.6", 7475 "windows_i686_gnullvm 0.52.6", 7476 "windows_i686_msvc 0.52.6", 7477 "windows_x86_64_gnu 0.52.6", 7478 "windows_x86_64_gnullvm 0.52.6", 7479 "windows_x86_64_msvc 0.52.6", 7480] 7481 7482[[package]] 7483name = "windows-targets" 7484version = "0.53.0" 7485source = "registry+https://github.com/rust-lang/crates.io-index" 7486checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" 7487dependencies = [ 7488 "windows_aarch64_gnullvm 0.53.0", 7489 "windows_aarch64_msvc 0.53.0", 7490 "windows_i686_gnu 0.53.0", 7491 "windows_i686_gnullvm 0.53.0", 7492 "windows_i686_msvc 0.53.0", 7493 "windows_x86_64_gnu 0.53.0", 7494 "windows_x86_64_gnullvm 0.53.0", 7495 "windows_x86_64_msvc 0.53.0", 7496] 7497 7498[[package]] 7499name = "windows_aarch64_gnullvm" 7500version = "0.42.2" 7501source = "registry+https://github.com/rust-lang/crates.io-index" 7502checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 7503 7504[[package]] 7505name = "windows_aarch64_gnullvm" 7506version = "0.48.5" 7507source = "registry+https://github.com/rust-lang/crates.io-index" 7508checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 7509 7510[[package]] 7511name = "windows_aarch64_gnullvm" 7512version = "0.52.6" 7513source = "registry+https://github.com/rust-lang/crates.io-index" 7514checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 7515 7516[[package]] 7517name = "windows_aarch64_gnullvm" 7518version = "0.53.0" 7519source = "registry+https://github.com/rust-lang/crates.io-index" 7520checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 7521 7522[[package]] 7523name = "windows_aarch64_msvc" 7524version = "0.42.2" 7525source = "registry+https://github.com/rust-lang/crates.io-index" 7526checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 7527 7528[[package]] 7529name = "windows_aarch64_msvc" 7530version = "0.48.5" 7531source = "registry+https://github.com/rust-lang/crates.io-index" 7532checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 7533 7534[[package]] 7535name = "windows_aarch64_msvc" 7536version = "0.52.6" 7537source = "registry+https://github.com/rust-lang/crates.io-index" 7538checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 7539 7540[[package]] 7541name = "windows_aarch64_msvc" 7542version = "0.53.0" 7543source = "registry+https://github.com/rust-lang/crates.io-index" 7544checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 7545 7546[[package]] 7547name = "windows_i686_gnu" 7548version = "0.42.2" 7549source = "registry+https://github.com/rust-lang/crates.io-index" 7550checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 7551 7552[[package]] 7553name = "windows_i686_gnu" 7554version = "0.48.5" 7555source = "registry+https://github.com/rust-lang/crates.io-index" 7556checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 7557 7558[[package]] 7559name = "windows_i686_gnu" 7560version = "0.52.6" 7561source = "registry+https://github.com/rust-lang/crates.io-index" 7562checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 7563 7564[[package]] 7565name = "windows_i686_gnu" 7566version = "0.53.0" 7567source = "registry+https://github.com/rust-lang/crates.io-index" 7568checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 7569 7570[[package]] 7571name = "windows_i686_gnullvm" 7572version = "0.52.6" 7573source = "registry+https://github.com/rust-lang/crates.io-index" 7574checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 7575 7576[[package]] 7577name = "windows_i686_gnullvm" 7578version = "0.53.0" 7579source = "registry+https://github.com/rust-lang/crates.io-index" 7580checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 7581 7582[[package]] 7583name = "windows_i686_msvc" 7584version = "0.42.2" 7585source = "registry+https://github.com/rust-lang/crates.io-index" 7586checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 7587 7588[[package]] 7589name = "windows_i686_msvc" 7590version = "0.48.5" 7591source = "registry+https://github.com/rust-lang/crates.io-index" 7592checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 7593 7594[[package]] 7595name = "windows_i686_msvc" 7596version = "0.52.6" 7597source = "registry+https://github.com/rust-lang/crates.io-index" 7598checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 7599 7600[[package]] 7601name = "windows_i686_msvc" 7602version = "0.53.0" 7603source = "registry+https://github.com/rust-lang/crates.io-index" 7604checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 7605 7606[[package]] 7607name = "windows_x86_64_gnu" 7608version = "0.42.2" 7609source = "registry+https://github.com/rust-lang/crates.io-index" 7610checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 7611 7612[[package]] 7613name = "windows_x86_64_gnu" 7614version = "0.48.5" 7615source = "registry+https://github.com/rust-lang/crates.io-index" 7616checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 7617 7618[[package]] 7619name = "windows_x86_64_gnu" 7620version = "0.52.6" 7621source = "registry+https://github.com/rust-lang/crates.io-index" 7622checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 7623 7624[[package]] 7625name = "windows_x86_64_gnu" 7626version = "0.53.0" 7627source = "registry+https://github.com/rust-lang/crates.io-index" 7628checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 7629 7630[[package]] 7631name = "windows_x86_64_gnullvm" 7632version = "0.42.2" 7633source = "registry+https://github.com/rust-lang/crates.io-index" 7634checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 7635 7636[[package]] 7637name = "windows_x86_64_gnullvm" 7638version = "0.48.5" 7639source = "registry+https://github.com/rust-lang/crates.io-index" 7640checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 7641 7642[[package]] 7643name = "windows_x86_64_gnullvm" 7644version = "0.52.6" 7645source = "registry+https://github.com/rust-lang/crates.io-index" 7646checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 7647 7648[[package]] 7649name = "windows_x86_64_gnullvm" 7650version = "0.53.0" 7651source = "registry+https://github.com/rust-lang/crates.io-index" 7652checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 7653 7654[[package]] 7655name = "windows_x86_64_msvc" 7656version = "0.42.2" 7657source = "registry+https://github.com/rust-lang/crates.io-index" 7658checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 7659 7660[[package]] 7661name = "windows_x86_64_msvc" 7662version = "0.48.5" 7663source = "registry+https://github.com/rust-lang/crates.io-index" 7664checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 7665 7666[[package]] 7667name = "windows_x86_64_msvc" 7668version = "0.52.6" 7669source = "registry+https://github.com/rust-lang/crates.io-index" 7670checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 7671 7672[[package]] 7673name = "windows_x86_64_msvc" 7674version = "0.53.0" 7675source = "registry+https://github.com/rust-lang/crates.io-index" 7676checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 7677 7678[[package]] 7679name = "winnow" 7680version = "0.7.10" 7681source = "registry+https://github.com/rust-lang/crates.io-index" 7682checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec" 7683dependencies = [ 7684 "memchr", 7685] 7686 7687[[package]] 7688name = "winreg" 7689version = "0.8.0" 7690source = "registry+https://github.com/rust-lang/crates.io-index" 7691checksum = "d107f8c6e916235c4c01cabb3e8acf7bea8ef6a63ca2e7fa0527c049badfc48c" 7692dependencies = [ 7693 "winapi", 7694] 7695 7696[[package]] 7697name = "wit-bindgen-rt" 7698version = "0.39.0" 7699source = "registry+https://github.com/rust-lang/crates.io-index" 7700checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 7701dependencies = [ 7702 "bitflags 2.9.1", 7703] 7704 7705[[package]] 7706name = "writeable" 7707version = "0.6.1" 7708source = "registry+https://github.com/rust-lang/crates.io-index" 7709checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 7710 7711[[package]] 7712name = "wyz" 7713version = "0.5.1" 7714source = "registry+https://github.com/rust-lang/crates.io-index" 7715checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 7716dependencies = [ 7717 "tap", 7718] 7719 7720[[package]] 7721name = "xataid_extension" 7722version = "0.0.0" 7723dependencies = [ 7724 "pgrx", 7725 "pgrx-tests", 7726 "xid", 7727] 7728 7729[[package]] 7730name = "xattr" 7731version = "1.5.0" 7732source = "registry+https://github.com/rust-lang/crates.io-index" 7733checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e" 7734dependencies = [ 7735 "libc", 7736 "rustix 1.0.7", 7737] 7738 7739[[package]] 7740name = "xid" 7741version = "1.1.1" 7742source = "registry+https://github.com/rust-lang/crates.io-index" 7743checksum = "3752a194518cdee5d019812fb7978c51d8f0b7cfe9ace5983df1780964bb84c0" 7744dependencies = [ 7745 "crc32fast", 7746 "hostname", 7747 "md5", 7748 "once_cell", 7749 "rand 0.8.5", 7750 "sysctl", 7751 "thiserror 1.0.69", 7752 "winreg", 7753] 7754 7755[[package]] 7756name = "xxhash-rust" 7757version = "0.8.15" 7758source = "registry+https://github.com/rust-lang/crates.io-index" 7759checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" 7760 7761[[package]] 7762name = "yoke" 7763version = "0.8.0" 7764source = "registry+https://github.com/rust-lang/crates.io-index" 7765checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 7766dependencies = [ 7767 "serde", 7768 "stable_deref_trait", 7769 "yoke-derive", 7770 "zerofrom", 7771] 7772 7773[[package]] 7774name = "yoke-derive" 7775version = "0.8.0" 7776source = "registry+https://github.com/rust-lang/crates.io-index" 7777checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 7778dependencies = [ 7779 "proc-macro2", 7780 "quote", 7781 "syn 2.0.101", 7782 "synstructure", 7783] 7784 7785[[package]] 7786name = "zerocopy" 7787version = "0.8.25" 7788source = "registry+https://github.com/rust-lang/crates.io-index" 7789checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" 7790dependencies = [ 7791 "zerocopy-derive", 7792] 7793 7794[[package]] 7795name = "zerocopy-derive" 7796version = "0.8.25" 7797source = "registry+https://github.com/rust-lang/crates.io-index" 7798checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" 7799dependencies = [ 7800 "proc-macro2", 7801 "quote", 7802 "syn 2.0.101", 7803] 7804 7805[[package]] 7806name = "zerofrom" 7807version = "0.1.6" 7808source = "registry+https://github.com/rust-lang/crates.io-index" 7809checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 7810dependencies = [ 7811 "zerofrom-derive", 7812] 7813 7814[[package]] 7815name = "zerofrom-derive" 7816version = "0.1.6" 7817source = "registry+https://github.com/rust-lang/crates.io-index" 7818checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 7819dependencies = [ 7820 "proc-macro2", 7821 "quote", 7822 "syn 2.0.101", 7823 "synstructure", 7824] 7825 7826[[package]] 7827name = "zeroize" 7828version = "1.8.1" 7829source = "registry+https://github.com/rust-lang/crates.io-index" 7830checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 7831 7832[[package]] 7833name = "zerotrie" 7834version = "0.2.2" 7835source = "registry+https://github.com/rust-lang/crates.io-index" 7836checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 7837dependencies = [ 7838 "displaydoc", 7839 "yoke", 7840 "zerofrom", 7841] 7842 7843[[package]] 7844name = "zerovec" 7845version = "0.11.2" 7846source = "registry+https://github.com/rust-lang/crates.io-index" 7847checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" 7848dependencies = [ 7849 "yoke", 7850 "zerofrom", 7851 "zerovec-derive", 7852] 7853 7854[[package]] 7855name = "zerovec-derive" 7856version = "0.11.1" 7857source = "registry+https://github.com/rust-lang/crates.io-index" 7858checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 7859dependencies = [ 7860 "proc-macro2", 7861 "quote", 7862 "syn 2.0.101", 7863] 7864 7865[[package]] 7866name = "zstd" 7867version = "0.13.3" 7868source = "registry+https://github.com/rust-lang/crates.io-index" 7869checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 7870dependencies = [ 7871 "zstd-safe", 7872] 7873 7874[[package]] 7875name = "zstd-safe" 7876version = "7.2.4" 7877source = "registry+https://github.com/rust-lang/crates.io-index" 7878checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 7879dependencies = [ 7880 "zstd-sys", 7881] 7882 7883[[package]] 7884name = "zstd-sys" 7885version = "2.0.15+zstd.1.5.7" 7886source = "registry+https://github.com/rust-lang/crates.io-index" 7887checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237" 7888dependencies = [ 7889 "cc", 7890 "pkg-config", 7891]