diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 422 |
1 files changed, 422 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..f88aa27 --- /dev/null +++ b/Cargo.lock | |||
| @@ -0,0 +1,422 @@ | |||
| 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 = "ansi_term" | ||
| 16 | version = "0.12.1" | ||
| 17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 18 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" | ||
| 19 | dependencies = [ | ||
| 20 | "winapi", | ||
| 21 | ] | ||
| 22 | |||
| 23 | [[package]] | ||
| 24 | name = "anyhow" | ||
| 25 | version = "1.0.53" | ||
| 26 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 27 | checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0" | ||
| 28 | |||
| 29 | [[package]] | ||
| 30 | name = "atty" | ||
| 31 | version = "0.2.14" | ||
| 32 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 33 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
| 34 | dependencies = [ | ||
| 35 | "hermit-abi", | ||
| 36 | "libc", | ||
| 37 | "winapi", | ||
| 38 | ] | ||
| 39 | |||
| 40 | [[package]] | ||
| 41 | name = "autocfg" | ||
| 42 | version = "1.0.1" | ||
| 43 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 44 | checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" | ||
| 45 | |||
| 46 | [[package]] | ||
| 47 | name = "bitflags" | ||
| 48 | version = "1.3.2" | ||
| 49 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 50 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | ||
| 51 | |||
| 52 | [[package]] | ||
| 53 | name = "cfg-if" | ||
| 54 | version = "1.0.0" | ||
| 55 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 56 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | ||
| 57 | |||
| 58 | [[package]] | ||
| 59 | name = "clap" | ||
| 60 | version = "3.0.14" | ||
| 61 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 62 | checksum = "b63edc3f163b3c71ec8aa23f9bd6070f77edbf3d1d198b164afa90ff00e4ec62" | ||
| 63 | dependencies = [ | ||
| 64 | "atty", | ||
| 65 | "bitflags", | ||
| 66 | "clap_derive", | ||
| 67 | "indexmap", | ||
| 68 | "lazy_static", | ||
| 69 | "os_str_bytes", | ||
| 70 | "strsim", | ||
| 71 | "termcolor", | ||
| 72 | "textwrap", | ||
| 73 | ] | ||
| 74 | |||
| 75 | [[package]] | ||
| 76 | name = "clap_derive" | ||
| 77 | version = "3.0.14" | ||
| 78 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 79 | checksum = "9a1132dc3944b31c20dd8b906b3a9f0a5d0243e092d59171414969657ac6aa85" | ||
| 80 | dependencies = [ | ||
| 81 | "heck", | ||
| 82 | "proc-macro-error", | ||
| 83 | "proc-macro2", | ||
| 84 | "quote", | ||
| 85 | "syn", | ||
| 86 | ] | ||
| 87 | |||
| 88 | [[package]] | ||
| 89 | name = "dotup" | ||
| 90 | version = "0.0.0" | ||
| 91 | dependencies = [ | ||
| 92 | "ansi_term", | ||
| 93 | "anyhow", | ||
| 94 | "clap", | ||
| 95 | "flexi_logger", | ||
| 96 | "log", | ||
| 97 | "serde", | ||
| 98 | "slotmap", | ||
| 99 | "thiserror", | ||
| 100 | "toml", | ||
| 101 | ] | ||
| 102 | |||
| 103 | [[package]] | ||
| 104 | name = "flexi_logger" | ||
| 105 | version = "0.22.3" | ||
| 106 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 107 | checksum = "969940c39bc718475391e53a3a59b0157e64929c80cf83ad5dde5f770ecdc423" | ||
| 108 | dependencies = [ | ||
| 109 | "ansi_term", | ||
| 110 | "atty", | ||
| 111 | "glob", | ||
| 112 | "lazy_static", | ||
| 113 | "log", | ||
| 114 | "regex", | ||
| 115 | "rustversion", | ||
| 116 | "thiserror", | ||
| 117 | "time", | ||
| 118 | ] | ||
| 119 | |||
| 120 | [[package]] | ||
| 121 | name = "glob" | ||
| 122 | version = "0.3.0" | ||
| 123 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 124 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | ||
| 125 | |||
| 126 | [[package]] | ||
| 127 | name = "hashbrown" | ||
| 128 | version = "0.11.2" | ||
| 129 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 130 | checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" | ||
| 131 | |||
| 132 | [[package]] | ||
| 133 | name = "heck" | ||
| 134 | version = "0.4.0" | ||
| 135 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 136 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" | ||
| 137 | |||
| 138 | [[package]] | ||
| 139 | name = "hermit-abi" | ||
| 140 | version = "0.1.19" | ||
| 141 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 142 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" | ||
| 143 | dependencies = [ | ||
| 144 | "libc", | ||
| 145 | ] | ||
| 146 | |||
| 147 | [[package]] | ||
| 148 | name = "indexmap" | ||
| 149 | version = "1.8.0" | ||
| 150 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 151 | checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" | ||
| 152 | dependencies = [ | ||
| 153 | "autocfg", | ||
| 154 | "hashbrown", | ||
| 155 | ] | ||
| 156 | |||
| 157 | [[package]] | ||
| 158 | name = "itoa" | ||
| 159 | version = "1.0.1" | ||
| 160 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 161 | checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" | ||
| 162 | |||
| 163 | [[package]] | ||
| 164 | name = "lazy_static" | ||
| 165 | version = "1.4.0" | ||
| 166 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 167 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
| 168 | |||
| 169 | [[package]] | ||
| 170 | name = "libc" | ||
| 171 | version = "0.2.117" | ||
| 172 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 173 | checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c" | ||
| 174 | |||
| 175 | [[package]] | ||
| 176 | name = "log" | ||
| 177 | version = "0.4.14" | ||
| 178 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 179 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" | ||
| 180 | dependencies = [ | ||
| 181 | "cfg-if", | ||
| 182 | ] | ||
| 183 | |||
| 184 | [[package]] | ||
| 185 | name = "memchr" | ||
| 186 | version = "2.4.1" | ||
| 187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 188 | checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" | ||
| 189 | |||
| 190 | [[package]] | ||
| 191 | name = "num_threads" | ||
| 192 | version = "0.1.3" | ||
| 193 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 194 | checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15" | ||
| 195 | dependencies = [ | ||
| 196 | "libc", | ||
| 197 | ] | ||
| 198 | |||
| 199 | [[package]] | ||
| 200 | name = "os_str_bytes" | ||
| 201 | version = "6.0.0" | ||
| 202 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 203 | checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" | ||
| 204 | dependencies = [ | ||
| 205 | "memchr", | ||
| 206 | ] | ||
| 207 | |||
| 208 | [[package]] | ||
| 209 | name = "proc-macro-error" | ||
| 210 | version = "1.0.4" | ||
| 211 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 212 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" | ||
| 213 | dependencies = [ | ||
| 214 | "proc-macro-error-attr", | ||
| 215 | "proc-macro2", | ||
| 216 | "quote", | ||
| 217 | "syn", | ||
| 218 | "version_check", | ||
| 219 | ] | ||
| 220 | |||
| 221 | [[package]] | ||
| 222 | name = "proc-macro-error-attr" | ||
| 223 | version = "1.0.4" | ||
| 224 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 225 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" | ||
| 226 | dependencies = [ | ||
| 227 | "proc-macro2", | ||
| 228 | "quote", | ||
| 229 | "version_check", | ||
| 230 | ] | ||
| 231 | |||
| 232 | [[package]] | ||
| 233 | name = "proc-macro2" | ||
| 234 | version = "1.0.36" | ||
| 235 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 236 | checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" | ||
| 237 | dependencies = [ | ||
| 238 | "unicode-xid", | ||
| 239 | ] | ||
| 240 | |||
| 241 | [[package]] | ||
| 242 | name = "quote" | ||
| 243 | version = "1.0.15" | ||
| 244 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 245 | checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145" | ||
| 246 | dependencies = [ | ||
| 247 | "proc-macro2", | ||
| 248 | ] | ||
| 249 | |||
| 250 | [[package]] | ||
| 251 | name = "regex" | ||
| 252 | version = "1.5.4" | ||
| 253 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 254 | checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" | ||
| 255 | dependencies = [ | ||
| 256 | "aho-corasick", | ||
| 257 | "memchr", | ||
| 258 | "regex-syntax", | ||
| 259 | ] | ||
| 260 | |||
| 261 | [[package]] | ||
| 262 | name = "regex-syntax" | ||
| 263 | version = "0.6.25" | ||
| 264 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 265 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" | ||
| 266 | |||
| 267 | [[package]] | ||
| 268 | name = "rustversion" | ||
| 269 | version = "1.0.6" | ||
| 270 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 271 | checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" | ||
| 272 | |||
| 273 | [[package]] | ||
| 274 | name = "serde" | ||
| 275 | version = "1.0.136" | ||
| 276 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 277 | checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" | ||
| 278 | dependencies = [ | ||
| 279 | "serde_derive", | ||
| 280 | ] | ||
| 281 | |||
| 282 | [[package]] | ||
| 283 | name = "serde_derive" | ||
| 284 | version = "1.0.136" | ||
| 285 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 286 | checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9" | ||
| 287 | dependencies = [ | ||
| 288 | "proc-macro2", | ||
| 289 | "quote", | ||
| 290 | "syn", | ||
| 291 | ] | ||
| 292 | |||
| 293 | [[package]] | ||
| 294 | name = "slotmap" | ||
| 295 | version = "1.0.6" | ||
| 296 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 297 | checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" | ||
| 298 | dependencies = [ | ||
| 299 | "version_check", | ||
| 300 | ] | ||
| 301 | |||
| 302 | [[package]] | ||
| 303 | name = "strsim" | ||
| 304 | version = "0.10.0" | ||
| 305 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 306 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | ||
| 307 | |||
| 308 | [[package]] | ||
| 309 | name = "syn" | ||
| 310 | version = "1.0.86" | ||
| 311 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 312 | checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b" | ||
| 313 | dependencies = [ | ||
| 314 | "proc-macro2", | ||
| 315 | "quote", | ||
| 316 | "unicode-xid", | ||
| 317 | ] | ||
| 318 | |||
| 319 | [[package]] | ||
| 320 | name = "termcolor" | ||
| 321 | version = "1.1.2" | ||
| 322 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 323 | checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" | ||
| 324 | dependencies = [ | ||
| 325 | "winapi-util", | ||
| 326 | ] | ||
| 327 | |||
| 328 | [[package]] | ||
| 329 | name = "textwrap" | ||
| 330 | version = "0.14.2" | ||
| 331 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 332 | checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" | ||
| 333 | |||
| 334 | [[package]] | ||
| 335 | name = "thiserror" | ||
| 336 | version = "1.0.30" | ||
| 337 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 338 | checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" | ||
| 339 | dependencies = [ | ||
| 340 | "thiserror-impl", | ||
| 341 | ] | ||
| 342 | |||
| 343 | [[package]] | ||
| 344 | name = "thiserror-impl" | ||
| 345 | version = "1.0.30" | ||
| 346 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 347 | checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" | ||
| 348 | dependencies = [ | ||
| 349 | "proc-macro2", | ||
| 350 | "quote", | ||
| 351 | "syn", | ||
| 352 | ] | ||
| 353 | |||
| 354 | [[package]] | ||
| 355 | name = "time" | ||
| 356 | version = "0.3.7" | ||
| 357 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 358 | checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d" | ||
| 359 | dependencies = [ | ||
| 360 | "itoa", | ||
| 361 | "libc", | ||
| 362 | "num_threads", | ||
| 363 | "time-macros", | ||
| 364 | ] | ||
| 365 | |||
| 366 | [[package]] | ||
| 367 | name = "time-macros" | ||
| 368 | version = "0.2.3" | ||
| 369 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 370 | checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6" | ||
| 371 | |||
| 372 | [[package]] | ||
| 373 | name = "toml" | ||
| 374 | version = "0.5.8" | ||
| 375 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 376 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" | ||
| 377 | dependencies = [ | ||
| 378 | "serde", | ||
| 379 | ] | ||
| 380 | |||
| 381 | [[package]] | ||
| 382 | name = "unicode-xid" | ||
| 383 | version = "0.2.2" | ||
| 384 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 385 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" | ||
| 386 | |||
| 387 | [[package]] | ||
| 388 | name = "version_check" | ||
| 389 | version = "0.9.4" | ||
| 390 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 391 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" | ||
| 392 | |||
| 393 | [[package]] | ||
| 394 | name = "winapi" | ||
| 395 | version = "0.3.9" | ||
| 396 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 397 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | ||
| 398 | dependencies = [ | ||
| 399 | "winapi-i686-pc-windows-gnu", | ||
| 400 | "winapi-x86_64-pc-windows-gnu", | ||
| 401 | ] | ||
| 402 | |||
| 403 | [[package]] | ||
| 404 | name = "winapi-i686-pc-windows-gnu" | ||
| 405 | version = "0.4.0" | ||
| 406 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 407 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
| 408 | |||
| 409 | [[package]] | ||
| 410 | name = "winapi-util" | ||
| 411 | version = "0.1.5" | ||
| 412 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 413 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | ||
| 414 | dependencies = [ | ||
| 415 | "winapi", | ||
| 416 | ] | ||
| 417 | |||
| 418 | [[package]] | ||
| 419 | name = "winapi-x86_64-pc-windows-gnu" | ||
| 420 | version = "0.4.0" | ||
| 421 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 422 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
