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