1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "async-trait" 7version = "0.1.64" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" 10dependencies = [ 11 "proc-macro2", 12 "quote", 13 "syn", 14] 15 16[[package]] 17name = "autocfg" 18version = "1.1.0" 19source = "registry+https://github.com/rust-lang/crates.io-index" 20checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 21 22[[package]] 23name = "axum" 24version = "0.4.8" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "c9f346c92c1e9a71d14fe4aaf7c2a5d9932cc4e5e48d8fb6641524416eb79ddd" 27dependencies = [ 28 "async-trait", 29 "axum-core", 30 "bitflags", 31 "bytes", 32 "futures-util", 33 "http", 34 "http-body", 35 "hyper", 36 "matchit", 37 "memchr", 38 "mime", 39 "percent-encoding", 40 "pin-project-lite", 41 "serde", 42 "serde_json", 43 "serde_urlencoded", 44 "sync_wrapper", 45 "tokio", 46 "tower", 47 "tower-http", 48 "tower-layer", 49 "tower-service", 50] 51 52[[package]] 53name = "axum-core" 54version = "0.1.2" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "6dbcda393bef9c87572779cb8ef916f12d77750b27535dd6819fa86591627a51" 57dependencies = [ 58 "async-trait", 59 "bytes", 60 "futures-util", 61 "http", 62 "http-body", 63 "mime", 64] 65 66[[package]] 67name = "bitflags" 68version = "1.3.2" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 71 72[[package]] 73name = "bytes" 74version = "1.4.0" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 77 78[[package]] 79name = "cfg-if" 80version = "1.0.0" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 83 84[[package]] 85name = "direct-cargo-bazel-deps" 86version = "0.0.1" 87dependencies = [ 88 "axum", 89 "hyper", 90 "mime", 91 "serde_json", 92 "socket2", 93 "tokio", 94 "tower", 95 "tower-http", 96 "tracing", 97 "tracing-subscriber", 98] 99 100[[package]] 101name = "fnv" 102version = "1.0.7" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 105 106[[package]] 107name = "form_urlencoded" 108version = "1.1.0" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 111dependencies = [ 112 "percent-encoding", 113] 114 115[[package]] 116name = "futures-channel" 117version = "0.3.26" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 120dependencies = [ 121 "futures-core", 122] 123 124[[package]] 125name = "futures-core" 126version = "0.3.26" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 129 130[[package]] 131name = "futures-sink" 132version = "0.3.26" 133source = "registry+https://github.com/rust-lang/crates.io-index" 134checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 135 136[[package]] 137name = "futures-task" 138version = "0.3.26" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 141 142[[package]] 143name = "futures-util" 144version = "0.3.26" 145source = "registry+https://github.com/rust-lang/crates.io-index" 146checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 147dependencies = [ 148 "futures-core", 149 "futures-task", 150 "pin-project-lite", 151 "pin-utils", 152] 153 154[[package]] 155name = "h2" 156version = "0.3.16" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" 159dependencies = [ 160 "bytes", 161 "fnv", 162 "futures-core", 163 "futures-sink", 164 "futures-util", 165 "http", 166 "indexmap", 167 "slab", 168 "tokio", 169 "tokio-util", 170 "tracing", 171] 172 173[[package]] 174name = "hashbrown" 175version = "0.12.3" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 178 179[[package]] 180name = "hermit-abi" 181version = "0.2.6" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 184dependencies = [ 185 "libc", 186] 187 188[[package]] 189name = "http" 190version = "0.2.9" 191source = "registry+https://github.com/rust-lang/crates.io-index" 192checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 193dependencies = [ 194 "bytes", 195 "fnv", 196 "itoa", 197] 198 199[[package]] 200name = "http-body" 201version = "0.4.5" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 204dependencies = [ 205 "bytes", 206 "http", 207 "pin-project-lite", 208] 209 210[[package]] 211name = "http-range-header" 212version = "0.3.0" 213source = "registry+https://github.com/rust-lang/crates.io-index" 214checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 215 216[[package]] 217name = "httparse" 218version = "1.8.0" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 221 222[[package]] 223name = "httpdate" 224version = "1.0.2" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 227 228[[package]] 229name = "hyper" 230version = "0.14.24" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 233dependencies = [ 234 "bytes", 235 "futures-channel", 236 "futures-core", 237 "futures-util", 238 "h2", 239 "http", 240 "http-body", 241 "httparse", 242 "httpdate", 243 "itoa", 244 "pin-project-lite", 245 "socket2", 246 "tokio", 247 "tower-service", 248 "tracing", 249 "want", 250] 251 252[[package]] 253name = "indexmap" 254version = "1.9.2" 255source = "registry+https://github.com/rust-lang/crates.io-index" 256checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 257dependencies = [ 258 "autocfg", 259 "hashbrown", 260] 261 262[[package]] 263name = "itoa" 264version = "1.0.5" 265source = "registry+https://github.com/rust-lang/crates.io-index" 266checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 267 268[[package]] 269name = "lazy_static" 270version = "1.4.0" 271source = "registry+https://github.com/rust-lang/crates.io-index" 272checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 273 274[[package]] 275name = "libc" 276version = "0.2.139" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 279 280[[package]] 281name = "lock_api" 282version = "0.4.9" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 285dependencies = [ 286 "autocfg", 287 "scopeguard", 288] 289 290[[package]] 291name = "log" 292version = "0.4.17" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 295dependencies = [ 296 "cfg-if", 297] 298 299[[package]] 300name = "matchit" 301version = "0.4.6" 302source = "registry+https://github.com/rust-lang/crates.io-index" 303checksum = "9376a4f0340565ad675d11fc1419227faf5f60cd7ac9cb2e7185a471f30af833" 304 305[[package]] 306name = "memchr" 307version = "2.5.0" 308source = "registry+https://github.com/rust-lang/crates.io-index" 309checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 310 311[[package]] 312name = "mime" 313version = "0.3.16" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 316 317[[package]] 318name = "mio" 319version = "0.8.6" 320source = "registry+https://github.com/rust-lang/crates.io-index" 321checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 322dependencies = [ 323 "libc", 324 "log", 325 "wasi", 326 "windows-sys", 327] 328 329[[package]] 330name = "nu-ansi-term" 331version = "0.46.0" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 334dependencies = [ 335 "overload", 336 "winapi", 337] 338 339[[package]] 340name = "num_cpus" 341version = "1.15.0" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 344dependencies = [ 345 "hermit-abi", 346 "libc", 347] 348 349[[package]] 350name = "once_cell" 351version = "1.17.1" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 354 355[[package]] 356name = "overload" 357version = "0.1.1" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 360 361[[package]] 362name = "parking_lot" 363version = "0.12.1" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 366dependencies = [ 367 "lock_api", 368 "parking_lot_core", 369] 370 371[[package]] 372name = "parking_lot_core" 373version = "0.9.7" 374source = "registry+https://github.com/rust-lang/crates.io-index" 375checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 376dependencies = [ 377 "cfg-if", 378 "libc", 379 "redox_syscall", 380 "smallvec", 381 "windows-sys", 382] 383 384[[package]] 385name = "percent-encoding" 386version = "2.2.0" 387source = "registry+https://github.com/rust-lang/crates.io-index" 388checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 389 390[[package]] 391name = "pin-project" 392version = "1.0.12" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 395dependencies = [ 396 "pin-project-internal", 397] 398 399[[package]] 400name = "pin-project-internal" 401version = "1.0.12" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 404dependencies = [ 405 "proc-macro2", 406 "quote", 407 "syn", 408] 409 410[[package]] 411name = "pin-project-lite" 412version = "0.2.9" 413source = "registry+https://github.com/rust-lang/crates.io-index" 414checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 415 416[[package]] 417name = "pin-utils" 418version = "0.1.0" 419source = "registry+https://github.com/rust-lang/crates.io-index" 420checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 421 422[[package]] 423name = "proc-macro2" 424version = "1.0.51" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" 427dependencies = [ 428 "unicode-ident", 429] 430 431[[package]] 432name = "quote" 433version = "1.0.23" 434source = "registry+https://github.com/rust-lang/crates.io-index" 435checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 436dependencies = [ 437 "proc-macro2", 438] 439 440[[package]] 441name = "redox_syscall" 442version = "0.2.16" 443source = "registry+https://github.com/rust-lang/crates.io-index" 444checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 445dependencies = [ 446 "bitflags", 447] 448 449[[package]] 450name = "ryu" 451version = "1.0.12" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 454 455[[package]] 456name = "scopeguard" 457version = "1.1.0" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 460 461[[package]] 462name = "serde" 463version = "1.0.152" 464source = "registry+https://github.com/rust-lang/crates.io-index" 465checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 466 467[[package]] 468name = "serde_json" 469version = "1.0.93" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76" 472dependencies = [ 473 "itoa", 474 "ryu", 475 "serde", 476] 477 478[[package]] 479name = "serde_urlencoded" 480version = "0.7.1" 481source = "registry+https://github.com/rust-lang/crates.io-index" 482checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 483dependencies = [ 484 "form_urlencoded", 485 "itoa", 486 "ryu", 487 "serde", 488] 489 490[[package]] 491name = "sharded-slab" 492version = "0.1.4" 493source = "registry+https://github.com/rust-lang/crates.io-index" 494checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 495dependencies = [ 496 "lazy_static", 497] 498 499[[package]] 500name = "signal-hook-registry" 501version = "1.4.1" 502source = "registry+https://github.com/rust-lang/crates.io-index" 503checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 504dependencies = [ 505 "libc", 506] 507 508[[package]] 509name = "slab" 510version = "0.4.8" 511source = "registry+https://github.com/rust-lang/crates.io-index" 512checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 513dependencies = [ 514 "autocfg", 515] 516 517[[package]] 518name = "smallvec" 519version = "1.10.0" 520source = "registry+https://github.com/rust-lang/crates.io-index" 521checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 522 523[[package]] 524name = "socket2" 525version = "0.4.9" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 528dependencies = [ 529 "libc", 530 "winapi", 531] 532 533[[package]] 534name = "syn" 535version = "1.0.109" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 538dependencies = [ 539 "proc-macro2", 540 "quote", 541 "unicode-ident", 542] 543 544[[package]] 545name = "sync_wrapper" 546version = "0.1.2" 547source = "registry+https://github.com/rust-lang/crates.io-index" 548checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 549 550[[package]] 551name = "thread_local" 552version = "1.1.7" 553source = "registry+https://github.com/rust-lang/crates.io-index" 554checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 555dependencies = [ 556 "cfg-if", 557 "once_cell", 558] 559 560[[package]] 561name = "tokio" 562version = "1.26.0" 563source = "registry+https://github.com/rust-lang/crates.io-index" 564checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" 565dependencies = [ 566 "autocfg", 567 "bytes", 568 "libc", 569 "memchr", 570 "mio", 571 "num_cpus", 572 "parking_lot", 573 "pin-project-lite", 574 "signal-hook-registry", 575 "socket2", 576 "tokio-macros", 577 "windows-sys", 578] 579 580[[package]] 581name = "tokio-macros" 582version = "1.8.2" 583source = "registry+https://github.com/rust-lang/crates.io-index" 584checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 585dependencies = [ 586 "proc-macro2", 587 "quote", 588 "syn", 589] 590 591[[package]] 592name = "tokio-util" 593version = "0.7.7" 594source = "registry+https://github.com/rust-lang/crates.io-index" 595checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 596dependencies = [ 597 "bytes", 598 "futures-core", 599 "futures-sink", 600 "pin-project-lite", 601 "tokio", 602 "tracing", 603] 604 605[[package]] 606name = "tower" 607version = "0.4.13" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 610dependencies = [ 611 "futures-core", 612 "futures-util", 613 "pin-project", 614 "pin-project-lite", 615 "tokio", 616 "tokio-util", 617 "tower-layer", 618 "tower-service", 619 "tracing", 620] 621 622[[package]] 623name = "tower-http" 624version = "0.2.5" 625source = "registry+https://github.com/rust-lang/crates.io-index" 626checksum = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8" 627dependencies = [ 628 "bitflags", 629 "bytes", 630 "futures-core", 631 "futures-util", 632 "http", 633 "http-body", 634 "http-range-header", 635 "pin-project-lite", 636 "tower", 637 "tower-layer", 638 "tower-service", 639 "tracing", 640] 641 642[[package]] 643name = "tower-layer" 644version = "0.3.2" 645source = "registry+https://github.com/rust-lang/crates.io-index" 646checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 647 648[[package]] 649name = "tower-service" 650version = "0.3.2" 651source = "registry+https://github.com/rust-lang/crates.io-index" 652checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 653 654[[package]] 655name = "tracing" 656version = "0.1.37" 657source = "registry+https://github.com/rust-lang/crates.io-index" 658checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 659dependencies = [ 660 "cfg-if", 661 "log", 662 "pin-project-lite", 663 "tracing-attributes", 664 "tracing-core", 665] 666 667[[package]] 668name = "tracing-attributes" 669version = "0.1.23" 670source = "registry+https://github.com/rust-lang/crates.io-index" 671checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 672dependencies = [ 673 "proc-macro2", 674 "quote", 675 "syn", 676] 677 678[[package]] 679name = "tracing-core" 680version = "0.1.30" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 683dependencies = [ 684 "once_cell", 685 "valuable", 686] 687 688[[package]] 689name = "tracing-log" 690version = "0.1.3" 691source = "registry+https://github.com/rust-lang/crates.io-index" 692checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 693dependencies = [ 694 "lazy_static", 695 "log", 696 "tracing-core", 697] 698 699[[package]] 700name = "tracing-subscriber" 701version = "0.3.16" 702source = "registry+https://github.com/rust-lang/crates.io-index" 703checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 704dependencies = [ 705 "nu-ansi-term", 706 "sharded-slab", 707 "smallvec", 708 "thread_local", 709 "tracing-core", 710 "tracing-log", 711] 712 713[[package]] 714name = "try-lock" 715version = "0.2.4" 716source = "registry+https://github.com/rust-lang/crates.io-index" 717checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 718 719[[package]] 720name = "unicode-ident" 721version = "1.0.6" 722source = "registry+https://github.com/rust-lang/crates.io-index" 723checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 724 725[[package]] 726name = "valuable" 727version = "0.1.0" 728source = "registry+https://github.com/rust-lang/crates.io-index" 729checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 730 731[[package]] 732name = "want" 733version = "0.3.0" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 736dependencies = [ 737 "log", 738 "try-lock", 739] 740 741[[package]] 742name = "wasi" 743version = "0.11.0+wasi-snapshot-preview1" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 746 747[[package]] 748name = "winapi" 749version = "0.3.9" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 752dependencies = [ 753 "winapi-i686-pc-windows-gnu", 754 "winapi-x86_64-pc-windows-gnu", 755] 756 757[[package]] 758name = "winapi-i686-pc-windows-gnu" 759version = "0.4.0" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 762 763[[package]] 764name = "winapi-x86_64-pc-windows-gnu" 765version = "0.4.0" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 768 769[[package]] 770name = "windows-sys" 771version = "0.45.0" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 774dependencies = [ 775 "windows-targets", 776] 777 778[[package]] 779name = "windows-targets" 780version = "0.42.1" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 783dependencies = [ 784 "windows_aarch64_gnullvm", 785 "windows_aarch64_msvc", 786 "windows_i686_gnu", 787 "windows_i686_msvc", 788 "windows_x86_64_gnu", 789 "windows_x86_64_gnullvm", 790 "windows_x86_64_msvc", 791] 792 793[[package]] 794name = "windows_aarch64_gnullvm" 795version = "0.42.1" 796source = "registry+https://github.com/rust-lang/crates.io-index" 797checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 798 799[[package]] 800name = "windows_aarch64_msvc" 801version = "0.42.1" 802source = "registry+https://github.com/rust-lang/crates.io-index" 803checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 804 805[[package]] 806name = "windows_i686_gnu" 807version = "0.42.1" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 810 811[[package]] 812name = "windows_i686_msvc" 813version = "0.42.1" 814source = "registry+https://github.com/rust-lang/crates.io-index" 815checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 816 817[[package]] 818name = "windows_x86_64_gnu" 819version = "0.42.1" 820source = "registry+https://github.com/rust-lang/crates.io-index" 821checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 822 823[[package]] 824name = "windows_x86_64_gnullvm" 825version = "0.42.1" 826source = "registry+https://github.com/rust-lang/crates.io-index" 827checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 828 829[[package]] 830name = "windows_x86_64_msvc" 831version = "0.42.1" 832source = "registry+https://github.com/rust-lang/crates.io-index" 833checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 834