diff options
| author | diogo464 <[email protected]> | 2022-02-06 18:32:54 +0000 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2022-02-06 18:32:54 +0000 |
| commit | 2462119defef2d7f28cd5b15b09917c9a46e20b6 (patch) | |
| tree | ddbdec5698fb95bb171c5d76bd9c8a25d7222713 /Cargo.lock | |
snapshot
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 286 |
1 files changed, 286 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..61c1d16 --- /dev/null +++ b/Cargo.lock | |||
| @@ -0,0 +1,286 @@ | |||
| 1 | # This file is automatically @generated by Cargo. | ||
| 2 | # It is not intended for manual editing. | ||
| 3 | version = 3 | ||
| 4 | |||
| 5 | [[package]] | ||
| 6 | name = "anyhow" | ||
| 7 | version = "1.0.53" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0" | ||
| 10 | |||
| 11 | [[package]] | ||
| 12 | name = "atty" | ||
| 13 | version = "0.2.14" | ||
| 14 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 15 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
| 16 | dependencies = [ | ||
| 17 | "hermit-abi", | ||
| 18 | "libc", | ||
| 19 | "winapi", | ||
| 20 | ] | ||
| 21 | |||
| 22 | [[package]] | ||
| 23 | name = "autocfg" | ||
| 24 | version = "1.0.1" | ||
| 25 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 26 | checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" | ||
| 27 | |||
| 28 | [[package]] | ||
| 29 | name = "bitflags" | ||
| 30 | version = "1.3.2" | ||
| 31 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 32 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | ||
| 33 | |||
| 34 | [[package]] | ||
| 35 | name = "clap" | ||
| 36 | version = "3.0.14" | ||
| 37 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 38 | checksum = "b63edc3f163b3c71ec8aa23f9bd6070f77edbf3d1d198b164afa90ff00e4ec62" | ||
| 39 | dependencies = [ | ||
| 40 | "atty", | ||
| 41 | "bitflags", | ||
| 42 | "clap_derive", | ||
| 43 | "indexmap", | ||
| 44 | "lazy_static", | ||
| 45 | "os_str_bytes", | ||
| 46 | "strsim", | ||
| 47 | "termcolor", | ||
| 48 | "textwrap", | ||
| 49 | ] | ||
| 50 | |||
| 51 | [[package]] | ||
| 52 | name = "clap_derive" | ||
| 53 | version = "3.0.14" | ||
| 54 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 55 | checksum = "9a1132dc3944b31c20dd8b906b3a9f0a5d0243e092d59171414969657ac6aa85" | ||
| 56 | dependencies = [ | ||
| 57 | "heck", | ||
| 58 | "proc-macro-error", | ||
| 59 | "proc-macro2", | ||
| 60 | "quote", | ||
| 61 | "syn", | ||
| 62 | ] | ||
| 63 | |||
| 64 | [[package]] | ||
| 65 | name = "dotup" | ||
| 66 | version = "0.0.0" | ||
| 67 | dependencies = [ | ||
| 68 | "anyhow", | ||
| 69 | "clap", | ||
| 70 | "serde", | ||
| 71 | "slotmap", | ||
| 72 | "toml", | ||
| 73 | ] | ||
| 74 | |||
| 75 | [[package]] | ||
| 76 | name = "hashbrown" | ||
| 77 | version = "0.11.2" | ||
| 78 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 79 | checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" | ||
| 80 | |||
| 81 | [[package]] | ||
| 82 | name = "heck" | ||
| 83 | version = "0.4.0" | ||
| 84 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 85 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" | ||
| 86 | |||
| 87 | [[package]] | ||
| 88 | name = "hermit-abi" | ||
| 89 | version = "0.1.19" | ||
| 90 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 91 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" | ||
| 92 | dependencies = [ | ||
| 93 | "libc", | ||
| 94 | ] | ||
| 95 | |||
| 96 | [[package]] | ||
| 97 | name = "indexmap" | ||
| 98 | version = "1.8.0" | ||
| 99 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 100 | checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" | ||
| 101 | dependencies = [ | ||
| 102 | "autocfg", | ||
| 103 | "hashbrown", | ||
| 104 | ] | ||
| 105 | |||
| 106 | [[package]] | ||
| 107 | name = "lazy_static" | ||
| 108 | version = "1.4.0" | ||
| 109 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 110 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
| 111 | |||
| 112 | [[package]] | ||
| 113 | name = "libc" | ||
| 114 | version = "0.2.117" | ||
| 115 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 116 | checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c" | ||
| 117 | |||
| 118 | [[package]] | ||
| 119 | name = "memchr" | ||
| 120 | version = "2.4.1" | ||
| 121 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 122 | checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" | ||
| 123 | |||
| 124 | [[package]] | ||
| 125 | name = "os_str_bytes" | ||
| 126 | version = "6.0.0" | ||
| 127 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 128 | checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" | ||
| 129 | dependencies = [ | ||
| 130 | "memchr", | ||
| 131 | ] | ||
| 132 | |||
| 133 | [[package]] | ||
| 134 | name = "proc-macro-error" | ||
| 135 | version = "1.0.4" | ||
| 136 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 137 | checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" | ||
| 138 | dependencies = [ | ||
| 139 | "proc-macro-error-attr", | ||
| 140 | "proc-macro2", | ||
| 141 | "quote", | ||
| 142 | "syn", | ||
| 143 | "version_check", | ||
| 144 | ] | ||
| 145 | |||
| 146 | [[package]] | ||
| 147 | name = "proc-macro-error-attr" | ||
| 148 | version = "1.0.4" | ||
| 149 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 150 | checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" | ||
| 151 | dependencies = [ | ||
| 152 | "proc-macro2", | ||
| 153 | "quote", | ||
| 154 | "version_check", | ||
| 155 | ] | ||
| 156 | |||
| 157 | [[package]] | ||
| 158 | name = "proc-macro2" | ||
| 159 | version = "1.0.36" | ||
| 160 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 161 | checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" | ||
| 162 | dependencies = [ | ||
| 163 | "unicode-xid", | ||
| 164 | ] | ||
| 165 | |||
| 166 | [[package]] | ||
| 167 | name = "quote" | ||
| 168 | version = "1.0.15" | ||
| 169 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 170 | checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145" | ||
| 171 | dependencies = [ | ||
| 172 | "proc-macro2", | ||
| 173 | ] | ||
| 174 | |||
| 175 | [[package]] | ||
| 176 | name = "serde" | ||
| 177 | version = "1.0.136" | ||
| 178 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 179 | checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" | ||
| 180 | dependencies = [ | ||
| 181 | "serde_derive", | ||
| 182 | ] | ||
| 183 | |||
| 184 | [[package]] | ||
| 185 | name = "serde_derive" | ||
| 186 | version = "1.0.136" | ||
| 187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 188 | checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9" | ||
| 189 | dependencies = [ | ||
| 190 | "proc-macro2", | ||
| 191 | "quote", | ||
| 192 | "syn", | ||
| 193 | ] | ||
| 194 | |||
| 195 | [[package]] | ||
| 196 | name = "slotmap" | ||
| 197 | version = "1.0.6" | ||
| 198 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 199 | checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342" | ||
| 200 | dependencies = [ | ||
| 201 | "version_check", | ||
| 202 | ] | ||
| 203 | |||
| 204 | [[package]] | ||
| 205 | name = "strsim" | ||
| 206 | version = "0.10.0" | ||
| 207 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 208 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | ||
| 209 | |||
| 210 | [[package]] | ||
| 211 | name = "syn" | ||
| 212 | version = "1.0.86" | ||
| 213 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 214 | checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b" | ||
| 215 | dependencies = [ | ||
| 216 | "proc-macro2", | ||
| 217 | "quote", | ||
| 218 | "unicode-xid", | ||
| 219 | ] | ||
| 220 | |||
| 221 | [[package]] | ||
| 222 | name = "termcolor" | ||
| 223 | version = "1.1.2" | ||
| 224 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 225 | checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" | ||
| 226 | dependencies = [ | ||
| 227 | "winapi-util", | ||
| 228 | ] | ||
| 229 | |||
| 230 | [[package]] | ||
| 231 | name = "textwrap" | ||
| 232 | version = "0.14.2" | ||
| 233 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 234 | checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" | ||
| 235 | |||
| 236 | [[package]] | ||
| 237 | name = "toml" | ||
| 238 | version = "0.5.8" | ||
| 239 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 240 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" | ||
| 241 | dependencies = [ | ||
| 242 | "serde", | ||
| 243 | ] | ||
| 244 | |||
| 245 | [[package]] | ||
| 246 | name = "unicode-xid" | ||
| 247 | version = "0.2.2" | ||
| 248 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 249 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" | ||
| 250 | |||
| 251 | [[package]] | ||
| 252 | name = "version_check" | ||
| 253 | version = "0.9.4" | ||
| 254 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 255 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" | ||
| 256 | |||
| 257 | [[package]] | ||
| 258 | name = "winapi" | ||
| 259 | version = "0.3.9" | ||
| 260 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 261 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | ||
| 262 | dependencies = [ | ||
| 263 | "winapi-i686-pc-windows-gnu", | ||
| 264 | "winapi-x86_64-pc-windows-gnu", | ||
| 265 | ] | ||
| 266 | |||
| 267 | [[package]] | ||
| 268 | name = "winapi-i686-pc-windows-gnu" | ||
| 269 | version = "0.4.0" | ||
| 270 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 271 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
| 272 | |||
| 273 | [[package]] | ||
| 274 | name = "winapi-util" | ||
| 275 | version = "0.1.5" | ||
| 276 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 277 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | ||
| 278 | dependencies = [ | ||
| 279 | "winapi", | ||
| 280 | ] | ||
| 281 | |||
| 282 | [[package]] | ||
| 283 | name = "winapi-x86_64-pc-windows-gnu" | ||
| 284 | version = "0.4.0" | ||
| 285 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 286 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
