A pit full of rusty nails
at main 2326 lines 56 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "addr2line" 7version = "0.25.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 20[[package]] 21name = "aho-corasick" 22version = "1.1.4" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "allocator-api2" 31version = "0.2.21" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 34 35[[package]] 36name = "anyhow" 37version = "1.0.100" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 40 41[[package]] 42name = "async-trait" 43version = "0.1.89" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 46dependencies = [ 47 "proc-macro2", 48 "quote", 49 "syn", 50] 51 52[[package]] 53name = "atomic-waker" 54version = "1.1.2" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 57 58[[package]] 59name = "autocfg" 60version = "1.5.0" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 63 64[[package]] 65name = "axum" 66version = "0.8.7" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "5b098575ebe77cb6d14fc7f32749631a6e44edbef6b796f89b020e99ba20d425" 69dependencies = [ 70 "axum-core", 71 "axum-macros", 72 "bytes", 73 "futures-util", 74 "http", 75 "http-body", 76 "http-body-util", 77 "hyper", 78 "hyper-util", 79 "itoa", 80 "matchit", 81 "memchr", 82 "mime", 83 "percent-encoding", 84 "pin-project-lite", 85 "serde_core", 86 "sync_wrapper", 87 "tower", 88 "tower-layer", 89 "tower-service", 90 "tracing", 91] 92 93[[package]] 94name = "axum-core" 95version = "0.5.5" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" 98dependencies = [ 99 "bytes", 100 "futures-core", 101 "http", 102 "http-body", 103 "http-body-util", 104 "mime", 105 "pin-project-lite", 106 "sync_wrapper", 107 "tower-layer", 108 "tower-service", 109 "tracing", 110] 111 112[[package]] 113name = "axum-extra" 114version = "0.12.2" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "dbfe9f610fe4e99cf0cfcd03ccf8c63c28c616fe714d80475ef731f3b13dd21b" 117dependencies = [ 118 "axum", 119 "axum-core", 120 "bytes", 121 "futures-core", 122 "futures-util", 123 "http", 124 "http-body", 125 "http-body-util", 126 "mime", 127 "pin-project-lite", 128 "tower-layer", 129 "tower-service", 130 "tracing", 131] 132 133[[package]] 134name = "axum-macros" 135version = "0.5.0" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" 138dependencies = [ 139 "proc-macro2", 140 "quote", 141 "syn", 142] 143 144[[package]] 145name = "backtrace" 146version = "0.3.76" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" 149dependencies = [ 150 "addr2line", 151 "cfg-if", 152 "libc", 153 "miniz_oxide", 154 "object", 155 "rustc-demangle", 156 "windows-link 0.2.1", 157] 158 159[[package]] 160name = "base64" 161version = "0.22.1" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 164 165[[package]] 166name = "bitflags" 167version = "2.10.0" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 170 171[[package]] 172name = "bumpalo" 173version = "3.19.0" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 176 177[[package]] 178name = "byteorder" 179version = "1.5.0" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 182 183[[package]] 184name = "bytes" 185version = "1.11.0" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 188 189[[package]] 190name = "cc" 191version = "1.2.49" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215" 194dependencies = [ 195 "find-msvc-tools", 196 "jobserver", 197 "libc", 198 "shlex", 199] 200 201[[package]] 202name = "cfg-if" 203version = "1.0.4" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 206 207[[package]] 208name = "color-eyre" 209version = "0.6.5" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "e5920befb47832a6d61ee3a3a846565cfa39b331331e68a3b1d1116630f2f26d" 212dependencies = [ 213 "backtrace", 214 "eyre", 215 "indenter", 216 "once_cell", 217 "owo-colors", 218] 219 220[[package]] 221name = "config" 222version = "0.15.19" 223source = "registry+https://github.com/rust-lang/crates.io-index" 224checksum = "b30fa8254caad766fc03cb0ccae691e14bf3bd72bfff27f72802ce729551b3d6" 225dependencies = [ 226 "pathdiff", 227 "serde_core", 228 "toml", 229 "winnow", 230] 231 232[[package]] 233name = "cordyceps" 234version = "0.3.4" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 237dependencies = [ 238 "loom", 239 "tracing", 240] 241 242[[package]] 243name = "core_affinity" 244version = "0.8.3" 245source = "registry+https://github.com/rust-lang/crates.io-index" 246checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342" 247dependencies = [ 248 "libc", 249 "num_cpus", 250 "winapi", 251] 252 253[[package]] 254name = "crossbeam-utils" 255version = "0.8.21" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 258 259[[package]] 260name = "crossfig" 261version = "0.1.3" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "40a998414a3656e7a11ca59d55598ce7df58daafd742e783844e80bbd8d500dd" 264 265[[package]] 266name = "diatomic-waker" 267version = "0.2.3" 268source = "registry+https://github.com/rust-lang/crates.io-index" 269checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 270 271[[package]] 272name = "either" 273version = "1.15.0" 274source = "registry+https://github.com/rust-lang/crates.io-index" 275checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 276 277[[package]] 278name = "equivalent" 279version = "1.0.2" 280source = "registry+https://github.com/rust-lang/crates.io-index" 281checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 282 283[[package]] 284name = "estr" 285version = "1.2.0" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "e2e77c7dfb1a984132a140c98a805b5f12f8e8707420dda9a6ad698bc50fc041" 288dependencies = [ 289 "byteorder", 290 "crossfig", 291 "hashbrown 0.16.1", 292 "libabort", 293 "lock_api", 294 "rapidhash", 295 "spin", 296] 297 298[[package]] 299name = "eyre" 300version = "0.6.12" 301source = "registry+https://github.com/rust-lang/crates.io-index" 302checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" 303dependencies = [ 304 "indenter", 305 "once_cell", 306] 307 308[[package]] 309name = "fastrand" 310version = "2.3.0" 311source = "registry+https://github.com/rust-lang/crates.io-index" 312checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 313 314[[package]] 315name = "find-msvc-tools" 316version = "0.1.5" 317source = "registry+https://github.com/rust-lang/crates.io-index" 318checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" 319 320[[package]] 321name = "fixedbitset" 322version = "0.5.7" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" 325 326[[package]] 327name = "fnv" 328version = "1.0.7" 329source = "registry+https://github.com/rust-lang/crates.io-index" 330checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 331 332[[package]] 333name = "foldhash" 334version = "0.2.0" 335source = "registry+https://github.com/rust-lang/crates.io-index" 336checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 337 338[[package]] 339name = "futures" 340version = "0.3.31" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 343dependencies = [ 344 "futures-channel", 345 "futures-core", 346 "futures-executor", 347 "futures-io", 348 "futures-sink", 349 "futures-task", 350 "futures-util", 351] 352 353[[package]] 354name = "futures-buffered" 355version = "0.2.12" 356source = "registry+https://github.com/rust-lang/crates.io-index" 357checksum = "a8e0e1f38ec07ba4abbde21eed377082f17ccb988be9d988a5adbf4bafc118fd" 358dependencies = [ 359 "cordyceps", 360 "diatomic-waker", 361 "futures-core", 362 "pin-project-lite", 363 "spin", 364] 365 366[[package]] 367name = "futures-channel" 368version = "0.3.31" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 371dependencies = [ 372 "futures-core", 373 "futures-sink", 374] 375 376[[package]] 377name = "futures-concurrency" 378version = "7.6.3" 379source = "registry+https://github.com/rust-lang/crates.io-index" 380checksum = "0eb68017df91f2e477ed4bea586c59eaecaa47ed885a770d0444e21e62572cd2" 381dependencies = [ 382 "fixedbitset", 383 "futures-buffered", 384 "futures-core", 385 "futures-lite", 386 "pin-project", 387 "slab", 388 "smallvec", 389] 390 391[[package]] 392name = "futures-core" 393version = "0.3.31" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 396 397[[package]] 398name = "futures-executor" 399version = "0.3.31" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 402dependencies = [ 403 "futures-core", 404 "futures-task", 405 "futures-util", 406] 407 408[[package]] 409name = "futures-io" 410version = "0.3.31" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 413 414[[package]] 415name = "futures-lite" 416version = "2.6.1" 417source = "registry+https://github.com/rust-lang/crates.io-index" 418checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 419dependencies = [ 420 "fastrand", 421 "futures-core", 422 "futures-io", 423 "parking", 424 "pin-project-lite", 425] 426 427[[package]] 428name = "futures-macro" 429version = "0.3.31" 430source = "registry+https://github.com/rust-lang/crates.io-index" 431checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 432dependencies = [ 433 "proc-macro2", 434 "quote", 435 "syn", 436] 437 438[[package]] 439name = "futures-sink" 440version = "0.3.31" 441source = "registry+https://github.com/rust-lang/crates.io-index" 442checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 443 444[[package]] 445name = "futures-task" 446version = "0.3.31" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 449 450[[package]] 451name = "futures-util" 452version = "0.3.31" 453source = "registry+https://github.com/rust-lang/crates.io-index" 454checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 455dependencies = [ 456 "futures-channel", 457 "futures-core", 458 "futures-io", 459 "futures-macro", 460 "futures-sink", 461 "futures-task", 462 "memchr", 463 "pin-project-lite", 464 "pin-utils", 465 "slab", 466] 467 468[[package]] 469name = "generator" 470version = "0.8.7" 471source = "registry+https://github.com/rust-lang/crates.io-index" 472checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" 473dependencies = [ 474 "cc", 475 "cfg-if", 476 "libc", 477 "log", 478 "rustversion", 479 "windows", 480] 481 482[[package]] 483name = "getrandom" 484version = "0.3.4" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 487dependencies = [ 488 "cfg-if", 489 "libc", 490 "r-efi", 491 "wasip2", 492] 493 494[[package]] 495name = "gimli" 496version = "0.32.3" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" 499 500[[package]] 501name = "glob" 502version = "0.3.3" 503source = "registry+https://github.com/rust-lang/crates.io-index" 504checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 505 506[[package]] 507name = "h2" 508version = "0.4.12" 509source = "registry+https://github.com/rust-lang/crates.io-index" 510checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 511dependencies = [ 512 "atomic-waker", 513 "bytes", 514 "fnv", 515 "futures-core", 516 "futures-sink", 517 "http", 518 "indexmap", 519 "slab", 520 "tokio", 521 "tokio-util", 522 "tracing", 523] 524 525[[package]] 526name = "hashbrown" 527version = "0.15.5" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 530dependencies = [ 531 "equivalent", 532] 533 534[[package]] 535name = "hashbrown" 536version = "0.16.1" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 539dependencies = [ 540 "allocator-api2", 541 "equivalent", 542 "foldhash", 543] 544 545[[package]] 546name = "hermit-abi" 547version = "0.5.2" 548source = "registry+https://github.com/rust-lang/crates.io-index" 549checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 550 551[[package]] 552name = "http" 553version = "1.4.0" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 556dependencies = [ 557 "bytes", 558 "itoa", 559] 560 561[[package]] 562name = "http-body" 563version = "1.0.1" 564source = "registry+https://github.com/rust-lang/crates.io-index" 565checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 566dependencies = [ 567 "bytes", 568 "http", 569] 570 571[[package]] 572name = "http-body-util" 573version = "0.1.3" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 576dependencies = [ 577 "bytes", 578 "futures-core", 579 "http", 580 "http-body", 581 "pin-project-lite", 582] 583 584[[package]] 585name = "httparse" 586version = "1.10.1" 587source = "registry+https://github.com/rust-lang/crates.io-index" 588checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 589 590[[package]] 591name = "httpdate" 592version = "1.0.3" 593source = "registry+https://github.com/rust-lang/crates.io-index" 594checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 595 596[[package]] 597name = "hyper" 598version = "1.8.1" 599source = "registry+https://github.com/rust-lang/crates.io-index" 600checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 601dependencies = [ 602 "atomic-waker", 603 "bytes", 604 "futures-channel", 605 "futures-core", 606 "h2", 607 "http", 608 "http-body", 609 "httparse", 610 "httpdate", 611 "itoa", 612 "pin-project-lite", 613 "pin-utils", 614 "smallvec", 615 "tokio", 616 "want", 617] 618 619[[package]] 620name = "hyper-timeout" 621version = "0.5.2" 622source = "registry+https://github.com/rust-lang/crates.io-index" 623checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" 624dependencies = [ 625 "hyper", 626 "hyper-util", 627 "pin-project-lite", 628 "tokio", 629 "tower-service", 630] 631 632[[package]] 633name = "hyper-util" 634version = "0.1.19" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 637dependencies = [ 638 "bytes", 639 "futures-channel", 640 "futures-core", 641 "futures-util", 642 "http", 643 "http-body", 644 "hyper", 645 "libc", 646 "pin-project-lite", 647 "socket2", 648 "tokio", 649 "tower-service", 650 "tracing", 651] 652 653[[package]] 654name = "indenter" 655version = "0.3.4" 656source = "registry+https://github.com/rust-lang/crates.io-index" 657checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5" 658 659[[package]] 660name = "indexmap" 661version = "2.12.1" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 664dependencies = [ 665 "equivalent", 666 "hashbrown 0.16.1", 667] 668 669[[package]] 670name = "itertools" 671version = "0.14.0" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 674dependencies = [ 675 "either", 676] 677 678[[package]] 679name = "itoa" 680version = "1.0.15" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 683 684[[package]] 685name = "jobserver" 686version = "0.1.34" 687source = "registry+https://github.com/rust-lang/crates.io-index" 688checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 689dependencies = [ 690 "getrandom", 691 "libc", 692] 693 694[[package]] 695name = "js-sys" 696version = "0.3.83" 697source = "registry+https://github.com/rust-lang/crates.io-index" 698checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 699dependencies = [ 700 "once_cell", 701 "wasm-bindgen", 702] 703 704[[package]] 705name = "lazy_static" 706version = "1.5.0" 707source = "registry+https://github.com/rust-lang/crates.io-index" 708checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 709 710[[package]] 711name = "libabort" 712version = "0.1.9" 713source = "registry+https://github.com/rust-lang/crates.io-index" 714checksum = "cec5d1db7977801dd3e593f88a15906cac3c4eb7a69e38b6cc162cb020b22d7d" 715dependencies = [ 716 "rustversion-detect", 717] 718 719[[package]] 720name = "libc" 721version = "0.2.178" 722source = "registry+https://github.com/rust-lang/crates.io-index" 723checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 724 725[[package]] 726name = "libm" 727version = "0.2.15" 728source = "registry+https://github.com/rust-lang/crates.io-index" 729checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 730 731[[package]] 732name = "libmimalloc-sys" 733version = "0.1.44" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870" 736dependencies = [ 737 "cc", 738 "libc", 739] 740 741[[package]] 742name = "lock_api" 743version = "0.4.14" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 746dependencies = [ 747 "scopeguard", 748] 749 750[[package]] 751name = "log" 752version = "0.4.29" 753source = "registry+https://github.com/rust-lang/crates.io-index" 754checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 755 756[[package]] 757name = "loom" 758version = "0.7.2" 759source = "registry+https://github.com/rust-lang/crates.io-index" 760checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 761dependencies = [ 762 "cfg-if", 763 "generator", 764 "scoped-tls", 765 "tracing", 766 "tracing-subscriber", 767] 768 769[[package]] 770name = "matchers" 771version = "0.2.0" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 774dependencies = [ 775 "regex-automata", 776] 777 778[[package]] 779name = "matchit" 780version = "0.8.4" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 783 784[[package]] 785name = "memchr" 786version = "2.7.6" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 789 790[[package]] 791name = "mimalloc" 792version = "0.1.48" 793source = "registry+https://github.com/rust-lang/crates.io-index" 794checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8" 795dependencies = [ 796 "libmimalloc-sys", 797] 798 799[[package]] 800name = "mime" 801version = "0.3.17" 802source = "registry+https://github.com/rust-lang/crates.io-index" 803checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 804 805[[package]] 806name = "miniz_oxide" 807version = "0.8.9" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 810dependencies = [ 811 "adler2", 812] 813 814[[package]] 815name = "mio" 816version = "1.1.1" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 819dependencies = [ 820 "libc", 821 "wasi", 822 "windows-sys 0.61.2", 823] 824 825[[package]] 826name = "nailbox" 827version = "0.1.0" 828 829[[package]] 830name = "nailconfig" 831version = "0.1.0" 832dependencies = [ 833 "color-eyre", 834 "config", 835 "nailbox", 836 "serde", 837] 838 839[[package]] 840name = "nailfv" 841version = "0.1.0" 842dependencies = [ 843 "color-eyre", 844 "winnow", 845] 846 847[[package]] 848name = "nailgen" 849version = "0.1.0" 850dependencies = [ 851 "axum", 852 "bytes", 853 "color-eyre", 854 "futures-lite", 855 "nailbox", 856 "nailconfig", 857 "nailkov", 858 "nailrng", 859 "pin-project-lite", 860 "rand", 861 "tokio", 862 "tracing", 863 "winnow", 864] 865 866[[package]] 867name = "nailip" 868version = "0.1.0" 869dependencies = [ 870 "axum", 871 "futures-lite", 872 "hyper", 873 "nailconfig", 874 "nailfv", 875 "nailnet", 876 "pin-project-lite", 877 "scc", 878 "tokio", 879 "tower", 880 "tracing", 881 "wyrand", 882] 883 884[[package]] 885name = "nailkov" 886version = "0.1.0" 887dependencies = [ 888 "crossbeam-utils", 889 "estr", 890 "hashbrown 0.15.5", 891 "indexmap", 892 "itertools", 893 "nailrng", 894 "parking_lot", 895 "rand", 896 "rand_distr", 897 "rapidhash", 898 "tracing", 899 "unicode-segmentation", 900] 901 902[[package]] 903name = "nailnet" 904version = "0.1.0" 905dependencies = [ 906 "color-eyre", 907 "socket2", 908 "tokio", 909] 910 911[[package]] 912name = "nailotel" 913version = "0.1.0" 914dependencies = [ 915 "color-eyre", 916 "nailconfig", 917 "opentelemetry", 918 "opentelemetry-appender-tracing", 919 "opentelemetry-otlp", 920 "opentelemetry-semantic-conventions", 921 "opentelemetry_sdk", 922 "tracing", 923 "tracing-opentelemetry", 924 "tracing-subscriber", 925] 926 927[[package]] 928name = "nailpit" 929version = "0.1.0" 930dependencies = [ 931 "axum", 932 "color-eyre", 933 "glob", 934 "mimalloc", 935 "nailbox", 936 "nailconfig", 937 "nailgen", 938 "nailip", 939 "nailkov", 940 "nailnet", 941 "nailotel", 942 "nailrater", 943 "nailrng", 944 "nailroutes", 945 "nailrt", 946 "nailserve", 947 "nailspicy", 948 "nailstate", 949 "nailstream", 950 "nailtrace", 951 "tokio", 952 "tokio-util", 953 "tracing", 954] 955 956[[package]] 957name = "nailrater" 958version = "0.1.0" 959dependencies = [ 960 "axum", 961 "futures-lite", 962 "hyper", 963 "nailbox", 964 "nailconfig", 965 "nailfv", 966 "nailip", 967 "nailspicy", 968 "parking_lot", 969 "pin-project-lite", 970 "rapidhash", 971 "scc", 972 "tokio", 973 "tower", 974 "tracing", 975 "tracing-futures", 976] 977 978[[package]] 979name = "nailrng" 980version = "0.1.0" 981dependencies = [ 982 "getrandom", 983 "rand_core", 984 "wyrand", 985] 986 987[[package]] 988name = "nailroutes" 989version = "0.1.0" 990dependencies = [ 991 "axum", 992 "axum-extra", 993 "hyper", 994 "nailgen", 995 "nailip", 996 "nailrater", 997 "nailrng", 998 "nailspicy", 999 "nailstate", 1000 "nailstream", 1001 "nailtrace", 1002 "tower", 1003 "tower-http", 1004 "tracing", 1005 "tracing-futures", 1006] 1007 1008[[package]] 1009name = "nailrt" 1010version = "0.1.0" 1011dependencies = [ 1012 "color-eyre", 1013 "core_affinity", 1014 "futures-concurrency", 1015 "nailconfig", 1016 "nailgen", 1017 "nailkov", 1018 "nailotel", 1019 "nailspicy", 1020 "nailstate", 1021 "tokio", 1022 "tokio-util", 1023 "tracing", 1024] 1025 1026[[package]] 1027name = "nailserve" 1028version = "0.1.0" 1029dependencies = [ 1030 "axum", 1031 "color-eyre", 1032 "futures-concurrency", 1033 "hyper", 1034 "hyper-util", 1035 "nailip", 1036 "tokio", 1037 "tokio-util", 1038 "tower", 1039 "tracing", 1040] 1041 1042[[package]] 1043name = "nailspicy" 1044version = "0.1.0" 1045dependencies = [ 1046 "hashbrown 0.15.5", 1047 "hyper", 1048 "nailbox", 1049 "nailconfig", 1050 "rapidhash", 1051 "tracing", 1052] 1053 1054[[package]] 1055name = "nailstate" 1056version = "0.1.0" 1057dependencies = [ 1058 "axum", 1059 "nailconfig", 1060 "nailgen", 1061 "nailkov", 1062 "nailrng", 1063 "nailspicy", 1064 "rand", 1065] 1066 1067[[package]] 1068name = "nailstream" 1069version = "0.1.0" 1070dependencies = [ 1071 "axum", 1072 "futures-lite", 1073 "hyper", 1074 "tracing", 1075] 1076 1077[[package]] 1078name = "nailtrace" 1079version = "0.1.0" 1080dependencies = [ 1081 "axum", 1082 "hyper", 1083 "nailip", 1084 "nailstate", 1085 "opentelemetry", 1086 "opentelemetry-http", 1087 "opentelemetry-semantic-conventions", 1088 "pin-project-lite", 1089 "tower-http", 1090 "tracing", 1091 "tracing-futures", 1092 "tracing-opentelemetry", 1093 "uuid", 1094] 1095 1096[[package]] 1097name = "nu-ansi-term" 1098version = "0.50.3" 1099source = "registry+https://github.com/rust-lang/crates.io-index" 1100checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 1101dependencies = [ 1102 "windows-sys 0.61.2", 1103] 1104 1105[[package]] 1106name = "num-traits" 1107version = "0.2.19" 1108source = "registry+https://github.com/rust-lang/crates.io-index" 1109checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1110dependencies = [ 1111 "autocfg", 1112 "libm", 1113] 1114 1115[[package]] 1116name = "num_cpus" 1117version = "1.17.0" 1118source = "registry+https://github.com/rust-lang/crates.io-index" 1119checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 1120dependencies = [ 1121 "hermit-abi", 1122 "libc", 1123] 1124 1125[[package]] 1126name = "object" 1127version = "0.37.3" 1128source = "registry+https://github.com/rust-lang/crates.io-index" 1129checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" 1130dependencies = [ 1131 "memchr", 1132] 1133 1134[[package]] 1135name = "once_cell" 1136version = "1.21.3" 1137source = "registry+https://github.com/rust-lang/crates.io-index" 1138checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 1139 1140[[package]] 1141name = "opentelemetry" 1142version = "0.31.0" 1143source = "registry+https://github.com/rust-lang/crates.io-index" 1144checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0" 1145dependencies = [ 1146 "futures-core", 1147 "futures-sink", 1148 "js-sys", 1149 "pin-project-lite", 1150 "thiserror", 1151 "tracing", 1152] 1153 1154[[package]] 1155name = "opentelemetry-appender-tracing" 1156version = "0.31.1" 1157source = "registry+https://github.com/rust-lang/crates.io-index" 1158checksum = "ef6a1ac5ca3accf562b8c306fa8483c85f4390f768185ab775f242f7fe8fdcc2" 1159dependencies = [ 1160 "opentelemetry", 1161 "tracing", 1162 "tracing-core", 1163 "tracing-log", 1164 "tracing-opentelemetry", 1165 "tracing-subscriber", 1166] 1167 1168[[package]] 1169name = "opentelemetry-http" 1170version = "0.31.0" 1171source = "registry+https://github.com/rust-lang/crates.io-index" 1172checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d" 1173dependencies = [ 1174 "async-trait", 1175 "bytes", 1176 "http", 1177 "opentelemetry", 1178] 1179 1180[[package]] 1181name = "opentelemetry-otlp" 1182version = "0.31.0" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf" 1185dependencies = [ 1186 "http", 1187 "opentelemetry", 1188 "opentelemetry-proto", 1189 "opentelemetry_sdk", 1190 "prost", 1191 "thiserror", 1192 "tokio", 1193 "tonic", 1194] 1195 1196[[package]] 1197name = "opentelemetry-proto" 1198version = "0.31.0" 1199source = "registry+https://github.com/rust-lang/crates.io-index" 1200checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f" 1201dependencies = [ 1202 "opentelemetry", 1203 "opentelemetry_sdk", 1204 "prost", 1205 "tonic", 1206 "tonic-prost", 1207] 1208 1209[[package]] 1210name = "opentelemetry-semantic-conventions" 1211version = "0.31.0" 1212source = "registry+https://github.com/rust-lang/crates.io-index" 1213checksum = "e62e29dfe041afb8ed2a6c9737ab57db4907285d999ef8ad3a59092a36bdc846" 1214 1215[[package]] 1216name = "opentelemetry_sdk" 1217version = "0.31.0" 1218source = "registry+https://github.com/rust-lang/crates.io-index" 1219checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd" 1220dependencies = [ 1221 "futures-channel", 1222 "futures-executor", 1223 "futures-util", 1224 "opentelemetry", 1225 "percent-encoding", 1226 "rand", 1227 "thiserror", 1228 "tokio", 1229 "tokio-stream", 1230] 1231 1232[[package]] 1233name = "owo-colors" 1234version = "4.2.3" 1235source = "registry+https://github.com/rust-lang/crates.io-index" 1236checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52" 1237 1238[[package]] 1239name = "parking" 1240version = "2.2.1" 1241source = "registry+https://github.com/rust-lang/crates.io-index" 1242checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1243 1244[[package]] 1245name = "parking_lot" 1246version = "0.12.5" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1249dependencies = [ 1250 "lock_api", 1251 "parking_lot_core", 1252] 1253 1254[[package]] 1255name = "parking_lot_core" 1256version = "0.9.12" 1257source = "registry+https://github.com/rust-lang/crates.io-index" 1258checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 1259dependencies = [ 1260 "cfg-if", 1261 "libc", 1262 "redox_syscall", 1263 "smallvec", 1264 "windows-link 0.2.1", 1265] 1266 1267[[package]] 1268name = "pathdiff" 1269version = "0.2.3" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 1272 1273[[package]] 1274name = "percent-encoding" 1275version = "2.3.2" 1276source = "registry+https://github.com/rust-lang/crates.io-index" 1277checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1278 1279[[package]] 1280name = "pin-project" 1281version = "1.1.10" 1282source = "registry+https://github.com/rust-lang/crates.io-index" 1283checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 1284dependencies = [ 1285 "pin-project-internal", 1286] 1287 1288[[package]] 1289name = "pin-project-internal" 1290version = "1.1.10" 1291source = "registry+https://github.com/rust-lang/crates.io-index" 1292checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 1293dependencies = [ 1294 "proc-macro2", 1295 "quote", 1296 "syn", 1297] 1298 1299[[package]] 1300name = "pin-project-lite" 1301version = "0.2.16" 1302source = "registry+https://github.com/rust-lang/crates.io-index" 1303checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1304 1305[[package]] 1306name = "pin-utils" 1307version = "0.1.0" 1308source = "registry+https://github.com/rust-lang/crates.io-index" 1309checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1310 1311[[package]] 1312name = "pkg-config" 1313version = "0.3.32" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1316 1317[[package]] 1318name = "ppv-lite86" 1319version = "0.2.21" 1320source = "registry+https://github.com/rust-lang/crates.io-index" 1321checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1322dependencies = [ 1323 "zerocopy", 1324] 1325 1326[[package]] 1327name = "proc-macro2" 1328version = "1.0.103" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 1331dependencies = [ 1332 "unicode-ident", 1333] 1334 1335[[package]] 1336name = "prost" 1337version = "0.14.1" 1338source = "registry+https://github.com/rust-lang/crates.io-index" 1339checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d" 1340dependencies = [ 1341 "bytes", 1342 "prost-derive", 1343] 1344 1345[[package]] 1346name = "prost-derive" 1347version = "0.14.1" 1348source = "registry+https://github.com/rust-lang/crates.io-index" 1349checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425" 1350dependencies = [ 1351 "anyhow", 1352 "itertools", 1353 "proc-macro2", 1354 "quote", 1355 "syn", 1356] 1357 1358[[package]] 1359name = "quote" 1360version = "1.0.42" 1361source = "registry+https://github.com/rust-lang/crates.io-index" 1362checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 1363dependencies = [ 1364 "proc-macro2", 1365] 1366 1367[[package]] 1368name = "r-efi" 1369version = "5.3.0" 1370source = "registry+https://github.com/rust-lang/crates.io-index" 1371checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1372 1373[[package]] 1374name = "rand" 1375version = "0.9.2" 1376source = "registry+https://github.com/rust-lang/crates.io-index" 1377checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 1378dependencies = [ 1379 "rand_chacha", 1380 "rand_core", 1381] 1382 1383[[package]] 1384name = "rand_chacha" 1385version = "0.9.0" 1386source = "registry+https://github.com/rust-lang/crates.io-index" 1387checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1388dependencies = [ 1389 "ppv-lite86", 1390 "rand_core", 1391] 1392 1393[[package]] 1394name = "rand_core" 1395version = "0.9.3" 1396source = "registry+https://github.com/rust-lang/crates.io-index" 1397checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 1398dependencies = [ 1399 "getrandom", 1400] 1401 1402[[package]] 1403name = "rand_distr" 1404version = "0.5.1" 1405source = "registry+https://github.com/rust-lang/crates.io-index" 1406checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463" 1407dependencies = [ 1408 "num-traits", 1409 "rand", 1410] 1411 1412[[package]] 1413name = "rapidhash" 1414version = "4.1.1" 1415source = "registry+https://github.com/rust-lang/crates.io-index" 1416checksum = "d8e65c75143ce5d47c55b510297eeb1182f3c739b6043c537670e9fc18612dae" 1417dependencies = [ 1418 "rand", 1419 "rustversion", 1420] 1421 1422[[package]] 1423name = "redox_syscall" 1424version = "0.5.18" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 1427dependencies = [ 1428 "bitflags", 1429] 1430 1431[[package]] 1432name = "regex-automata" 1433version = "0.4.13" 1434source = "registry+https://github.com/rust-lang/crates.io-index" 1435checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 1436dependencies = [ 1437 "aho-corasick", 1438 "memchr", 1439 "regex-syntax", 1440] 1441 1442[[package]] 1443name = "regex-syntax" 1444version = "0.8.8" 1445source = "registry+https://github.com/rust-lang/crates.io-index" 1446checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 1447 1448[[package]] 1449name = "rustc-demangle" 1450version = "0.1.26" 1451source = "registry+https://github.com/rust-lang/crates.io-index" 1452checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 1453 1454[[package]] 1455name = "rustversion" 1456version = "1.0.22" 1457source = "registry+https://github.com/rust-lang/crates.io-index" 1458checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1459 1460[[package]] 1461name = "rustversion-detect" 1462version = "0.1.3" 1463source = "registry+https://github.com/rust-lang/crates.io-index" 1464checksum = "4cfa9e87e97427c3a1b472eace073b2bc577ad0e1444c128d938b3d5bcdacb17" 1465 1466[[package]] 1467name = "ryu" 1468version = "1.0.20" 1469source = "registry+https://github.com/rust-lang/crates.io-index" 1470checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1471 1472[[package]] 1473name = "saa" 1474version = "5.4.0" 1475source = "registry+https://github.com/rust-lang/crates.io-index" 1476checksum = "3192d99ee2f69effeacef86c9fa80e75b6604e2a5d3ade6856d206b519521e53" 1477 1478[[package]] 1479name = "scc" 1480version = "3.4.6" 1481source = "registry+https://github.com/rust-lang/crates.io-index" 1482checksum = "0b6f8686af8563182fc6b63ab7bd7b5cad8f40fbe660675627caedc6c073eca8" 1483dependencies = [ 1484 "saa", 1485 "sdd", 1486] 1487 1488[[package]] 1489name = "scoped-tls" 1490version = "1.0.1" 1491source = "registry+https://github.com/rust-lang/crates.io-index" 1492checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1493 1494[[package]] 1495name = "scopeguard" 1496version = "1.2.0" 1497source = "registry+https://github.com/rust-lang/crates.io-index" 1498checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1499 1500[[package]] 1501name = "sdd" 1502version = "4.5.0" 1503source = "registry+https://github.com/rust-lang/crates.io-index" 1504checksum = "7168ecf885fdd3920ade15d50189593b076e1d060b60406a745766380195d65a" 1505 1506[[package]] 1507name = "serde" 1508version = "1.0.228" 1509source = "registry+https://github.com/rust-lang/crates.io-index" 1510checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1511dependencies = [ 1512 "serde_core", 1513 "serde_derive", 1514] 1515 1516[[package]] 1517name = "serde_core" 1518version = "1.0.228" 1519source = "registry+https://github.com/rust-lang/crates.io-index" 1520checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1521dependencies = [ 1522 "serde_derive", 1523] 1524 1525[[package]] 1526name = "serde_derive" 1527version = "1.0.228" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1530dependencies = [ 1531 "proc-macro2", 1532 "quote", 1533 "syn", 1534] 1535 1536[[package]] 1537name = "serde_json" 1538version = "1.0.145" 1539source = "registry+https://github.com/rust-lang/crates.io-index" 1540checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 1541dependencies = [ 1542 "itoa", 1543 "memchr", 1544 "ryu", 1545 "serde", 1546 "serde_core", 1547] 1548 1549[[package]] 1550name = "serde_spanned" 1551version = "1.0.3" 1552source = "registry+https://github.com/rust-lang/crates.io-index" 1553checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392" 1554dependencies = [ 1555 "serde_core", 1556] 1557 1558[[package]] 1559name = "sharded-slab" 1560version = "0.1.7" 1561source = "registry+https://github.com/rust-lang/crates.io-index" 1562checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1563dependencies = [ 1564 "lazy_static", 1565] 1566 1567[[package]] 1568name = "shlex" 1569version = "1.3.0" 1570source = "registry+https://github.com/rust-lang/crates.io-index" 1571checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1572 1573[[package]] 1574name = "signal-hook-registry" 1575version = "1.4.7" 1576source = "registry+https://github.com/rust-lang/crates.io-index" 1577checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad" 1578dependencies = [ 1579 "libc", 1580] 1581 1582[[package]] 1583name = "slab" 1584version = "0.4.11" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1587 1588[[package]] 1589name = "smallvec" 1590version = "1.15.1" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1593 1594[[package]] 1595name = "socket2" 1596version = "0.6.1" 1597source = "registry+https://github.com/rust-lang/crates.io-index" 1598checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 1599dependencies = [ 1600 "libc", 1601 "windows-sys 0.60.2", 1602] 1603 1604[[package]] 1605name = "spin" 1606version = "0.10.0" 1607source = "registry+https://github.com/rust-lang/crates.io-index" 1608checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 1609dependencies = [ 1610 "lock_api", 1611] 1612 1613[[package]] 1614name = "syn" 1615version = "2.0.111" 1616source = "registry+https://github.com/rust-lang/crates.io-index" 1617checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 1618dependencies = [ 1619 "proc-macro2", 1620 "quote", 1621 "unicode-ident", 1622] 1623 1624[[package]] 1625name = "sync_wrapper" 1626version = "1.0.2" 1627source = "registry+https://github.com/rust-lang/crates.io-index" 1628checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1629 1630[[package]] 1631name = "thiserror" 1632version = "2.0.17" 1633source = "registry+https://github.com/rust-lang/crates.io-index" 1634checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 1635dependencies = [ 1636 "thiserror-impl", 1637] 1638 1639[[package]] 1640name = "thiserror-impl" 1641version = "2.0.17" 1642source = "registry+https://github.com/rust-lang/crates.io-index" 1643checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 1644dependencies = [ 1645 "proc-macro2", 1646 "quote", 1647 "syn", 1648] 1649 1650[[package]] 1651name = "thread_local" 1652version = "1.1.9" 1653source = "registry+https://github.com/rust-lang/crates.io-index" 1654checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 1655dependencies = [ 1656 "cfg-if", 1657] 1658 1659[[package]] 1660name = "tokio" 1661version = "1.48.0" 1662source = "registry+https://github.com/rust-lang/crates.io-index" 1663checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 1664dependencies = [ 1665 "bytes", 1666 "libc", 1667 "mio", 1668 "parking_lot", 1669 "pin-project-lite", 1670 "signal-hook-registry", 1671 "socket2", 1672 "windows-sys 0.61.2", 1673] 1674 1675[[package]] 1676name = "tokio-stream" 1677version = "0.1.17" 1678source = "registry+https://github.com/rust-lang/crates.io-index" 1679checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 1680dependencies = [ 1681 "futures-core", 1682 "pin-project-lite", 1683 "tokio", 1684] 1685 1686[[package]] 1687name = "tokio-util" 1688version = "0.7.17" 1689source = "registry+https://github.com/rust-lang/crates.io-index" 1690checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 1691dependencies = [ 1692 "bytes", 1693 "futures-core", 1694 "futures-sink", 1695 "pin-project-lite", 1696 "tokio", 1697] 1698 1699[[package]] 1700name = "toml" 1701version = "0.9.8" 1702source = "registry+https://github.com/rust-lang/crates.io-index" 1703checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8" 1704dependencies = [ 1705 "serde_core", 1706 "serde_spanned", 1707 "toml_datetime", 1708 "toml_parser", 1709 "winnow", 1710] 1711 1712[[package]] 1713name = "toml_datetime" 1714version = "0.7.3" 1715source = "registry+https://github.com/rust-lang/crates.io-index" 1716checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" 1717dependencies = [ 1718 "serde_core", 1719] 1720 1721[[package]] 1722name = "toml_parser" 1723version = "1.0.4" 1724source = "registry+https://github.com/rust-lang/crates.io-index" 1725checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" 1726dependencies = [ 1727 "winnow", 1728] 1729 1730[[package]] 1731name = "tonic" 1732version = "0.14.2" 1733source = "registry+https://github.com/rust-lang/crates.io-index" 1734checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" 1735dependencies = [ 1736 "async-trait", 1737 "base64", 1738 "bytes", 1739 "http", 1740 "http-body", 1741 "http-body-util", 1742 "hyper", 1743 "hyper-timeout", 1744 "hyper-util", 1745 "percent-encoding", 1746 "pin-project", 1747 "sync_wrapper", 1748 "tokio", 1749 "tokio-stream", 1750 "tower", 1751 "tower-layer", 1752 "tower-service", 1753 "tracing", 1754 "zstd", 1755] 1756 1757[[package]] 1758name = "tonic-prost" 1759version = "0.14.2" 1760source = "registry+https://github.com/rust-lang/crates.io-index" 1761checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" 1762dependencies = [ 1763 "bytes", 1764 "prost", 1765 "tonic", 1766] 1767 1768[[package]] 1769name = "tower" 1770version = "0.5.2" 1771source = "registry+https://github.com/rust-lang/crates.io-index" 1772checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 1773dependencies = [ 1774 "futures-core", 1775 "futures-util", 1776 "indexmap", 1777 "pin-project-lite", 1778 "slab", 1779 "sync_wrapper", 1780 "tokio", 1781 "tokio-util", 1782 "tower-layer", 1783 "tower-service", 1784 "tracing", 1785] 1786 1787[[package]] 1788name = "tower-http" 1789version = "0.6.8" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 1792dependencies = [ 1793 "bitflags", 1794 "bytes", 1795 "http", 1796 "pin-project-lite", 1797 "tower", 1798 "tower-layer", 1799 "tower-service", 1800] 1801 1802[[package]] 1803name = "tower-layer" 1804version = "0.3.3" 1805source = "registry+https://github.com/rust-lang/crates.io-index" 1806checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1807 1808[[package]] 1809name = "tower-service" 1810version = "0.3.3" 1811source = "registry+https://github.com/rust-lang/crates.io-index" 1812checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1813 1814[[package]] 1815name = "tracing" 1816version = "0.1.43" 1817source = "registry+https://github.com/rust-lang/crates.io-index" 1818checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" 1819dependencies = [ 1820 "pin-project-lite", 1821 "tracing-attributes", 1822 "tracing-core", 1823] 1824 1825[[package]] 1826name = "tracing-attributes" 1827version = "0.1.31" 1828source = "registry+https://github.com/rust-lang/crates.io-index" 1829checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 1830dependencies = [ 1831 "proc-macro2", 1832 "quote", 1833 "syn", 1834] 1835 1836[[package]] 1837name = "tracing-core" 1838version = "0.1.35" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" 1841dependencies = [ 1842 "once_cell", 1843 "valuable", 1844] 1845 1846[[package]] 1847name = "tracing-futures" 1848version = "0.2.5" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 1851dependencies = [ 1852 "futures", 1853 "futures-task", 1854 "pin-project", 1855 "tracing", 1856] 1857 1858[[package]] 1859name = "tracing-log" 1860version = "0.2.0" 1861source = "registry+https://github.com/rust-lang/crates.io-index" 1862checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 1863dependencies = [ 1864 "log", 1865 "once_cell", 1866 "tracing-core", 1867] 1868 1869[[package]] 1870name = "tracing-opentelemetry" 1871version = "0.32.0" 1872source = "registry+https://github.com/rust-lang/crates.io-index" 1873checksum = "1e6e5658463dd88089aba75c7791e1d3120633b1bfde22478b28f625a9bb1b8e" 1874dependencies = [ 1875 "js-sys", 1876 "opentelemetry", 1877 "opentelemetry_sdk", 1878 "rustversion", 1879 "smallvec", 1880 "thiserror", 1881 "tracing", 1882 "tracing-core", 1883 "tracing-log", 1884 "tracing-subscriber", 1885 "web-time", 1886] 1887 1888[[package]] 1889name = "tracing-serde" 1890version = "0.2.0" 1891source = "registry+https://github.com/rust-lang/crates.io-index" 1892checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" 1893dependencies = [ 1894 "serde", 1895 "tracing-core", 1896] 1897 1898[[package]] 1899name = "tracing-subscriber" 1900version = "0.3.22" 1901source = "registry+https://github.com/rust-lang/crates.io-index" 1902checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" 1903dependencies = [ 1904 "matchers", 1905 "nu-ansi-term", 1906 "once_cell", 1907 "regex-automata", 1908 "serde", 1909 "serde_json", 1910 "sharded-slab", 1911 "smallvec", 1912 "thread_local", 1913 "tracing", 1914 "tracing-core", 1915 "tracing-log", 1916 "tracing-serde", 1917] 1918 1919[[package]] 1920name = "try-lock" 1921version = "0.2.5" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1924 1925[[package]] 1926name = "unicode-ident" 1927version = "1.0.22" 1928source = "registry+https://github.com/rust-lang/crates.io-index" 1929checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 1930 1931[[package]] 1932name = "unicode-segmentation" 1933version = "1.12.0" 1934source = "registry+https://github.com/rust-lang/crates.io-index" 1935checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 1936 1937[[package]] 1938name = "uuid" 1939version = "1.19.0" 1940source = "registry+https://github.com/rust-lang/crates.io-index" 1941checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" 1942dependencies = [ 1943 "getrandom", 1944 "js-sys", 1945 "rand", 1946 "wasm-bindgen", 1947] 1948 1949[[package]] 1950name = "valuable" 1951version = "0.1.1" 1952source = "registry+https://github.com/rust-lang/crates.io-index" 1953checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 1954 1955[[package]] 1956name = "want" 1957version = "0.3.1" 1958source = "registry+https://github.com/rust-lang/crates.io-index" 1959checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1960dependencies = [ 1961 "try-lock", 1962] 1963 1964[[package]] 1965name = "wasi" 1966version = "0.11.1+wasi-snapshot-preview1" 1967source = "registry+https://github.com/rust-lang/crates.io-index" 1968checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1969 1970[[package]] 1971name = "wasip2" 1972version = "1.0.1+wasi-0.2.4" 1973source = "registry+https://github.com/rust-lang/crates.io-index" 1974checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 1975dependencies = [ 1976 "wit-bindgen", 1977] 1978 1979[[package]] 1980name = "wasm-bindgen" 1981version = "0.2.106" 1982source = "registry+https://github.com/rust-lang/crates.io-index" 1983checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 1984dependencies = [ 1985 "cfg-if", 1986 "once_cell", 1987 "rustversion", 1988 "wasm-bindgen-macro", 1989 "wasm-bindgen-shared", 1990] 1991 1992[[package]] 1993name = "wasm-bindgen-macro" 1994version = "0.2.106" 1995source = "registry+https://github.com/rust-lang/crates.io-index" 1996checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 1997dependencies = [ 1998 "quote", 1999 "wasm-bindgen-macro-support", 2000] 2001 2002[[package]] 2003name = "wasm-bindgen-macro-support" 2004version = "0.2.106" 2005source = "registry+https://github.com/rust-lang/crates.io-index" 2006checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 2007dependencies = [ 2008 "bumpalo", 2009 "proc-macro2", 2010 "quote", 2011 "syn", 2012 "wasm-bindgen-shared", 2013] 2014 2015[[package]] 2016name = "wasm-bindgen-shared" 2017version = "0.2.106" 2018source = "registry+https://github.com/rust-lang/crates.io-index" 2019checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 2020dependencies = [ 2021 "unicode-ident", 2022] 2023 2024[[package]] 2025name = "web-time" 2026version = "1.1.0" 2027source = "registry+https://github.com/rust-lang/crates.io-index" 2028checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 2029dependencies = [ 2030 "js-sys", 2031 "wasm-bindgen", 2032] 2033 2034[[package]] 2035name = "winapi" 2036version = "0.3.9" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2039dependencies = [ 2040 "winapi-i686-pc-windows-gnu", 2041 "winapi-x86_64-pc-windows-gnu", 2042] 2043 2044[[package]] 2045name = "winapi-i686-pc-windows-gnu" 2046version = "0.4.0" 2047source = "registry+https://github.com/rust-lang/crates.io-index" 2048checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2049 2050[[package]] 2051name = "winapi-x86_64-pc-windows-gnu" 2052version = "0.4.0" 2053source = "registry+https://github.com/rust-lang/crates.io-index" 2054checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2055 2056[[package]] 2057name = "windows" 2058version = "0.61.3" 2059source = "registry+https://github.com/rust-lang/crates.io-index" 2060checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 2061dependencies = [ 2062 "windows-collections", 2063 "windows-core", 2064 "windows-future", 2065 "windows-link 0.1.3", 2066 "windows-numerics", 2067] 2068 2069[[package]] 2070name = "windows-collections" 2071version = "0.2.0" 2072source = "registry+https://github.com/rust-lang/crates.io-index" 2073checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 2074dependencies = [ 2075 "windows-core", 2076] 2077 2078[[package]] 2079name = "windows-core" 2080version = "0.61.2" 2081source = "registry+https://github.com/rust-lang/crates.io-index" 2082checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 2083dependencies = [ 2084 "windows-implement", 2085 "windows-interface", 2086 "windows-link 0.1.3", 2087 "windows-result", 2088 "windows-strings", 2089] 2090 2091[[package]] 2092name = "windows-future" 2093version = "0.2.1" 2094source = "registry+https://github.com/rust-lang/crates.io-index" 2095checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 2096dependencies = [ 2097 "windows-core", 2098 "windows-link 0.1.3", 2099 "windows-threading", 2100] 2101 2102[[package]] 2103name = "windows-implement" 2104version = "0.60.2" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 2107dependencies = [ 2108 "proc-macro2", 2109 "quote", 2110 "syn", 2111] 2112 2113[[package]] 2114name = "windows-interface" 2115version = "0.59.3" 2116source = "registry+https://github.com/rust-lang/crates.io-index" 2117checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 2118dependencies = [ 2119 "proc-macro2", 2120 "quote", 2121 "syn", 2122] 2123 2124[[package]] 2125name = "windows-link" 2126version = "0.1.3" 2127source = "registry+https://github.com/rust-lang/crates.io-index" 2128checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 2129 2130[[package]] 2131name = "windows-link" 2132version = "0.2.1" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 2135 2136[[package]] 2137name = "windows-numerics" 2138version = "0.2.0" 2139source = "registry+https://github.com/rust-lang/crates.io-index" 2140checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 2141dependencies = [ 2142 "windows-core", 2143 "windows-link 0.1.3", 2144] 2145 2146[[package]] 2147name = "windows-result" 2148version = "0.3.4" 2149source = "registry+https://github.com/rust-lang/crates.io-index" 2150checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 2151dependencies = [ 2152 "windows-link 0.1.3", 2153] 2154 2155[[package]] 2156name = "windows-strings" 2157version = "0.4.2" 2158source = "registry+https://github.com/rust-lang/crates.io-index" 2159checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 2160dependencies = [ 2161 "windows-link 0.1.3", 2162] 2163 2164[[package]] 2165name = "windows-sys" 2166version = "0.60.2" 2167source = "registry+https://github.com/rust-lang/crates.io-index" 2168checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 2169dependencies = [ 2170 "windows-targets", 2171] 2172 2173[[package]] 2174name = "windows-sys" 2175version = "0.61.2" 2176source = "registry+https://github.com/rust-lang/crates.io-index" 2177checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 2178dependencies = [ 2179 "windows-link 0.2.1", 2180] 2181 2182[[package]] 2183name = "windows-targets" 2184version = "0.53.5" 2185source = "registry+https://github.com/rust-lang/crates.io-index" 2186checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 2187dependencies = [ 2188 "windows-link 0.2.1", 2189 "windows_aarch64_gnullvm", 2190 "windows_aarch64_msvc", 2191 "windows_i686_gnu", 2192 "windows_i686_gnullvm", 2193 "windows_i686_msvc", 2194 "windows_x86_64_gnu", 2195 "windows_x86_64_gnullvm", 2196 "windows_x86_64_msvc", 2197] 2198 2199[[package]] 2200name = "windows-threading" 2201version = "0.1.0" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 2204dependencies = [ 2205 "windows-link 0.1.3", 2206] 2207 2208[[package]] 2209name = "windows_aarch64_gnullvm" 2210version = "0.53.1" 2211source = "registry+https://github.com/rust-lang/crates.io-index" 2212checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 2213 2214[[package]] 2215name = "windows_aarch64_msvc" 2216version = "0.53.1" 2217source = "registry+https://github.com/rust-lang/crates.io-index" 2218checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 2219 2220[[package]] 2221name = "windows_i686_gnu" 2222version = "0.53.1" 2223source = "registry+https://github.com/rust-lang/crates.io-index" 2224checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 2225 2226[[package]] 2227name = "windows_i686_gnullvm" 2228version = "0.53.1" 2229source = "registry+https://github.com/rust-lang/crates.io-index" 2230checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 2231 2232[[package]] 2233name = "windows_i686_msvc" 2234version = "0.53.1" 2235source = "registry+https://github.com/rust-lang/crates.io-index" 2236checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 2237 2238[[package]] 2239name = "windows_x86_64_gnu" 2240version = "0.53.1" 2241source = "registry+https://github.com/rust-lang/crates.io-index" 2242checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 2243 2244[[package]] 2245name = "windows_x86_64_gnullvm" 2246version = "0.53.1" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 2249 2250[[package]] 2251name = "windows_x86_64_msvc" 2252version = "0.53.1" 2253source = "registry+https://github.com/rust-lang/crates.io-index" 2254checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 2255 2256[[package]] 2257name = "winnow" 2258version = "0.7.14" 2259source = "registry+https://github.com/rust-lang/crates.io-index" 2260checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" 2261dependencies = [ 2262 "memchr", 2263] 2264 2265[[package]] 2266name = "wit-bindgen" 2267version = "0.46.0" 2268source = "registry+https://github.com/rust-lang/crates.io-index" 2269checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 2270 2271[[package]] 2272name = "wyrand" 2273version = "0.3.2" 2274source = "registry+https://github.com/rust-lang/crates.io-index" 2275checksum = "15e0359b0b8d9cdef235a1fd4a8c5d02e4c9204e9fac861c14c229a8e803d1a6" 2276dependencies = [ 2277 "rand_core", 2278] 2279 2280[[package]] 2281name = "zerocopy" 2282version = "0.8.31" 2283source = "registry+https://github.com/rust-lang/crates.io-index" 2284checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" 2285dependencies = [ 2286 "zerocopy-derive", 2287] 2288 2289[[package]] 2290name = "zerocopy-derive" 2291version = "0.8.31" 2292source = "registry+https://github.com/rust-lang/crates.io-index" 2293checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" 2294dependencies = [ 2295 "proc-macro2", 2296 "quote", 2297 "syn", 2298] 2299 2300[[package]] 2301name = "zstd" 2302version = "0.13.3" 2303source = "registry+https://github.com/rust-lang/crates.io-index" 2304checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 2305dependencies = [ 2306 "zstd-safe", 2307] 2308 2309[[package]] 2310name = "zstd-safe" 2311version = "7.2.4" 2312source = "registry+https://github.com/rust-lang/crates.io-index" 2313checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 2314dependencies = [ 2315 "zstd-sys", 2316] 2317 2318[[package]] 2319name = "zstd-sys" 2320version = "2.0.16+zstd.1.5.7" 2321source = "registry+https://github.com/rust-lang/crates.io-index" 2322checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" 2323dependencies = [ 2324 "cc", 2325 "pkg-config", 2326]