diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 458 |
1 files changed, 458 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..a981e03 --- /dev/null +++ b/Cargo.lock | |||
| @@ -0,0 +1,458 @@ | |||
| 1 | # This file is automatically @generated by Cargo. | ||
| 2 | # It is not intended for manual editing. | ||
| 3 | version = 3 | ||
| 4 | |||
| 5 | [[package]] | ||
| 6 | name = "aho-corasick" | ||
| 7 | version = "0.7.18" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" | ||
| 10 | dependencies = [ | ||
| 11 | "memchr", | ||
| 12 | ] | ||
| 13 | |||
| 14 | [[package]] | ||
| 15 | name = "anyhow" | ||
| 16 | version = "1.0.41" | ||
| 17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 18 | checksum = "15af2628f6890fe2609a3b91bef4c83450512802e59489f9c1cb1fa5df064a61" | ||
| 19 | |||
| 20 | [[package]] | ||
| 21 | name = "atty" | ||
| 22 | version = "0.2.14" | ||
| 23 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 24 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
| 25 | dependencies = [ | ||
| 26 | "hermit-abi", | ||
| 27 | "libc", | ||
| 28 | "winapi", | ||
| 29 | ] | ||
| 30 | |||
| 31 | [[package]] | ||
| 32 | name = "autocfg" | ||
| 33 | version = "1.0.1" | ||
| 34 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 35 | checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" | ||
| 36 | |||
| 37 | [[package]] | ||
| 38 | name = "bitflags" | ||
| 39 | version = "1.2.1" | ||
| 40 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 41 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | ||
| 42 | |||
| 43 | [[package]] | ||
| 44 | name = "cfg-if" | ||
| 45 | version = "1.0.0" | ||
| 46 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 47 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | ||
| 48 | |||
| 49 | [[package]] | ||
| 50 | name = "chrono" | ||
| 51 | version = "0.4.19" | ||
| 52 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 53 | checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" | ||
| 54 | dependencies = [ | ||
| 55 | "libc", | ||
| 56 | "num-integer", | ||
| 57 | "num-traits", | ||
| 58 | "time", | ||
| 59 | "winapi", | ||
| 60 | ] | ||
| 61 | |||
| 62 | [[package]] | ||
| 63 | name = "clap" | ||
| 64 | version = "3.0.0-beta.2" | ||
| 65 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 66 | checksum = "4bd1061998a501ee7d4b6d449020df3266ca3124b941ec56cf2005c3779ca142" | ||
| 67 | dependencies = [ | ||
| 68 | "atty", | ||
| 69 | "bitflags", | ||
| 70 | "clap_derive", | ||
| 71 | "indexmap", | ||
| 72 | "lazy_static", | ||
| 73 | "os_str_bytes", | ||
| 74 | "strsim", | ||
| 75 | "termcolor", | ||
| 76 | "textwrap", | ||
| 77 | "unicode-width", | ||
| 78 | "vec_map", | ||
| 79 | ] | ||
| 80 | |||
| 81 | [[package]] | ||
| 82 | name = "clap_derive" | ||
| 83 | version = "3.0.0-beta.2" | ||
| 84 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 85 | checksum = "370f715b81112975b1b69db93e0b56ea4cd4e5002ac43b2da8474106a54096a1" | ||
| 86 | dependencies = [ | ||
| 87 | "heck", | ||
| 88 | "proc-macro-error", | ||
| 89 | "proc-macro2", | ||
| 90 | "quote", | ||
| 91 | "syn", | ||
| 92 | ] | ||
| 93 | |||
| 94 | [[package]] | ||
| 95 | name = "dotup" | ||
| 96 | version = "0.1.0" | ||
| 97 | dependencies = [ | ||
| 98 | "log", | ||
| 99 | "serde", | ||
| 100 | "slotmap", | ||
| 101 | "thiserror", | ||
| 102 | "toml", | ||
| 103 | ] | ||
| 104 | |||
| 105 | [[package]] | ||
| 106 | name = "dotup_cli" | ||
| 107 | version = "0.1.0" | ||
| 108 | dependencies = [ | ||
| 109 | "anyhow", | ||
| 110 | "clap", | ||
| 111 | "dotup", | ||
| 112 | "flexi_logger", | ||
| 113 | "log", | ||
| 114 | ] | ||
| 115 | |||
| 116 | [[package]] | ||
| 117 | name = "flexi_logger" | ||
| 118 | version = "0.18.0" | ||
| 119 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 120 | checksum = "8ba2265890613939b533fa11c3728651531419ac549ccf527896201581f23991" | ||
| 121 | dependencies = [ | ||
| 122 | "atty", | ||
| 123 | "chrono", | ||
| 124 | "glob", | ||
| 125 | "lazy_static", | ||
| 126 | "log", | ||
| 127 | "regex", | ||
| 128 | "thiserror", | ||
| 129 | "yansi", | ||
| 130 | ] | ||
| 131 | |||
| 132 | [[package]] | ||
| 133 | name = "glob" | ||
| 134 | version = "0.3.0" | ||
| 135 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 136 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | ||
| 137 | |||
| 138 | [[package]] | ||
| 139 | name = "hashbrown" | ||
| 140 | version = "0.11.2" | ||
| 141 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 142 | checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" | ||
| 143 | |||
| 144 | [[package]] | ||
| 145 | name = "heck" | ||
| 146 | version = "0.3.3" | ||
| 147 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 148 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" | ||
| 149 | dependencies = [ | ||
| 150 | "unicode-segmentation", | ||
| 151 | ] | ||
| 152 | |||
| 153 | [[package]] | ||
| 154 | name = "hermit-abi" | ||
| 155 | version = "0.1.19" | ||
| 156 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 157 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" | ||
| 158 | dependencies = [ | ||
| 159 | "libc", | ||
| 160 | ] | ||
| 161 | |||
| 162 | [[package]] | ||
| 163 | name = "indexmap" | ||
| 164 | version = "1.7.0" | ||
| 165 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 166 | checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" | ||
| 167 | dependencies = [ | ||
| 168 | "autocfg", | ||
| 169 | "hashbrown", | ||
| 170 | ] | ||
| 171 | |||
| 172 | [[package]] | ||
| 173 | name = "lazy_static" | ||
| 174 | version = "1.4.0" | ||
| 175 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 176 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
| 177 | |||
| 178 | [[package]] | ||
| 179 | name = "libc" | ||
| 180 | version = "0.2.97" | ||
| 181 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 182 | checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6" | ||
| 183 | |||
| 184 | [[package]] | ||
| 185 | name = "log" | ||
| 186 | version = "0.4.14" | ||
| 187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 188 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" | ||
| 189 | dependencies = [ | ||
| 190 | "cfg-if", | ||
| 191 | ] | ||
| 192 | |||
| 193 | [[package]] | ||
| 194 | name = "memchr" | ||
| 195 | version = "2.4.0" | ||
| 196 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 197 | checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" | ||
| 198 | |||
| 199 | [[package]] | ||
| 200 | name = "num-integer" | ||
| 201 | version = "0.1.44" | ||
| 202 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 203 | checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" | ||
| 204 | dependencies = [ | ||
| 205 | "autocfg", | ||
| 206 | "num-traits", | ||
| 207 | ] | ||
| 208 | |||
| 209 | [[package]] | ||
| 210 | name = "num-traits" | ||
| 211 | version = "0.2.14" | ||
| 212 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 213 | checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" | ||
| 214 | dependencies = [ | ||
| 215 | "autocfg", | ||
| 216 | ] | ||
| 217 | |||
| 218 | [[package]] | ||
| 219 | name = "os_str_bytes" | ||
| 220 | version = "2.4.0" | ||
| 221 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 222 | checksum = "afb2e1c3ee07430c2cf76151675e583e0f19985fa6efae47d6848a3e2c824f85" | ||
| 223 | |||
| 224 | [[package]] | ||
| 225 | name = "proc-macro-error" | ||
| 226 | version = "1.0.4" | ||
| 227 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 228 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" | ||
| 229 | dependencies = [ | ||
| 230 | "proc-macro-error-attr", | ||
| 231 | "proc-macro2", | ||
| 232 | "quote", | ||
| 233 | "syn", | ||
| 234 | "version_check", | ||
| 235 | ] | ||
| 236 | |||
| 237 | [[package]] | ||
| 238 | name = "proc-macro-error-attr" | ||
| 239 | version = "1.0.4" | ||
| 240 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 241 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" | ||
| 242 | dependencies = [ | ||
| 243 | "proc-macro2", | ||
| 244 | "quote", | ||
| 245 | "version_check", | ||
| 246 | ] | ||
| 247 | |||
| 248 | [[package]] | ||
| 249 | name = "proc-macro2" | ||
| 250 | version = "1.0.27" | ||
| 251 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 252 | checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038" | ||
| 253 | dependencies = [ | ||
| 254 | "unicode-xid", | ||
| 255 | ] | ||
| 256 | |||
| 257 | [[package]] | ||
| 258 | name = "quote" | ||
| 259 | version = "1.0.9" | ||
| 260 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 261 | checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" | ||
| 262 | dependencies = [ | ||
| 263 | "proc-macro2", | ||
| 264 | ] | ||
| 265 | |||
| 266 | [[package]] | ||
| 267 | name = "regex" | ||
| 268 | version = "1.5.4" | ||
| 269 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 270 | checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" | ||
| 271 | dependencies = [ | ||
| 272 | "aho-corasick", | ||
| 273 | "memchr", | ||
| 274 | "regex-syntax", | ||
| 275 | ] | ||
| 276 | |||
| 277 | [[package]] | ||
| 278 | name = "regex-syntax" | ||
| 279 | version = "0.6.25" | ||
| 280 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 281 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" | ||
| 282 | |||
| 283 | [[package]] | ||
| 284 | name = "serde" | ||
| 285 | version = "1.0.126" | ||
| 286 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 287 | checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03" | ||
| 288 | dependencies = [ | ||
| 289 | "serde_derive", | ||
| 290 | ] | ||
| 291 | |||
| 292 | [[package]] | ||
| 293 | name = "serde_derive" | ||
| 294 | version = "1.0.126" | ||
| 295 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 296 | checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43" | ||
| 297 | dependencies = [ | ||
| 298 | "proc-macro2", | ||
| 299 | "quote", | ||
| 300 | "syn", | ||
| 301 | ] | ||
| 302 | |||
| 303 | [[package]] | ||
| 304 | name = "slotmap" | ||
| 305 | version = "1.0.5" | ||
| 306 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 307 | checksum = "a952280edbecfb1d4bd3cf2dbc309dc6ab523e53487c438ae21a6df09fe84bc4" | ||
| 308 | dependencies = [ | ||
| 309 | "version_check", | ||
| 310 | ] | ||
| 311 | |||
| 312 | [[package]] | ||
| 313 | name = "strsim" | ||
| 314 | version = "0.10.0" | ||
| 315 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 316 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | ||
| 317 | |||
| 318 | [[package]] | ||
| 319 | name = "syn" | ||
| 320 | version = "1.0.73" | ||
| 321 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 322 | checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7" | ||
| 323 | dependencies = [ | ||
| 324 | "proc-macro2", | ||
| 325 | "quote", | ||
| 326 | "unicode-xid", | ||
| 327 | ] | ||
| 328 | |||
| 329 | [[package]] | ||
| 330 | name = "termcolor" | ||
| 331 | version = "1.1.2" | ||
| 332 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 333 | checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" | ||
| 334 | dependencies = [ | ||
| 335 | "winapi-util", | ||
| 336 | ] | ||
| 337 | |||
| 338 | [[package]] | ||
| 339 | name = "textwrap" | ||
| 340 | version = "0.12.1" | ||
| 341 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 342 | checksum = "203008d98caf094106cfaba70acfed15e18ed3ddb7d94e49baec153a2b462789" | ||
| 343 | dependencies = [ | ||
| 344 | "unicode-width", | ||
| 345 | ] | ||
| 346 | |||
| 347 | [[package]] | ||
| 348 | name = "thiserror" | ||
| 349 | version = "1.0.26" | ||
| 350 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 351 | checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2" | ||
| 352 | dependencies = [ | ||
| 353 | "thiserror-impl", | ||
| 354 | ] | ||
| 355 | |||
| 356 | [[package]] | ||
| 357 | name = "thiserror-impl" | ||
| 358 | version = "1.0.26" | ||
| 359 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 360 | checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745" | ||
| 361 | dependencies = [ | ||
| 362 | "proc-macro2", | ||
| 363 | "quote", | ||
| 364 | "syn", | ||
| 365 | ] | ||
| 366 | |||
| 367 | [[package]] | ||
| 368 | name = "time" | ||
| 369 | version = "0.1.44" | ||
| 370 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 371 | checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" | ||
| 372 | dependencies = [ | ||
| 373 | "libc", | ||
| 374 | "wasi", | ||
| 375 | "winapi", | ||
| 376 | ] | ||
| 377 | |||
| 378 | [[package]] | ||
| 379 | name = "toml" | ||
| 380 | version = "0.5.8" | ||
| 381 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 382 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" | ||
| 383 | dependencies = [ | ||
| 384 | "serde", | ||
| 385 | ] | ||
| 386 | |||
| 387 | [[package]] | ||
| 388 | name = "unicode-segmentation" | ||
| 389 | version = "1.8.0" | ||
| 390 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 391 | checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" | ||
| 392 | |||
| 393 | [[package]] | ||
| 394 | name = "unicode-width" | ||
| 395 | version = "0.1.8" | ||
| 396 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 397 | checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" | ||
| 398 | |||
| 399 | [[package]] | ||
| 400 | name = "unicode-xid" | ||
| 401 | version = "0.2.2" | ||
| 402 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 403 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" | ||
| 404 | |||
| 405 | [[package]] | ||
| 406 | name = "vec_map" | ||
| 407 | version = "0.8.2" | ||
| 408 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 409 | checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" | ||
| 410 | |||
| 411 | [[package]] | ||
| 412 | name = "version_check" | ||
| 413 | version = "0.9.3" | ||
| 414 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 415 | checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" | ||
| 416 | |||
| 417 | [[package]] | ||
| 418 | name = "wasi" | ||
| 419 | version = "0.10.0+wasi-snapshot-preview1" | ||
| 420 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 421 | checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" | ||
| 422 | |||
| 423 | [[package]] | ||
| 424 | name = "winapi" | ||
| 425 | version = "0.3.9" | ||
| 426 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 427 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | ||
| 428 | dependencies = [ | ||
| 429 | "winapi-i686-pc-windows-gnu", | ||
| 430 | "winapi-x86_64-pc-windows-gnu", | ||
| 431 | ] | ||
| 432 | |||
| 433 | [[package]] | ||
| 434 | name = "winapi-i686-pc-windows-gnu" | ||
| 435 | version = "0.4.0" | ||
| 436 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 437 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
| 438 | |||
| 439 | [[package]] | ||
| 440 | name = "winapi-util" | ||
| 441 | version = "0.1.5" | ||
| 442 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 443 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | ||
| 444 | dependencies = [ | ||
| 445 | "winapi", | ||
| 446 | ] | ||
| 447 | |||
| 448 | [[package]] | ||
| 449 | name = "winapi-x86_64-pc-windows-gnu" | ||
| 450 | version = "0.4.0" | ||
| 451 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 452 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
| 453 | |||
| 454 | [[package]] | ||
| 455 | name = "yansi" | ||
| 456 | version = "0.5.0" | ||
| 457 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 458 | checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71" | ||
