a simple IRC bouncer
at master 19 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.24.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 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.3" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "anstream" 31version = "0.6.20" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" 34dependencies = [ 35 "anstyle", 36 "anstyle-parse", 37 "anstyle-query", 38 "anstyle-wincon", 39 "colorchoice", 40 "is_terminal_polyfill", 41 "utf8parse", 42] 43 44[[package]] 45name = "anstyle" 46version = "1.0.11" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 49 50[[package]] 51name = "anstyle-parse" 52version = "0.2.7" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 55dependencies = [ 56 "utf8parse", 57] 58 59[[package]] 60name = "anstyle-query" 61version = "1.1.4" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 64dependencies = [ 65 "windows-sys 0.60.2", 66] 67 68[[package]] 69name = "anstyle-wincon" 70version = "3.0.10" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 73dependencies = [ 74 "anstyle", 75 "once_cell_polyfill", 76 "windows-sys 0.60.2", 77] 78 79[[package]] 80name = "anyhow" 81version = "1.0.99" 82source = "registry+https://github.com/rust-lang/crates.io-index" 83checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" 84 85[[package]] 86name = "backtrace" 87version = "0.3.75" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 90dependencies = [ 91 "addr2line", 92 "cfg-if", 93 "libc", 94 "miniz_oxide", 95 "object", 96 "rustc-demangle", 97 "windows-targets 0.52.6", 98] 99 100[[package]] 101name = "bitflags" 102version = "2.9.4" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 105 106[[package]] 107name = "boing" 108version = "0.1.0" 109dependencies = [ 110 "anyhow", 111 "clap", 112 "tokio", 113 "tracing", 114 "tracing-subscriber", 115] 116 117[[package]] 118name = "bytes" 119version = "1.10.1" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 122 123[[package]] 124name = "cfg-if" 125version = "1.0.3" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 128 129[[package]] 130name = "clap" 131version = "4.5.47" 132source = "registry+https://github.com/rust-lang/crates.io-index" 133checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931" 134dependencies = [ 135 "clap_builder", 136 "clap_derive", 137] 138 139[[package]] 140name = "clap_builder" 141version = "4.5.47" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6" 144dependencies = [ 145 "anstream", 146 "anstyle", 147 "clap_lex", 148 "strsim", 149] 150 151[[package]] 152name = "clap_derive" 153version = "4.5.47" 154source = "registry+https://github.com/rust-lang/crates.io-index" 155checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" 156dependencies = [ 157 "heck", 158 "proc-macro2", 159 "quote", 160 "syn", 161] 162 163[[package]] 164name = "clap_lex" 165version = "0.7.5" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 168 169[[package]] 170name = "colorchoice" 171version = "1.0.4" 172source = "registry+https://github.com/rust-lang/crates.io-index" 173checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 174 175[[package]] 176name = "gimli" 177version = "0.31.1" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 180 181[[package]] 182name = "heck" 183version = "0.5.0" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 186 187[[package]] 188name = "io-uring" 189version = "0.7.10" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" 192dependencies = [ 193 "bitflags", 194 "cfg-if", 195 "libc", 196] 197 198[[package]] 199name = "is_terminal_polyfill" 200version = "1.70.1" 201source = "registry+https://github.com/rust-lang/crates.io-index" 202checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 203 204[[package]] 205name = "lazy_static" 206version = "1.5.0" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 209 210[[package]] 211name = "libc" 212version = "0.2.175" 213source = "registry+https://github.com/rust-lang/crates.io-index" 214checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" 215 216[[package]] 217name = "log" 218version = "0.4.28" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 221 222[[package]] 223name = "matchers" 224version = "0.2.0" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 227dependencies = [ 228 "regex-automata", 229] 230 231[[package]] 232name = "memchr" 233version = "2.7.5" 234source = "registry+https://github.com/rust-lang/crates.io-index" 235checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 236 237[[package]] 238name = "miniz_oxide" 239version = "0.8.9" 240source = "registry+https://github.com/rust-lang/crates.io-index" 241checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 242dependencies = [ 243 "adler2", 244] 245 246[[package]] 247name = "mio" 248version = "1.0.4" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 251dependencies = [ 252 "libc", 253 "wasi", 254 "windows-sys 0.59.0", 255] 256 257[[package]] 258name = "nu-ansi-term" 259version = "0.50.1" 260source = "registry+https://github.com/rust-lang/crates.io-index" 261checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" 262dependencies = [ 263 "windows-sys 0.52.0", 264] 265 266[[package]] 267name = "object" 268version = "0.36.7" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 271dependencies = [ 272 "memchr", 273] 274 275[[package]] 276name = "once_cell" 277version = "1.21.3" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 280 281[[package]] 282name = "once_cell_polyfill" 283version = "1.70.1" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 286 287[[package]] 288name = "pin-project-lite" 289version = "0.2.16" 290source = "registry+https://github.com/rust-lang/crates.io-index" 291checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 292 293[[package]] 294name = "proc-macro2" 295version = "1.0.101" 296source = "registry+https://github.com/rust-lang/crates.io-index" 297checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 298dependencies = [ 299 "unicode-ident", 300] 301 302[[package]] 303name = "quote" 304version = "1.0.40" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 307dependencies = [ 308 "proc-macro2", 309] 310 311[[package]] 312name = "regex-automata" 313version = "0.4.10" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" 316dependencies = [ 317 "aho-corasick", 318 "memchr", 319 "regex-syntax", 320] 321 322[[package]] 323name = "regex-syntax" 324version = "0.8.6" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" 327 328[[package]] 329name = "rustc-demangle" 330version = "0.1.26" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 333 334[[package]] 335name = "sharded-slab" 336version = "0.1.7" 337source = "registry+https://github.com/rust-lang/crates.io-index" 338checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 339dependencies = [ 340 "lazy_static", 341] 342 343[[package]] 344name = "signal-hook-registry" 345version = "1.4.6" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 348dependencies = [ 349 "libc", 350] 351 352[[package]] 353name = "slab" 354version = "0.4.11" 355source = "registry+https://github.com/rust-lang/crates.io-index" 356checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 357 358[[package]] 359name = "smallvec" 360version = "1.15.1" 361source = "registry+https://github.com/rust-lang/crates.io-index" 362checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 363 364[[package]] 365name = "socket2" 366version = "0.6.0" 367source = "registry+https://github.com/rust-lang/crates.io-index" 368checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" 369dependencies = [ 370 "libc", 371 "windows-sys 0.59.0", 372] 373 374[[package]] 375name = "strsim" 376version = "0.11.1" 377source = "registry+https://github.com/rust-lang/crates.io-index" 378checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 379 380[[package]] 381name = "syn" 382version = "2.0.106" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 385dependencies = [ 386 "proc-macro2", 387 "quote", 388 "unicode-ident", 389] 390 391[[package]] 392name = "thread_local" 393version = "1.1.9" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 396dependencies = [ 397 "cfg-if", 398] 399 400[[package]] 401name = "tokio" 402version = "1.47.1" 403source = "registry+https://github.com/rust-lang/crates.io-index" 404checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" 405dependencies = [ 406 "backtrace", 407 "bytes", 408 "io-uring", 409 "libc", 410 "mio", 411 "pin-project-lite", 412 "signal-hook-registry", 413 "slab", 414 "socket2", 415 "tokio-macros", 416 "windows-sys 0.59.0", 417] 418 419[[package]] 420name = "tokio-macros" 421version = "2.5.0" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 424dependencies = [ 425 "proc-macro2", 426 "quote", 427 "syn", 428] 429 430[[package]] 431name = "tracing" 432version = "0.1.41" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 435dependencies = [ 436 "pin-project-lite", 437 "tracing-attributes", 438 "tracing-core", 439] 440 441[[package]] 442name = "tracing-attributes" 443version = "0.1.30" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 446dependencies = [ 447 "proc-macro2", 448 "quote", 449 "syn", 450] 451 452[[package]] 453name = "tracing-core" 454version = "0.1.34" 455source = "registry+https://github.com/rust-lang/crates.io-index" 456checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 457dependencies = [ 458 "once_cell", 459 "valuable", 460] 461 462[[package]] 463name = "tracing-log" 464version = "0.2.0" 465source = "registry+https://github.com/rust-lang/crates.io-index" 466checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 467dependencies = [ 468 "log", 469 "once_cell", 470 "tracing-core", 471] 472 473[[package]] 474name = "tracing-subscriber" 475version = "0.3.20" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" 478dependencies = [ 479 "matchers", 480 "nu-ansi-term", 481 "once_cell", 482 "regex-automata", 483 "sharded-slab", 484 "smallvec", 485 "thread_local", 486 "tracing", 487 "tracing-core", 488 "tracing-log", 489] 490 491[[package]] 492name = "unicode-ident" 493version = "1.0.18" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 496 497[[package]] 498name = "utf8parse" 499version = "0.2.2" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 502 503[[package]] 504name = "valuable" 505version = "0.1.1" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 508 509[[package]] 510name = "wasi" 511version = "0.11.1+wasi-snapshot-preview1" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 514 515[[package]] 516name = "windows-link" 517version = "0.1.3" 518source = "registry+https://github.com/rust-lang/crates.io-index" 519checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 520 521[[package]] 522name = "windows-sys" 523version = "0.52.0" 524source = "registry+https://github.com/rust-lang/crates.io-index" 525checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 526dependencies = [ 527 "windows-targets 0.52.6", 528] 529 530[[package]] 531name = "windows-sys" 532version = "0.59.0" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 535dependencies = [ 536 "windows-targets 0.52.6", 537] 538 539[[package]] 540name = "windows-sys" 541version = "0.60.2" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 544dependencies = [ 545 "windows-targets 0.53.3", 546] 547 548[[package]] 549name = "windows-targets" 550version = "0.52.6" 551source = "registry+https://github.com/rust-lang/crates.io-index" 552checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 553dependencies = [ 554 "windows_aarch64_gnullvm 0.52.6", 555 "windows_aarch64_msvc 0.52.6", 556 "windows_i686_gnu 0.52.6", 557 "windows_i686_gnullvm 0.52.6", 558 "windows_i686_msvc 0.52.6", 559 "windows_x86_64_gnu 0.52.6", 560 "windows_x86_64_gnullvm 0.52.6", 561 "windows_x86_64_msvc 0.52.6", 562] 563 564[[package]] 565name = "windows-targets" 566version = "0.53.3" 567source = "registry+https://github.com/rust-lang/crates.io-index" 568checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" 569dependencies = [ 570 "windows-link", 571 "windows_aarch64_gnullvm 0.53.0", 572 "windows_aarch64_msvc 0.53.0", 573 "windows_i686_gnu 0.53.0", 574 "windows_i686_gnullvm 0.53.0", 575 "windows_i686_msvc 0.53.0", 576 "windows_x86_64_gnu 0.53.0", 577 "windows_x86_64_gnullvm 0.53.0", 578 "windows_x86_64_msvc 0.53.0", 579] 580 581[[package]] 582name = "windows_aarch64_gnullvm" 583version = "0.52.6" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 586 587[[package]] 588name = "windows_aarch64_gnullvm" 589version = "0.53.0" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 592 593[[package]] 594name = "windows_aarch64_msvc" 595version = "0.52.6" 596source = "registry+https://github.com/rust-lang/crates.io-index" 597checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 598 599[[package]] 600name = "windows_aarch64_msvc" 601version = "0.53.0" 602source = "registry+https://github.com/rust-lang/crates.io-index" 603checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 604 605[[package]] 606name = "windows_i686_gnu" 607version = "0.52.6" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 610 611[[package]] 612name = "windows_i686_gnu" 613version = "0.53.0" 614source = "registry+https://github.com/rust-lang/crates.io-index" 615checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 616 617[[package]] 618name = "windows_i686_gnullvm" 619version = "0.52.6" 620source = "registry+https://github.com/rust-lang/crates.io-index" 621checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 622 623[[package]] 624name = "windows_i686_gnullvm" 625version = "0.53.0" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 628 629[[package]] 630name = "windows_i686_msvc" 631version = "0.52.6" 632source = "registry+https://github.com/rust-lang/crates.io-index" 633checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 634 635[[package]] 636name = "windows_i686_msvc" 637version = "0.53.0" 638source = "registry+https://github.com/rust-lang/crates.io-index" 639checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 640 641[[package]] 642name = "windows_x86_64_gnu" 643version = "0.52.6" 644source = "registry+https://github.com/rust-lang/crates.io-index" 645checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 646 647[[package]] 648name = "windows_x86_64_gnu" 649version = "0.53.0" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 652 653[[package]] 654name = "windows_x86_64_gnullvm" 655version = "0.52.6" 656source = "registry+https://github.com/rust-lang/crates.io-index" 657checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 658 659[[package]] 660name = "windows_x86_64_gnullvm" 661version = "0.53.0" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 664 665[[package]] 666name = "windows_x86_64_msvc" 667version = "0.52.6" 668source = "registry+https://github.com/rust-lang/crates.io-index" 669checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 670 671[[package]] 672name = "windows_x86_64_msvc" 673version = "0.53.0" 674source = "registry+https://github.com/rust-lang/crates.io-index" 675checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"