diff options
| author | diogo464 <[email protected]> | 2023-04-07 20:49:26 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2023-04-07 20:51:32 +0100 |
| commit | e7588a7f175ca9b9604ce35d72086489da7a66e3 (patch) | |
| tree | 03379454044e505c65e32ccf96cdfc34441bf914 /Cargo.lock | |
| parent | fa3fecca00442acea029248c6cf1fa0ba81e96b9 (diff) | |
version bump: 0.2.00.2.0
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 530 |
1 files changed, 464 insertions, 66 deletions
| @@ -12,6 +12,46 @@ dependencies = [ | |||
| 12 | ] | 12 | ] |
| 13 | 13 | ||
| 14 | [[package]] | 14 | [[package]] |
| 15 | name = "anstream" | ||
| 16 | version = "0.2.6" | ||
| 17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 18 | checksum = "342258dd14006105c2b75ab1bd7543a03bdf0cfc94383303ac212a04939dff6f" | ||
| 19 | dependencies = [ | ||
| 20 | "anstyle", | ||
| 21 | "anstyle-parse", | ||
| 22 | "anstyle-wincon", | ||
| 23 | "concolor-override", | ||
| 24 | "concolor-query", | ||
| 25 | "is-terminal", | ||
| 26 | "utf8parse", | ||
| 27 | ] | ||
| 28 | |||
| 29 | [[package]] | ||
| 30 | name = "anstyle" | ||
| 31 | version = "0.3.5" | ||
| 32 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 33 | checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2" | ||
| 34 | |||
| 35 | [[package]] | ||
| 36 | name = "anstyle-parse" | ||
| 37 | version = "0.1.1" | ||
| 38 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 39 | checksum = "a7d1bb534e9efed14f3e5f44e7dd1a4f709384023a4165199a4241e18dff0116" | ||
| 40 | dependencies = [ | ||
| 41 | "utf8parse", | ||
| 42 | ] | ||
| 43 | |||
| 44 | [[package]] | ||
| 45 | name = "anstyle-wincon" | ||
| 46 | version = "0.2.0" | ||
| 47 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 48 | checksum = "c3127af6145b149f3287bb9a0d10ad9c5692dba8c53ad48285e5bec4063834fa" | ||
| 49 | dependencies = [ | ||
| 50 | "anstyle", | ||
| 51 | "windows-sys 0.45.0", | ||
| 52 | ] | ||
| 53 | |||
| 54 | [[package]] | ||
| 15 | name = "anyhow" | 55 | name = "anyhow" |
| 16 | version = "1.0.70" | 56 | version = "1.0.70" |
| 17 | source = "registry+https://github.com/rust-lang/crates.io-index" | 57 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -23,7 +63,7 @@ version = "0.2.14" | |||
| 23 | source = "registry+https://github.com/rust-lang/crates.io-index" | 63 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 24 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | 64 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" |
| 25 | dependencies = [ | 65 | dependencies = [ |
| 26 | "hermit-abi", | 66 | "hermit-abi 0.1.19", |
| 27 | "libc", | 67 | "libc", |
| 28 | "winapi", | 68 | "winapi", |
| 29 | ] | 69 | ] |
| @@ -57,6 +97,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 57 | checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" | 97 | checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" |
| 58 | 98 | ||
| 59 | [[package]] | 99 | [[package]] |
| 100 | name = "cc" | ||
| 101 | version = "1.0.79" | ||
| 102 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 103 | checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" | ||
| 104 | |||
| 105 | [[package]] | ||
| 60 | name = "cfg-if" | 106 | name = "cfg-if" |
| 61 | version = "1.0.0" | 107 | version = "1.0.0" |
| 62 | source = "registry+https://github.com/rust-lang/crates.io-index" | 108 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -64,51 +110,107 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | |||
| 64 | 110 | ||
| 65 | [[package]] | 111 | [[package]] |
| 66 | name = "clap" | 112 | name = "clap" |
| 67 | version = "3.2.23" | 113 | version = "4.2.1" |
| 68 | source = "registry+https://github.com/rust-lang/crates.io-index" | 114 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 69 | checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5" | 115 | checksum = "046ae530c528f252094e4a77886ee1374437744b2bff1497aa898bbddbbb29b3" |
| 70 | dependencies = [ | 116 | dependencies = [ |
| 71 | "atty", | 117 | "clap_builder", |
| 72 | "bitflags", | ||
| 73 | "clap_derive", | 118 | "clap_derive", |
| 74 | "clap_lex", | ||
| 75 | "indexmap", | ||
| 76 | "once_cell", | 119 | "once_cell", |
| 120 | ] | ||
| 121 | |||
| 122 | [[package]] | ||
| 123 | name = "clap_builder" | ||
| 124 | version = "4.2.1" | ||
| 125 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 126 | checksum = "223163f58c9a40c3b0a43e1c4b50a9ce09f007ea2cb1ec258a687945b4b7929f" | ||
| 127 | dependencies = [ | ||
| 128 | "anstream", | ||
| 129 | "anstyle", | ||
| 130 | "bitflags", | ||
| 131 | "clap_lex", | ||
| 77 | "strsim", | 132 | "strsim", |
| 78 | "termcolor", | ||
| 79 | "textwrap", | ||
| 80 | ] | 133 | ] |
| 81 | 134 | ||
| 82 | [[package]] | 135 | [[package]] |
| 83 | name = "clap_derive" | 136 | name = "clap_derive" |
| 84 | version = "3.2.18" | 137 | version = "4.2.0" |
| 85 | source = "registry+https://github.com/rust-lang/crates.io-index" | 138 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 86 | checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" | 139 | checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" |
| 87 | dependencies = [ | 140 | dependencies = [ |
| 88 | "heck", | 141 | "heck", |
| 89 | "proc-macro-error", | ||
| 90 | "proc-macro2", | 142 | "proc-macro2", |
| 91 | "quote", | 143 | "quote", |
| 92 | "syn 1.0.109", | 144 | "syn", |
| 93 | ] | 145 | ] |
| 94 | 146 | ||
| 95 | [[package]] | 147 | [[package]] |
| 96 | name = "clap_lex" | 148 | name = "clap_lex" |
| 97 | version = "0.2.4" | 149 | version = "0.4.1" |
| 98 | source = "registry+https://github.com/rust-lang/crates.io-index" | 150 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 99 | checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" | 151 | checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" |
| 152 | |||
| 153 | [[package]] | ||
| 154 | name = "colored" | ||
| 155 | version = "2.0.0" | ||
| 156 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 157 | checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" | ||
| 158 | dependencies = [ | ||
| 159 | "atty", | ||
| 160 | "lazy_static", | ||
| 161 | "winapi", | ||
| 162 | ] | ||
| 163 | |||
| 164 | [[package]] | ||
| 165 | name = "concolor-override" | ||
| 166 | version = "1.0.0" | ||
| 167 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 168 | checksum = "a855d4a1978dc52fb0536a04d384c2c0c1aa273597f08b77c8c4d3b2eec6037f" | ||
| 169 | |||
| 170 | [[package]] | ||
| 171 | name = "concolor-query" | ||
| 172 | version = "0.3.3" | ||
| 173 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 174 | checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf" | ||
| 175 | dependencies = [ | ||
| 176 | "windows-sys 0.45.0", | ||
| 177 | ] | ||
| 178 | |||
| 179 | [[package]] | ||
| 180 | name = "crossterm" | ||
| 181 | version = "0.25.0" | ||
| 182 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 183 | checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67" | ||
| 184 | dependencies = [ | ||
| 185 | "bitflags", | ||
| 186 | "crossterm_winapi", | ||
| 187 | "libc", | ||
| 188 | "mio", | ||
| 189 | "parking_lot", | ||
| 190 | "signal-hook", | ||
| 191 | "signal-hook-mio", | ||
| 192 | "winapi", | ||
| 193 | ] | ||
| 194 | |||
| 195 | [[package]] | ||
| 196 | name = "crossterm_winapi" | ||
| 197 | version = "0.9.0" | ||
| 198 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 199 | checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" | ||
| 100 | dependencies = [ | 200 | dependencies = [ |
| 101 | "os_str_bytes", | 201 | "winapi", |
| 102 | ] | 202 | ] |
| 103 | 203 | ||
| 104 | [[package]] | 204 | [[package]] |
| 105 | name = "dotup" | 205 | name = "dotup" |
| 106 | version = "0.1.0" | 206 | version = "0.2.0" |
| 107 | dependencies = [ | 207 | dependencies = [ |
| 108 | "anyhow", | 208 | "anyhow", |
| 109 | "clap", | 209 | "clap", |
| 210 | "colored", | ||
| 110 | "env_logger", | 211 | "env_logger", |
| 111 | "globset", | 212 | "globset", |
| 213 | "inquire", | ||
| 112 | "log", | 214 | "log", |
| 113 | "nom", | 215 | "nom", |
| 114 | "nom_locate", | 216 | "nom_locate", |
| @@ -117,6 +219,12 @@ dependencies = [ | |||
| 117 | ] | 219 | ] |
| 118 | 220 | ||
| 119 | [[package]] | 221 | [[package]] |
| 222 | name = "dyn-clone" | ||
| 223 | version = "1.0.11" | ||
| 224 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 225 | checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" | ||
| 226 | |||
| 227 | [[package]] | ||
| 120 | name = "env_logger" | 228 | name = "env_logger" |
| 121 | version = "0.9.3" | 229 | version = "0.9.3" |
| 122 | source = "registry+https://github.com/rust-lang/crates.io-index" | 230 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -130,6 +238,27 @@ dependencies = [ | |||
| 130 | ] | 238 | ] |
| 131 | 239 | ||
| 132 | [[package]] | 240 | [[package]] |
| 241 | name = "errno" | ||
| 242 | version = "0.3.0" | ||
| 243 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 244 | checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" | ||
| 245 | dependencies = [ | ||
| 246 | "errno-dragonfly", | ||
| 247 | "libc", | ||
| 248 | "windows-sys 0.45.0", | ||
| 249 | ] | ||
| 250 | |||
| 251 | [[package]] | ||
| 252 | name = "errno-dragonfly" | ||
| 253 | version = "0.1.2" | ||
| 254 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 255 | checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" | ||
| 256 | dependencies = [ | ||
| 257 | "cc", | ||
| 258 | "libc", | ||
| 259 | ] | ||
| 260 | |||
| 261 | [[package]] | ||
| 133 | name = "fnv" | 262 | name = "fnv" |
| 134 | version = "1.0.7" | 263 | version = "1.0.7" |
| 135 | source = "registry+https://github.com/rust-lang/crates.io-index" | 264 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -149,12 +278,6 @@ dependencies = [ | |||
| 149 | ] | 278 | ] |
| 150 | 279 | ||
| 151 | [[package]] | 280 | [[package]] |
| 152 | name = "hashbrown" | ||
| 153 | version = "0.12.3" | ||
| 154 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 155 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" | ||
| 156 | |||
| 157 | [[package]] | ||
| 158 | name = "heck" | 281 | name = "heck" |
| 159 | version = "0.4.1" | 282 | version = "0.4.1" |
| 160 | source = "registry+https://github.com/rust-lang/crates.io-index" | 283 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -170,28 +293,85 @@ dependencies = [ | |||
| 170 | ] | 293 | ] |
| 171 | 294 | ||
| 172 | [[package]] | 295 | [[package]] |
| 296 | name = "hermit-abi" | ||
| 297 | version = "0.3.1" | ||
| 298 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 299 | checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" | ||
| 300 | |||
| 301 | [[package]] | ||
| 173 | name = "humantime" | 302 | name = "humantime" |
| 174 | version = "2.1.0" | 303 | version = "2.1.0" |
| 175 | source = "registry+https://github.com/rust-lang/crates.io-index" | 304 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 176 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" | 305 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" |
| 177 | 306 | ||
| 178 | [[package]] | 307 | [[package]] |
| 179 | name = "indexmap" | 308 | name = "inquire" |
| 180 | version = "1.9.3" | 309 | version = "0.6.0" |
| 181 | source = "registry+https://github.com/rust-lang/crates.io-index" | 310 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 182 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" | 311 | checksum = "fd079157ad94a32f7511b2e13037f3ae417ad80a6a9b0de29154d48b86f5d6c8" |
| 183 | dependencies = [ | 312 | dependencies = [ |
| 184 | "autocfg", | 313 | "bitflags", |
| 185 | "hashbrown", | 314 | "crossterm", |
| 315 | "dyn-clone", | ||
| 316 | "lazy_static", | ||
| 317 | "newline-converter", | ||
| 318 | "thiserror", | ||
| 319 | "unicode-segmentation", | ||
| 320 | "unicode-width", | ||
| 321 | ] | ||
| 322 | |||
| 323 | [[package]] | ||
| 324 | name = "io-lifetimes" | ||
| 325 | version = "1.0.10" | ||
| 326 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 327 | checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" | ||
| 328 | dependencies = [ | ||
| 329 | "hermit-abi 0.3.1", | ||
| 330 | "libc", | ||
| 331 | "windows-sys 0.48.0", | ||
| 332 | ] | ||
| 333 | |||
| 334 | [[package]] | ||
| 335 | name = "is-terminal" | ||
| 336 | version = "0.4.7" | ||
| 337 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 338 | checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" | ||
| 339 | dependencies = [ | ||
| 340 | "hermit-abi 0.3.1", | ||
| 341 | "io-lifetimes", | ||
| 342 | "rustix", | ||
| 343 | "windows-sys 0.48.0", | ||
| 186 | ] | 344 | ] |
| 187 | 345 | ||
| 188 | [[package]] | 346 | [[package]] |
| 347 | name = "lazy_static" | ||
| 348 | version = "1.4.0" | ||
| 349 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 350 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
| 351 | |||
| 352 | [[package]] | ||
| 189 | name = "libc" | 353 | name = "libc" |
| 190 | version = "0.2.141" | 354 | version = "0.2.141" |
| 191 | source = "registry+https://github.com/rust-lang/crates.io-index" | 355 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 192 | checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5" | 356 | checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5" |
| 193 | 357 | ||
| 194 | [[package]] | 358 | [[package]] |
| 359 | name = "linux-raw-sys" | ||
| 360 | version = "0.3.1" | ||
| 361 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 362 | checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" | ||
| 363 | |||
| 364 | [[package]] | ||
| 365 | name = "lock_api" | ||
| 366 | version = "0.4.9" | ||
| 367 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 368 | checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" | ||
| 369 | dependencies = [ | ||
| 370 | "autocfg", | ||
| 371 | "scopeguard", | ||
| 372 | ] | ||
| 373 | |||
| 374 | [[package]] | ||
| 195 | name = "log" | 375 | name = "log" |
| 196 | version = "0.4.17" | 376 | version = "0.4.17" |
| 197 | source = "registry+https://github.com/rust-lang/crates.io-index" | 377 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -213,6 +393,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 213 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" | 393 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" |
| 214 | 394 | ||
| 215 | [[package]] | 395 | [[package]] |
| 396 | name = "mio" | ||
| 397 | version = "0.8.6" | ||
| 398 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 399 | checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" | ||
| 400 | dependencies = [ | ||
| 401 | "libc", | ||
| 402 | "log", | ||
| 403 | "wasi", | ||
| 404 | "windows-sys 0.45.0", | ||
| 405 | ] | ||
| 406 | |||
| 407 | [[package]] | ||
| 408 | name = "newline-converter" | ||
| 409 | version = "0.2.2" | ||
| 410 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 411 | checksum = "1f71d09d5c87634207f894c6b31b6a2b2c64ea3bdcf71bd5599fdbbe1600c00f" | ||
| 412 | dependencies = [ | ||
| 413 | "unicode-segmentation", | ||
| 414 | ] | ||
| 415 | |||
| 416 | [[package]] | ||
| 216 | name = "nom" | 417 | name = "nom" |
| 217 | version = "7.1.3" | 418 | version = "7.1.3" |
| 218 | source = "registry+https://github.com/rust-lang/crates.io-index" | 419 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -240,33 +441,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 240 | checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" | 441 | checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" |
| 241 | 442 | ||
| 242 | [[package]] | 443 | [[package]] |
| 243 | name = "os_str_bytes" | 444 | name = "parking_lot" |
| 244 | version = "6.5.0" | 445 | version = "0.12.1" |
| 245 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 246 | checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" | ||
| 247 | |||
| 248 | [[package]] | ||
| 249 | name = "proc-macro-error" | ||
| 250 | version = "1.0.4" | ||
| 251 | source = "registry+https://github.com/rust-lang/crates.io-index" | 446 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 252 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" | 447 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" |
| 253 | dependencies = [ | 448 | dependencies = [ |
| 254 | "proc-macro-error-attr", | 449 | "lock_api", |
| 255 | "proc-macro2", | 450 | "parking_lot_core", |
| 256 | "quote", | ||
| 257 | "syn 1.0.109", | ||
| 258 | "version_check", | ||
| 259 | ] | 451 | ] |
| 260 | 452 | ||
| 261 | [[package]] | 453 | [[package]] |
| 262 | name = "proc-macro-error-attr" | 454 | name = "parking_lot_core" |
| 263 | version = "1.0.4" | 455 | version = "0.9.7" |
| 264 | source = "registry+https://github.com/rust-lang/crates.io-index" | 456 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 265 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" | 457 | checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" |
| 266 | dependencies = [ | 458 | dependencies = [ |
| 267 | "proc-macro2", | 459 | "cfg-if", |
| 268 | "quote", | 460 | "libc", |
| 269 | "version_check", | 461 | "redox_syscall", |
| 462 | "smallvec", | ||
| 463 | "windows-sys 0.45.0", | ||
| 270 | ] | 464 | ] |
| 271 | 465 | ||
| 272 | [[package]] | 466 | [[package]] |
| @@ -288,6 +482,15 @@ dependencies = [ | |||
| 288 | ] | 482 | ] |
| 289 | 483 | ||
| 290 | [[package]] | 484 | [[package]] |
| 485 | name = "redox_syscall" | ||
| 486 | version = "0.2.16" | ||
| 487 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 488 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" | ||
| 489 | dependencies = [ | ||
| 490 | "bitflags", | ||
| 491 | ] | ||
| 492 | |||
| 493 | [[package]] | ||
| 291 | name = "regex" | 494 | name = "regex" |
| 292 | version = "1.7.3" | 495 | version = "1.7.3" |
| 293 | source = "registry+https://github.com/rust-lang/crates.io-index" | 496 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -305,12 +508,62 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 305 | checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" | 508 | checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" |
| 306 | 509 | ||
| 307 | [[package]] | 510 | [[package]] |
| 511 | name = "rustix" | ||
| 512 | version = "0.37.8" | ||
| 513 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 514 | checksum = "1aef160324be24d31a62147fae491c14d2204a3865c7ca8c3b0d7f7bcb3ea635" | ||
| 515 | dependencies = [ | ||
| 516 | "bitflags", | ||
| 517 | "errno", | ||
| 518 | "io-lifetimes", | ||
| 519 | "libc", | ||
| 520 | "linux-raw-sys", | ||
| 521 | "windows-sys 0.48.0", | ||
| 522 | ] | ||
| 523 | |||
| 524 | [[package]] | ||
| 525 | name = "scopeguard" | ||
| 526 | version = "1.1.0" | ||
| 527 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 528 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" | ||
| 529 | |||
| 530 | [[package]] | ||
| 308 | name = "serde" | 531 | name = "serde" |
| 309 | version = "1.0.159" | 532 | version = "1.0.159" |
| 310 | source = "registry+https://github.com/rust-lang/crates.io-index" | 533 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 311 | checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" | 534 | checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" |
| 312 | 535 | ||
| 313 | [[package]] | 536 | [[package]] |
| 537 | name = "signal-hook" | ||
| 538 | version = "0.3.15" | ||
| 539 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 540 | checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" | ||
| 541 | dependencies = [ | ||
| 542 | "libc", | ||
| 543 | "signal-hook-registry", | ||
| 544 | ] | ||
| 545 | |||
| 546 | [[package]] | ||
| 547 | name = "signal-hook-mio" | ||
| 548 | version = "0.2.3" | ||
| 549 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 550 | checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" | ||
| 551 | dependencies = [ | ||
| 552 | "libc", | ||
| 553 | "mio", | ||
| 554 | "signal-hook", | ||
| 555 | ] | ||
| 556 | |||
| 557 | [[package]] | ||
| 558 | name = "signal-hook-registry" | ||
| 559 | version = "1.4.1" | ||
| 560 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 561 | checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" | ||
| 562 | dependencies = [ | ||
| 563 | "libc", | ||
| 564 | ] | ||
| 565 | |||
| 566 | [[package]] | ||
| 314 | name = "slotmap" | 567 | name = "slotmap" |
| 315 | version = "1.0.6" | 568 | version = "1.0.6" |
| 316 | source = "registry+https://github.com/rust-lang/crates.io-index" | 569 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -320,21 +573,16 @@ dependencies = [ | |||
| 320 | ] | 573 | ] |
| 321 | 574 | ||
| 322 | [[package]] | 575 | [[package]] |
| 323 | name = "strsim" | 576 | name = "smallvec" |
| 324 | version = "0.10.0" | 577 | version = "1.10.0" |
| 325 | source = "registry+https://github.com/rust-lang/crates.io-index" | 578 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 326 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | 579 | checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" |
| 327 | 580 | ||
| 328 | [[package]] | 581 | [[package]] |
| 329 | name = "syn" | 582 | name = "strsim" |
| 330 | version = "1.0.109" | 583 | version = "0.10.0" |
| 331 | source = "registry+https://github.com/rust-lang/crates.io-index" | 584 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 332 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" | 585 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" |
| 333 | dependencies = [ | ||
| 334 | "proc-macro2", | ||
| 335 | "quote", | ||
| 336 | "unicode-ident", | ||
| 337 | ] | ||
| 338 | 586 | ||
| 339 | [[package]] | 587 | [[package]] |
| 340 | name = "syn" | 588 | name = "syn" |
| @@ -357,12 +605,6 @@ dependencies = [ | |||
| 357 | ] | 605 | ] |
| 358 | 606 | ||
| 359 | [[package]] | 607 | [[package]] |
| 360 | name = "textwrap" | ||
| 361 | version = "0.16.0" | ||
| 362 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 363 | checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" | ||
| 364 | |||
| 365 | [[package]] | ||
| 366 | name = "thiserror" | 608 | name = "thiserror" |
| 367 | version = "1.0.40" | 609 | version = "1.0.40" |
| 368 | source = "registry+https://github.com/rust-lang/crates.io-index" | 610 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -379,7 +621,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" | |||
| 379 | dependencies = [ | 621 | dependencies = [ |
| 380 | "proc-macro2", | 622 | "proc-macro2", |
| 381 | "quote", | 623 | "quote", |
| 382 | "syn 2.0.13", | 624 | "syn", |
| 383 | ] | 625 | ] |
| 384 | 626 | ||
| 385 | [[package]] | 627 | [[package]] |
| @@ -389,12 +631,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 389 | checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" | 631 | checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" |
| 390 | 632 | ||
| 391 | [[package]] | 633 | [[package]] |
| 634 | name = "unicode-segmentation" | ||
| 635 | version = "1.10.1" | ||
| 636 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 637 | checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" | ||
| 638 | |||
| 639 | [[package]] | ||
| 640 | name = "unicode-width" | ||
| 641 | version = "0.1.10" | ||
| 642 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 643 | checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" | ||
| 644 | |||
| 645 | [[package]] | ||
| 646 | name = "utf8parse" | ||
| 647 | version = "0.2.1" | ||
| 648 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 649 | checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" | ||
| 650 | |||
| 651 | [[package]] | ||
| 392 | name = "version_check" | 652 | name = "version_check" |
| 393 | version = "0.9.4" | 653 | version = "0.9.4" |
| 394 | source = "registry+https://github.com/rust-lang/crates.io-index" | 654 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 395 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" | 655 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" |
| 396 | 656 | ||
| 397 | [[package]] | 657 | [[package]] |
| 658 | name = "wasi" | ||
| 659 | version = "0.11.0+wasi-snapshot-preview1" | ||
| 660 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 661 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" | ||
| 662 | |||
| 663 | [[package]] | ||
| 398 | name = "winapi" | 664 | name = "winapi" |
| 399 | version = "0.3.9" | 665 | version = "0.3.9" |
| 400 | source = "registry+https://github.com/rust-lang/crates.io-index" | 666 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -424,3 +690,135 @@ name = "winapi-x86_64-pc-windows-gnu" | |||
| 424 | version = "0.4.0" | 690 | version = "0.4.0" |
| 425 | source = "registry+https://github.com/rust-lang/crates.io-index" | 691 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 426 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | 692 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
| 693 | |||
| 694 | [[package]] | ||
| 695 | name = "windows-sys" | ||
| 696 | version = "0.45.0" | ||
| 697 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 698 | checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" | ||
| 699 | dependencies = [ | ||
| 700 | "windows-targets 0.42.2", | ||
| 701 | ] | ||
| 702 | |||
| 703 | [[package]] | ||
| 704 | name = "windows-sys" | ||
| 705 | version = "0.48.0" | ||
| 706 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 707 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" | ||
| 708 | dependencies = [ | ||
| 709 | "windows-targets 0.48.0", | ||
| 710 | ] | ||
| 711 | |||
| 712 | [[package]] | ||
| 713 | name = "windows-targets" | ||
| 714 | version = "0.42.2" | ||
| 715 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 716 | checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" | ||
| 717 | dependencies = [ | ||
| 718 | "windows_aarch64_gnullvm 0.42.2", | ||
| 719 | "windows_aarch64_msvc 0.42.2", | ||
| 720 | "windows_i686_gnu 0.42.2", | ||
| 721 | "windows_i686_msvc 0.42.2", | ||
| 722 | "windows_x86_64_gnu 0.42.2", | ||
| 723 | "windows_x86_64_gnullvm 0.42.2", | ||
| 724 | "windows_x86_64_msvc 0.42.2", | ||
| 725 | ] | ||
| 726 | |||
| 727 | [[package]] | ||
| 728 | name = "windows-targets" | ||
| 729 | version = "0.48.0" | ||
| 730 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 731 | checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" | ||
| 732 | dependencies = [ | ||
| 733 | "windows_aarch64_gnullvm 0.48.0", | ||
| 734 | "windows_aarch64_msvc 0.48.0", | ||
| 735 | "windows_i686_gnu 0.48.0", | ||
| 736 | "windows_i686_msvc 0.48.0", | ||
| 737 | "windows_x86_64_gnu 0.48.0", | ||
| 738 | "windows_x86_64_gnullvm 0.48.0", | ||
| 739 | "windows_x86_64_msvc 0.48.0", | ||
| 740 | ] | ||
| 741 | |||
| 742 | [[package]] | ||
| 743 | name = "windows_aarch64_gnullvm" | ||
| 744 | version = "0.42.2" | ||
| 745 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 746 | checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" | ||
| 747 | |||
| 748 | [[package]] | ||
| 749 | name = "windows_aarch64_gnullvm" | ||
| 750 | version = "0.48.0" | ||
| 751 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 752 | checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" | ||
| 753 | |||
| 754 | [[package]] | ||
| 755 | name = "windows_aarch64_msvc" | ||
| 756 | version = "0.42.2" | ||
| 757 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 758 | checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" | ||
| 759 | |||
| 760 | [[package]] | ||
| 761 | name = "windows_aarch64_msvc" | ||
| 762 | version = "0.48.0" | ||
| 763 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 764 | checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" | ||
| 765 | |||
| 766 | [[package]] | ||
| 767 | name = "windows_i686_gnu" | ||
| 768 | version = "0.42.2" | ||
| 769 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 770 | checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" | ||
| 771 | |||
| 772 | [[package]] | ||
| 773 | name = "windows_i686_gnu" | ||
| 774 | version = "0.48.0" | ||
| 775 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 776 | checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" | ||
| 777 | |||
| 778 | [[package]] | ||
| 779 | name = "windows_i686_msvc" | ||
| 780 | version = "0.42.2" | ||
| 781 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 782 | checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" | ||
| 783 | |||
| 784 | [[package]] | ||
| 785 | name = "windows_i686_msvc" | ||
| 786 | version = "0.48.0" | ||
| 787 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 788 | checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" | ||
| 789 | |||
| 790 | [[package]] | ||
| 791 | name = "windows_x86_64_gnu" | ||
| 792 | version = "0.42.2" | ||
| 793 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 794 | checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" | ||
| 795 | |||
| 796 | [[package]] | ||
| 797 | name = "windows_x86_64_gnu" | ||
| 798 | version = "0.48.0" | ||
| 799 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 800 | checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" | ||
| 801 | |||
| 802 | [[package]] | ||
| 803 | name = "windows_x86_64_gnullvm" | ||
| 804 | version = "0.42.2" | ||
| 805 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 806 | checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" | ||
| 807 | |||
| 808 | [[package]] | ||
| 809 | name = "windows_x86_64_gnullvm" | ||
| 810 | version = "0.48.0" | ||
| 811 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 812 | checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" | ||
| 813 | |||
| 814 | [[package]] | ||
| 815 | name = "windows_x86_64_msvc" | ||
| 816 | version = "0.42.2" | ||
| 817 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 818 | checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" | ||
| 819 | |||
| 820 | [[package]] | ||
| 821 | name = "windows_x86_64_msvc" | ||
| 822 | version = "0.48.0" | ||
| 823 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 824 | checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" | ||
