1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "aho-corasick" 7version = "1.0.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "anstream" 16version = "0.3.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" 19dependencies = [ 20 "anstyle", 21 "anstyle-parse", 22 "anstyle-query", 23 "anstyle-wincon", 24 "colorchoice", 25 "is-terminal", 26 "utf8parse", 27] 28 29[[package]] 30name = "anstyle" 31version = "1.0.1" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" 34 35[[package]] 36name = "anstyle-parse" 37version = "0.2.1" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" 40dependencies = [ 41 "utf8parse", 42] 43 44[[package]] 45name = "anstyle-query" 46version = "1.0.0" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 49dependencies = [ 50 "windows-sys", 51] 52 53[[package]] 54name = "anstyle-wincon" 55version = "1.0.1" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" 58dependencies = [ 59 "anstyle", 60 "windows-sys", 61] 62 63[[package]] 64name = "anyhow" 65version = "1.0.71" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 68 69[[package]] 70name = "bitflags" 71version = "1.3.2" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 74 75[[package]] 76name = "cc" 77version = "1.0.79" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 80 81[[package]] 82name = "clap" 83version = "4.3.11" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "1640e5cc7fb47dbb8338fd471b105e7ed6c3cb2aeb00c2e067127ffd3764a05d" 86dependencies = [ 87 "clap_builder", 88 "clap_derive", 89 "once_cell", 90] 91 92[[package]] 93name = "clap_builder" 94version = "4.3.11" 95source = "registry+https://github.com/rust-lang/crates.io-index" 96checksum = "98c59138d527eeaf9b53f35a77fcc1fad9d883116070c63d5de1c7dc7b00c72b" 97dependencies = [ 98 "anstream", 99 "anstyle", 100 "clap_lex", 101 "strsim", 102] 103 104[[package]] 105name = "clap_derive" 106version = "4.3.2" 107source = "registry+https://github.com/rust-lang/crates.io-index" 108checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f" 109dependencies = [ 110 "heck", 111 "proc-macro2", 112 "quote", 113 "syn", 114] 115 116[[package]] 117name = "clap_lex" 118version = "0.5.0" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" 121 122[[package]] 123name = "colorchoice" 124version = "1.0.0" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 127 128[[package]] 129name = "direct-cargo-bazel-deps" 130version = "0.0.1" 131dependencies = [ 132 "anyhow", 133 "clap", 134 "env_logger", 135 "itertools", 136 "log", 137 "serde", 138 "serde_json", 139] 140 141[[package]] 142name = "either" 143version = "1.8.1" 144source = "registry+https://github.com/rust-lang/crates.io-index" 145checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 146 147[[package]] 148name = "env_logger" 149version = "0.10.0" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 152dependencies = [ 153 "humantime", 154 "is-terminal", 155 "log", 156 "regex", 157 "termcolor", 158] 159 160[[package]] 161name = "errno" 162version = "0.3.1" 163source = "registry+https://github.com/rust-lang/crates.io-index" 164checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 165dependencies = [ 166 "errno-dragonfly", 167 "libc", 168 "windows-sys", 169] 170 171[[package]] 172name = "errno-dragonfly" 173version = "0.1.2" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 176dependencies = [ 177 "cc", 178 "libc", 179] 180 181[[package]] 182name = "heck" 183version = "0.4.1" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 186 187[[package]] 188name = "hermit-abi" 189version = "0.3.2" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" 192 193[[package]] 194name = "humantime" 195version = "2.1.0" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 198 199[[package]] 200name = "io-lifetimes" 201version = "1.0.11" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 204dependencies = [ 205 "hermit-abi", 206 "libc", 207 "windows-sys", 208] 209 210[[package]] 211name = "is-terminal" 212version = "0.4.7" 213source = "registry+https://github.com/rust-lang/crates.io-index" 214checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 215dependencies = [ 216 "hermit-abi", 217 "io-lifetimes", 218 "rustix", 219 "windows-sys", 220] 221 222[[package]] 223name = "itertools" 224version = "0.11.0" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 227dependencies = [ 228 "either", 229] 230 231[[package]] 232name = "itoa" 233version = "1.0.8" 234source = "registry+https://github.com/rust-lang/crates.io-index" 235checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a" 236 237[[package]] 238name = "libc" 239version = "0.2.147" 240source = "registry+https://github.com/rust-lang/crates.io-index" 241checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" 242 243[[package]] 244name = "linux-raw-sys" 245version = "0.3.8" 246source = "registry+https://github.com/rust-lang/crates.io-index" 247checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 248 249[[package]] 250name = "log" 251version = "0.4.19" 252source = "registry+https://github.com/rust-lang/crates.io-index" 253checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 254 255[[package]] 256name = "memchr" 257version = "2.5.0" 258source = "registry+https://github.com/rust-lang/crates.io-index" 259checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 260 261[[package]] 262name = "once_cell" 263version = "1.18.0" 264source = "registry+https://github.com/rust-lang/crates.io-index" 265checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 266 267[[package]] 268name = "proc-macro2" 269version = "1.0.64" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da" 272dependencies = [ 273 "unicode-ident", 274] 275 276[[package]] 277name = "quote" 278version = "1.0.29" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" 281dependencies = [ 282 "proc-macro2", 283] 284 285[[package]] 286name = "regex" 287version = "1.9.1" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" 290dependencies = [ 291 "aho-corasick", 292 "memchr", 293 "regex-automata", 294 "regex-syntax", 295] 296 297[[package]] 298name = "regex-automata" 299version = "0.3.3" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" 302dependencies = [ 303 "aho-corasick", 304 "memchr", 305 "regex-syntax", 306] 307 308[[package]] 309name = "regex-syntax" 310version = "0.7.4" 311source = "registry+https://github.com/rust-lang/crates.io-index" 312checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" 313 314[[package]] 315name = "rustix" 316version = "0.37.23" 317source = "registry+https://github.com/rust-lang/crates.io-index" 318checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" 319dependencies = [ 320 "bitflags", 321 "errno", 322 "io-lifetimes", 323 "libc", 324 "linux-raw-sys", 325 "windows-sys", 326] 327 328[[package]] 329name = "ryu" 330version = "1.0.14" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9" 333 334[[package]] 335name = "serde" 336version = "1.0.171" 337source = "registry+https://github.com/rust-lang/crates.io-index" 338checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" 339dependencies = [ 340 "serde_derive", 341] 342 343[[package]] 344name = "serde_derive" 345version = "1.0.171" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682" 348dependencies = [ 349 "proc-macro2", 350 "quote", 351 "syn", 352] 353 354[[package]] 355name = "serde_json" 356version = "1.0.102" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed" 359dependencies = [ 360 "itoa", 361 "ryu", 362 "serde", 363] 364 365[[package]] 366name = "strsim" 367version = "0.10.0" 368source = "registry+https://github.com/rust-lang/crates.io-index" 369checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 370 371[[package]] 372name = "syn" 373version = "2.0.25" 374source = "registry+https://github.com/rust-lang/crates.io-index" 375checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2" 376dependencies = [ 377 "proc-macro2", 378 "quote", 379 "unicode-ident", 380] 381 382[[package]] 383name = "termcolor" 384version = "1.2.0" 385source = "registry+https://github.com/rust-lang/crates.io-index" 386checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 387dependencies = [ 388 "winapi-util", 389] 390 391[[package]] 392name = "unicode-ident" 393version = "1.0.10" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73" 396 397[[package]] 398name = "utf8parse" 399version = "0.2.1" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 402 403[[package]] 404name = "winapi" 405version = "0.3.9" 406source = "registry+https://github.com/rust-lang/crates.io-index" 407checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 408dependencies = [ 409 "winapi-i686-pc-windows-gnu", 410 "winapi-x86_64-pc-windows-gnu", 411] 412 413[[package]] 414name = "winapi-i686-pc-windows-gnu" 415version = "0.4.0" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 418 419[[package]] 420name = "winapi-util" 421version = "0.1.5" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 424dependencies = [ 425 "winapi", 426] 427 428[[package]] 429name = "winapi-x86_64-pc-windows-gnu" 430version = "0.4.0" 431source = "registry+https://github.com/rust-lang/crates.io-index" 432checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 433 434[[package]] 435name = "windows-sys" 436version = "0.48.0" 437source = "registry+https://github.com/rust-lang/crates.io-index" 438checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 439dependencies = [ 440 "windows-targets", 441] 442 443[[package]] 444name = "windows-targets" 445version = "0.48.1" 446source = "registry+https://github.com/rust-lang/crates.io-index" 447checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" 448dependencies = [ 449 "windows_aarch64_gnullvm", 450 "windows_aarch64_msvc", 451 "windows_i686_gnu", 452 "windows_i686_msvc", 453 "windows_x86_64_gnu", 454 "windows_x86_64_gnullvm", 455 "windows_x86_64_msvc", 456] 457 458[[package]] 459name = "windows_aarch64_gnullvm" 460version = "0.48.0" 461source = "registry+https://github.com/rust-lang/crates.io-index" 462checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 463 464[[package]] 465name = "windows_aarch64_msvc" 466version = "0.48.0" 467source = "registry+https://github.com/rust-lang/crates.io-index" 468checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 469 470[[package]] 471name = "windows_i686_gnu" 472version = "0.48.0" 473source = "registry+https://github.com/rust-lang/crates.io-index" 474checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 475 476[[package]] 477name = "windows_i686_msvc" 478version = "0.48.0" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 481 482[[package]] 483name = "windows_x86_64_gnu" 484version = "0.48.0" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 487 488[[package]] 489name = "windows_x86_64_gnullvm" 490version = "0.48.0" 491source = "registry+https://github.com/rust-lang/crates.io-index" 492checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 493 494[[package]] 495name = "windows_x86_64_msvc" 496version = "0.48.0" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 499