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 = "0.7.18" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "ansi_term" 16version = "0.12.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 19dependencies = [ 20 "winapi", 21] 22 23[[package]] 24name = "anyhow" 25version = "1.0.51" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "8b26702f315f53b6071259e15dd9d64528213b44d61de1ec926eca7715d62203" 28 29[[package]] 30name = "atty" 31version = "0.2.14" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 34dependencies = [ 35 "hermit-abi", 36 "libc", 37 "winapi", 38] 39 40[[package]] 41name = "bitflags" 42version = "1.3.2" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 45 46[[package]] 47name = "block-buffer" 48version = "0.9.0" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 51dependencies = [ 52 "generic-array", 53] 54 55[[package]] 56name = "cfg-if" 57version = "1.0.0" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 60 61[[package]] 62name = "clap" 63version = "2.34.0" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 66dependencies = [ 67 "ansi_term", 68 "atty", 69 "bitflags", 70 "strsim", 71 "textwrap", 72 "unicode-width", 73 "vec_map", 74] 75 76[[package]] 77name = "cpufeatures" 78version = "0.2.1" 79source = "registry+https://github.com/rust-lang/crates.io-index" 80checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" 81dependencies = [ 82 "libc", 83] 84 85[[package]] 86name = "digest" 87version = "0.9.0" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 90dependencies = [ 91 "generic-array", 92] 93 94[[package]] 95name = "generic-array" 96version = "0.14.4" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 99dependencies = [ 100 "typenum", 101 "version_check", 102] 103 104[[package]] 105name = "getrandom" 106version = "0.2.3" 107source = "registry+https://github.com/rust-lang/crates.io-index" 108checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" 109dependencies = [ 110 "cfg-if", 111 "libc", 112 "wasi", 113] 114 115[[package]] 116name = "heck" 117version = "0.3.3" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 120dependencies = [ 121 "unicode-segmentation", 122] 123 124[[package]] 125name = "hermit-abi" 126version = "0.1.19" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 129dependencies = [ 130 "libc", 131] 132 133[[package]] 134name = "itoa" 135version = "1.0.1" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" 138 139[[package]] 140name = "lazy_static" 141version = "1.4.0" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 144 145[[package]] 146name = "libc" 147version = "0.2.112" 148source = "registry+https://github.com/rust-lang/crates.io-index" 149checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125" 150 151[[package]] 152name = "memchr" 153version = "2.4.1" 154source = "registry+https://github.com/rust-lang/crates.io-index" 155checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 156 157[[package]] 158name = "opaque-debug" 159version = "0.3.0" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 162 163[[package]] 164name = "patch_sync" 165version = "1.1.0" 166dependencies = [ 167 "anyhow", 168 "rand", 169 "regex", 170 "scopeguard", 171 "serde", 172 "serde_json", 173 "sha2", 174 "structopt", 175 "time", 176] 177 178[[package]] 179name = "ppv-lite86" 180version = "0.2.15" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba" 183 184[[package]] 185name = "proc-macro-error" 186version = "1.0.4" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 189dependencies = [ 190 "proc-macro-error-attr", 191 "proc-macro2", 192 "quote", 193 "syn", 194 "version_check", 195] 196 197[[package]] 198name = "proc-macro-error-attr" 199version = "1.0.4" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 202dependencies = [ 203 "proc-macro2", 204 "quote", 205 "version_check", 206] 207 208[[package]] 209name = "proc-macro2" 210version = "1.0.34" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "2f84e92c0f7c9d58328b85a78557813e4bd845130db68d7184635344399423b1" 213dependencies = [ 214 "unicode-xid", 215] 216 217[[package]] 218name = "quote" 219version = "1.0.10" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" 222dependencies = [ 223 "proc-macro2", 224] 225 226[[package]] 227name = "rand" 228version = "0.8.4" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" 231dependencies = [ 232 "libc", 233 "rand_chacha", 234 "rand_core", 235 "rand_hc", 236] 237 238[[package]] 239name = "rand_chacha" 240version = "0.3.1" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 243dependencies = [ 244 "ppv-lite86", 245 "rand_core", 246] 247 248[[package]] 249name = "rand_core" 250version = "0.6.3" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 253dependencies = [ 254 "getrandom", 255] 256 257[[package]] 258name = "rand_hc" 259version = "0.3.1" 260source = "registry+https://github.com/rust-lang/crates.io-index" 261checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" 262dependencies = [ 263 "rand_core", 264] 265 266[[package]] 267name = "regex" 268version = "1.5.4" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" 271dependencies = [ 272 "aho-corasick", 273 "memchr", 274 "regex-syntax", 275] 276 277[[package]] 278name = "regex-syntax" 279version = "0.6.25" 280source = "registry+https://github.com/rust-lang/crates.io-index" 281checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 282 283[[package]] 284name = "ryu" 285version = "1.0.9" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" 288 289[[package]] 290name = "scopeguard" 291version = "1.1.0" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 294 295[[package]] 296name = "serde" 297version = "1.0.132" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "8b9875c23cf305cd1fd7eb77234cbb705f21ea6a72c637a5c6db5fe4b8e7f008" 300dependencies = [ 301 "serde_derive", 302] 303 304[[package]] 305name = "serde_derive" 306version = "1.0.132" 307source = "registry+https://github.com/rust-lang/crates.io-index" 308checksum = "ecc0db5cb2556c0e558887d9bbdcf6ac4471e83ff66cf696e5419024d1606276" 309dependencies = [ 310 "proc-macro2", 311 "quote", 312 "syn", 313] 314 315[[package]] 316name = "serde_json" 317version = "1.0.73" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "bcbd0344bc6533bc7ec56df11d42fb70f1b912351c0825ccb7211b59d8af7cf5" 320dependencies = [ 321 "itoa", 322 "ryu", 323 "serde", 324] 325 326[[package]] 327name = "sha2" 328version = "0.9.8" 329source = "registry+https://github.com/rust-lang/crates.io-index" 330checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa" 331dependencies = [ 332 "block-buffer", 333 "cfg-if", 334 "cpufeatures", 335 "digest", 336 "opaque-debug", 337] 338 339[[package]] 340name = "strsim" 341version = "0.8.0" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 344 345[[package]] 346name = "structopt" 347version = "0.3.25" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "40b9788f4202aa75c240ecc9c15c65185e6a39ccdeb0fd5d008b98825464c87c" 350dependencies = [ 351 "clap", 352 "lazy_static", 353 "structopt-derive", 354] 355 356[[package]] 357name = "structopt-derive" 358version = "0.4.18" 359source = "registry+https://github.com/rust-lang/crates.io-index" 360checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 361dependencies = [ 362 "heck", 363 "proc-macro-error", 364 "proc-macro2", 365 "quote", 366 "syn", 367] 368 369[[package]] 370name = "syn" 371version = "1.0.83" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "23a1dfb999630e338648c83e91c59a4e9fb7620f520c3194b6b89e276f2f1959" 374dependencies = [ 375 "proc-macro2", 376 "quote", 377 "unicode-xid", 378] 379 380[[package]] 381name = "textwrap" 382version = "0.11.0" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 385dependencies = [ 386 "unicode-width", 387] 388 389[[package]] 390name = "time" 391version = "0.3.5" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "41effe7cfa8af36f439fac33861b66b049edc6f9a32331e2312660529c1c24ad" 394dependencies = [ 395 "libc", 396] 397 398[[package]] 399name = "typenum" 400version = "1.14.0" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec" 403 404[[package]] 405name = "unicode-segmentation" 406version = "1.8.0" 407source = "registry+https://github.com/rust-lang/crates.io-index" 408checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" 409 410[[package]] 411name = "unicode-width" 412version = "0.1.9" 413source = "registry+https://github.com/rust-lang/crates.io-index" 414checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 415 416[[package]] 417name = "unicode-xid" 418version = "0.2.2" 419source = "registry+https://github.com/rust-lang/crates.io-index" 420checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 421 422[[package]] 423name = "vec_map" 424version = "0.8.2" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 427 428[[package]] 429name = "version_check" 430version = "0.9.3" 431source = "registry+https://github.com/rust-lang/crates.io-index" 432checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 433 434[[package]] 435name = "wasi" 436version = "0.10.2+wasi-snapshot-preview1" 437source = "registry+https://github.com/rust-lang/crates.io-index" 438checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 439 440[[package]] 441name = "winapi" 442version = "0.3.9" 443source = "registry+https://github.com/rust-lang/crates.io-index" 444checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 445dependencies = [ 446 "winapi-i686-pc-windows-gnu", 447 "winapi-x86_64-pc-windows-gnu", 448] 449 450[[package]] 451name = "winapi-i686-pc-windows-gnu" 452version = "0.4.0" 453source = "registry+https://github.com/rust-lang/crates.io-index" 454checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 455 456[[package]] 457name = "winapi-x86_64-pc-windows-gnu" 458version = "0.4.0" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 461