1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "addr2line" 7version = "0.21.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler" 16version = "1.0.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20[[package]] 21name = "anyhow" 22version = "1.0.75" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" 25 26[[package]] 27name = "autocfg" 28version = "1.1.0" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 31 32[[package]] 33name = "backtrace" 34version = "0.3.69" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 37dependencies = [ 38 "addr2line", 39 "cc", 40 "cfg-if", 41 "libc", 42 "miniz_oxide", 43 "object", 44 "rustc-demangle", 45] 46 47[[package]] 48name = "bitflags" 49version = "1.3.2" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 52 53[[package]] 54name = "bytes" 55version = "1.4.0" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 58 59[[package]] 60name = "cc" 61version = "1.0.84" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "0f8e7c90afad890484a21653d08b6e209ae34770fb5ee298f9c699fcc1e5c856" 64dependencies = [ 65 "libc", 66] 67 68[[package]] 69name = "cfg-if" 70version = "1.0.0" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 73 74[[package]] 75name = "direct-cargo-bazel-deps" 76version = "0.0.1" 77dependencies = [ 78 "anyhow", 79 "tokio", 80] 81 82[[package]] 83name = "gimli" 84version = "0.28.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 87 88[[package]] 89name = "hermit-abi" 90version = "0.3.3" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 93 94[[package]] 95name = "libc" 96version = "0.2.150" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 99 100[[package]] 101name = "lock_api" 102version = "0.4.11" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 105dependencies = [ 106 "autocfg", 107 "scopeguard", 108] 109 110[[package]] 111name = "memchr" 112version = "2.6.4" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 115 116[[package]] 117name = "miniz_oxide" 118version = "0.7.1" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 121dependencies = [ 122 "adler", 123] 124 125[[package]] 126name = "mio" 127version = "0.8.9" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 130dependencies = [ 131 "libc", 132 "wasi", 133 "windows-sys", 134] 135 136[[package]] 137name = "num_cpus" 138version = "1.16.0" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 141dependencies = [ 142 "hermit-abi", 143 "libc", 144] 145 146[[package]] 147name = "object" 148version = "0.32.1" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 151dependencies = [ 152 "memchr", 153] 154 155[[package]] 156name = "parking_lot" 157version = "0.12.1" 158source = "registry+https://github.com/rust-lang/crates.io-index" 159checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 160dependencies = [ 161 "lock_api", 162 "parking_lot_core", 163] 164 165[[package]] 166name = "parking_lot_core" 167version = "0.9.9" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 170dependencies = [ 171 "cfg-if", 172 "libc", 173 "redox_syscall", 174 "smallvec", 175 "windows-targets", 176] 177 178[[package]] 179name = "pin-project-lite" 180version = "0.2.13" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 183 184[[package]] 185name = "proc-macro2" 186version = "1.0.69" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" 189dependencies = [ 190 "unicode-ident", 191] 192 193[[package]] 194name = "quote" 195version = "1.0.26" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 198dependencies = [ 199 "proc-macro2", 200] 201 202[[package]] 203name = "redox_syscall" 204version = "0.4.1" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 207dependencies = [ 208 "bitflags", 209] 210 211[[package]] 212name = "rustc-demangle" 213version = "0.1.23" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 216 217[[package]] 218name = "scopeguard" 219version = "1.2.0" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 222 223[[package]] 224name = "signal-hook-registry" 225version = "1.4.1" 226source = "registry+https://github.com/rust-lang/crates.io-index" 227checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 228dependencies = [ 229 "libc", 230] 231 232[[package]] 233name = "smallvec" 234version = "1.11.2" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 237 238[[package]] 239name = "socket2" 240version = "0.5.5" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 243dependencies = [ 244 "libc", 245 "windows-sys", 246] 247 248[[package]] 249name = "syn" 250version = "2.0.15" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 253dependencies = [ 254 "proc-macro2", 255 "quote", 256 "unicode-ident", 257] 258 259[[package]] 260name = "tokio" 261version = "1.34.0" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" 264dependencies = [ 265 "backtrace", 266 "bytes", 267 "libc", 268 "mio", 269 "num_cpus", 270 "parking_lot", 271 "pin-project-lite", 272 "signal-hook-registry", 273 "socket2", 274 "tokio-macros", 275 "windows-sys", 276] 277 278[[package]] 279name = "tokio-macros" 280version = "2.2.0" 281source = "registry+https://github.com/rust-lang/crates.io-index" 282checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 283dependencies = [ 284 "proc-macro2", 285 "quote", 286 "syn", 287] 288 289[[package]] 290name = "unicode-ident" 291version = "1.0.8" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 294 295[[package]] 296name = "wasi" 297version = "0.11.0+wasi-snapshot-preview1" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 300 301[[package]] 302name = "windows-sys" 303version = "0.48.0" 304source = "registry+https://github.com/rust-lang/crates.io-index" 305checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 306dependencies = [ 307 "windows-targets", 308] 309 310[[package]] 311name = "windows-targets" 312version = "0.48.5" 313source = "registry+https://github.com/rust-lang/crates.io-index" 314checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 315dependencies = [ 316 "windows_aarch64_gnullvm", 317 "windows_aarch64_msvc", 318 "windows_i686_gnu", 319 "windows_i686_msvc", 320 "windows_x86_64_gnu", 321 "windows_x86_64_gnullvm", 322 "windows_x86_64_msvc", 323] 324 325[[package]] 326name = "windows_aarch64_gnullvm" 327version = "0.48.5" 328source = "registry+https://github.com/rust-lang/crates.io-index" 329checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 330 331[[package]] 332name = "windows_aarch64_msvc" 333version = "0.48.5" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 336 337[[package]] 338name = "windows_i686_gnu" 339version = "0.48.5" 340source = "registry+https://github.com/rust-lang/crates.io-index" 341checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 342 343[[package]] 344name = "windows_i686_msvc" 345version = "0.48.5" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 348 349[[package]] 350name = "windows_x86_64_gnu" 351version = "0.48.5" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 354 355[[package]] 356name = "windows_x86_64_gnullvm" 357version = "0.48.5" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 360 361[[package]] 362name = "windows_x86_64_msvc" 363version = "0.48.5" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 366