aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2022-09-23 13:45:57 +0100
committerdiogo464 <[email protected]>2022-09-23 13:45:57 +0100
commite5a38bab67f790803ff98484fc5835adba7bf62a (patch)
treef93bc54b128db58c3e84c0db8908dda729222dc7 /Cargo.lock
parente28be1bbe34e5430333d5bb95437e75bcfaf2edb (diff)
rewrite
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock272
1 files changed, 129 insertions, 143 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f88aa27..eadaad2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4,27 +4,18 @@ version = 3
4 4
5[[package]] 5[[package]]
6name = "aho-corasick" 6name = "aho-corasick"
7version = "0.7.18" 7version = "0.7.19"
8source = "registry+https://github.com/rust-lang/crates.io-index" 8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 9checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
10dependencies = [ 10dependencies = [
11 "memchr", 11 "memchr",
12] 12]
13 13
14[[package]] 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" 15name = "anyhow"
25version = "1.0.53" 16version = "1.0.65"
26source = "registry+https://github.com/rust-lang/crates.io-index" 17source = "registry+https://github.com/rust-lang/crates.io-index"
27checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0" 18checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
28 19
29[[package]] 20[[package]]
30name = "atty" 21name = "atty"
@@ -39,9 +30,9 @@ dependencies = [
39 30
40[[package]] 31[[package]]
41name = "autocfg" 32name = "autocfg"
42version = "1.0.1" 33version = "1.1.0"
43source = "registry+https://github.com/rust-lang/crates.io-index" 34source = "registry+https://github.com/rust-lang/crates.io-index"
44checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 35checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
45 36
46[[package]] 37[[package]]
47name = "bitflags" 38name = "bitflags"
@@ -50,6 +41,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
50checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 41checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
51 42
52[[package]] 43[[package]]
44name = "bstr"
45version = "0.2.17"
46source = "registry+https://github.com/rust-lang/crates.io-index"
47checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
48dependencies = [
49 "memchr",
50]
51
52[[package]]
53name = "bytecount"
54version = "0.6.3"
55source = "registry+https://github.com/rust-lang/crates.io-index"
56checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
57
58[[package]]
53name = "cfg-if" 59name = "cfg-if"
54version = "1.0.0" 60version = "1.0.0"
55source = "registry+https://github.com/rust-lang/crates.io-index" 61source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -57,16 +63,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
57 63
58[[package]] 64[[package]]
59name = "clap" 65name = "clap"
60version = "3.0.14" 66version = "3.2.21"
61source = "registry+https://github.com/rust-lang/crates.io-index" 67source = "registry+https://github.com/rust-lang/crates.io-index"
62checksum = "b63edc3f163b3c71ec8aa23f9bd6070f77edbf3d1d198b164afa90ff00e4ec62" 68checksum = "1ed5341b2301a26ab80be5cbdced622e80ed808483c52e45e3310a877d3b37d7"
63dependencies = [ 69dependencies = [
64 "atty", 70 "atty",
65 "bitflags", 71 "bitflags",
66 "clap_derive", 72 "clap_derive",
73 "clap_lex",
67 "indexmap", 74 "indexmap",
68 "lazy_static", 75 "once_cell",
69 "os_str_bytes",
70 "strsim", 76 "strsim",
71 "termcolor", 77 "termcolor",
72 "textwrap", 78 "textwrap",
@@ -74,9 +80,9 @@ dependencies = [
74 80
75[[package]] 81[[package]]
76name = "clap_derive" 82name = "clap_derive"
77version = "3.0.14" 83version = "3.2.18"
78source = "registry+https://github.com/rust-lang/crates.io-index" 84source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "9a1132dc3944b31c20dd8b906b3a9f0a5d0243e092d59171414969657ac6aa85" 85checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65"
80dependencies = [ 86dependencies = [
81 "heck", 87 "heck",
82 "proc-macro-error", 88 "proc-macro-error",
@@ -86,48 +92,66 @@ dependencies = [
86] 92]
87 93
88[[package]] 94[[package]]
95name = "clap_lex"
96version = "0.2.4"
97source = "registry+https://github.com/rust-lang/crates.io-index"
98checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
99dependencies = [
100 "os_str_bytes",
101]
102
103[[package]]
89name = "dotup" 104name = "dotup"
90version = "0.0.0" 105version = "0.1.0"
91dependencies = [ 106dependencies = [
92 "ansi_term",
93 "anyhow", 107 "anyhow",
94 "clap", 108 "clap",
95 "flexi_logger", 109 "env_logger",
110 "globset",
96 "log", 111 "log",
97 "serde", 112 "nom",
113 "nom_locate",
98 "slotmap", 114 "slotmap",
99 "thiserror", 115 "thiserror",
100 "toml",
101] 116]
102 117
103[[package]] 118[[package]]
104name = "flexi_logger" 119name = "env_logger"
105version = "0.22.3" 120version = "0.9.0"
106source = "registry+https://github.com/rust-lang/crates.io-index" 121source = "registry+https://github.com/rust-lang/crates.io-index"
107checksum = "969940c39bc718475391e53a3a59b0157e64929c80cf83ad5dde5f770ecdc423" 122checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
108dependencies = [ 123dependencies = [
109 "ansi_term",
110 "atty", 124 "atty",
111 "glob", 125 "humantime",
112 "lazy_static",
113 "log", 126 "log",
114 "regex", 127 "regex",
115 "rustversion", 128 "termcolor",
116 "thiserror",
117 "time",
118] 129]
119 130
120[[package]] 131[[package]]
121name = "glob" 132name = "fnv"
122version = "0.3.0" 133version = "1.0.7"
123source = "registry+https://github.com/rust-lang/crates.io-index" 134source = "registry+https://github.com/rust-lang/crates.io-index"
124checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 135checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
136
137[[package]]
138name = "globset"
139version = "0.4.9"
140source = "registry+https://github.com/rust-lang/crates.io-index"
141checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"
142dependencies = [
143 "aho-corasick",
144 "bstr",
145 "fnv",
146 "log",
147 "regex",
148]
125 149
126[[package]] 150[[package]]
127name = "hashbrown" 151name = "hashbrown"
128version = "0.11.2" 152version = "0.12.3"
129source = "registry+https://github.com/rust-lang/crates.io-index" 153source = "registry+https://github.com/rust-lang/crates.io-index"
130checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 154checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
131 155
132[[package]] 156[[package]]
133name = "heck" 157name = "heck"
@@ -145,67 +169,82 @@ dependencies = [
145] 169]
146 170
147[[package]] 171[[package]]
172name = "humantime"
173version = "2.1.0"
174source = "registry+https://github.com/rust-lang/crates.io-index"
175checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
176
177[[package]]
148name = "indexmap" 178name = "indexmap"
149version = "1.8.0" 179version = "1.9.1"
150source = "registry+https://github.com/rust-lang/crates.io-index" 180source = "registry+https://github.com/rust-lang/crates.io-index"
151checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" 181checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
152dependencies = [ 182dependencies = [
153 "autocfg", 183 "autocfg",
154 "hashbrown", 184 "hashbrown",
155] 185]
156 186
157[[package]] 187[[package]]
158name = "itoa"
159version = "1.0.1"
160source = "registry+https://github.com/rust-lang/crates.io-index"
161checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
162
163[[package]]
164name = "lazy_static"
165version = "1.4.0"
166source = "registry+https://github.com/rust-lang/crates.io-index"
167checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
168
169[[package]]
170name = "libc" 188name = "libc"
171version = "0.2.117" 189version = "0.2.132"
172source = "registry+https://github.com/rust-lang/crates.io-index" 190source = "registry+https://github.com/rust-lang/crates.io-index"
173checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c" 191checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
174 192
175[[package]] 193[[package]]
176name = "log" 194name = "log"
177version = "0.4.14" 195version = "0.4.17"
178source = "registry+https://github.com/rust-lang/crates.io-index" 196source = "registry+https://github.com/rust-lang/crates.io-index"
179checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 197checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
180dependencies = [ 198dependencies = [
181 "cfg-if", 199 "cfg-if",
182] 200]
183 201
184[[package]] 202[[package]]
185name = "memchr" 203name = "memchr"
186version = "2.4.1" 204version = "2.5.0"
205source = "registry+https://github.com/rust-lang/crates.io-index"
206checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
207
208[[package]]
209name = "minimal-lexical"
210version = "0.2.1"
187source = "registry+https://github.com/rust-lang/crates.io-index" 211source = "registry+https://github.com/rust-lang/crates.io-index"
188checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 212checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
189 213
190[[package]] 214[[package]]
191name = "num_threads" 215name = "nom"
192version = "0.1.3" 216version = "7.1.1"
193source = "registry+https://github.com/rust-lang/crates.io-index" 217source = "registry+https://github.com/rust-lang/crates.io-index"
194checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15" 218checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
195dependencies = [ 219dependencies = [
196 "libc", 220 "memchr",
221 "minimal-lexical",
197] 222]
198 223
199[[package]] 224[[package]]
200name = "os_str_bytes" 225name = "nom_locate"
201version = "6.0.0" 226version = "4.0.0"
202source = "registry+https://github.com/rust-lang/crates.io-index" 227source = "registry+https://github.com/rust-lang/crates.io-index"
203checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" 228checksum = "37794436ca3029a3089e0b95d42da1f0b565ad271e4d3bb4bad0c7bb70b10605"
204dependencies = [ 229dependencies = [
230 "bytecount",
205 "memchr", 231 "memchr",
232 "nom",
206] 233]
207 234
208[[package]] 235[[package]]
236name = "once_cell"
237version = "1.14.0"
238source = "registry+https://github.com/rust-lang/crates.io-index"
239checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
240
241[[package]]
242name = "os_str_bytes"
243version = "6.3.0"
244source = "registry+https://github.com/rust-lang/crates.io-index"
245checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
246
247[[package]]
209name = "proc-macro-error" 248name = "proc-macro-error"
210version = "1.0.4" 249version = "1.0.4"
211source = "registry+https://github.com/rust-lang/crates.io-index" 250source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -231,27 +270,27 @@ dependencies = [
231 270
232[[package]] 271[[package]]
233name = "proc-macro2" 272name = "proc-macro2"
234version = "1.0.36" 273version = "1.0.43"
235source = "registry+https://github.com/rust-lang/crates.io-index" 274source = "registry+https://github.com/rust-lang/crates.io-index"
236checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" 275checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
237dependencies = [ 276dependencies = [
238 "unicode-xid", 277 "unicode-ident",
239] 278]
240 279
241[[package]] 280[[package]]
242name = "quote" 281name = "quote"
243version = "1.0.15" 282version = "1.0.21"
244source = "registry+https://github.com/rust-lang/crates.io-index" 283source = "registry+https://github.com/rust-lang/crates.io-index"
245checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145" 284checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
246dependencies = [ 285dependencies = [
247 "proc-macro2", 286 "proc-macro2",
248] 287]
249 288
250[[package]] 289[[package]]
251name = "regex" 290name = "regex"
252version = "1.5.4" 291version = "1.6.0"
253source = "registry+https://github.com/rust-lang/crates.io-index" 292source = "registry+https://github.com/rust-lang/crates.io-index"
254checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" 293checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
255dependencies = [ 294dependencies = [
256 "aho-corasick", 295 "aho-corasick",
257 "memchr", 296 "memchr",
@@ -260,35 +299,9 @@ dependencies = [
260 299
261[[package]] 300[[package]]
262name = "regex-syntax" 301name = "regex-syntax"
263version = "0.6.25" 302version = "0.6.27"
264source = "registry+https://github.com/rust-lang/crates.io-index" 303source = "registry+https://github.com/rust-lang/crates.io-index"
265checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 304checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
266
267[[package]]
268name = "rustversion"
269version = "1.0.6"
270source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f"
272
273[[package]]
274name = "serde"
275version = "1.0.136"
276source = "registry+https://github.com/rust-lang/crates.io-index"
277checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
278dependencies = [
279 "serde_derive",
280]
281
282[[package]]
283name = "serde_derive"
284version = "1.0.136"
285source = "registry+https://github.com/rust-lang/crates.io-index"
286checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
287dependencies = [
288 "proc-macro2",
289 "quote",
290 "syn",
291]
292 305
293[[package]] 306[[package]]
294name = "slotmap" 307name = "slotmap"
@@ -307,44 +320,44 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
307 320
308[[package]] 321[[package]]
309name = "syn" 322name = "syn"
310version = "1.0.86" 323version = "1.0.99"
311source = "registry+https://github.com/rust-lang/crates.io-index" 324source = "registry+https://github.com/rust-lang/crates.io-index"
312checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b" 325checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
313dependencies = [ 326dependencies = [
314 "proc-macro2", 327 "proc-macro2",
315 "quote", 328 "quote",
316 "unicode-xid", 329 "unicode-ident",
317] 330]
318 331
319[[package]] 332[[package]]
320name = "termcolor" 333name = "termcolor"
321version = "1.1.2" 334version = "1.1.3"
322source = "registry+https://github.com/rust-lang/crates.io-index" 335source = "registry+https://github.com/rust-lang/crates.io-index"
323checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" 336checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
324dependencies = [ 337dependencies = [
325 "winapi-util", 338 "winapi-util",
326] 339]
327 340
328[[package]] 341[[package]]
329name = "textwrap" 342name = "textwrap"
330version = "0.14.2" 343version = "0.15.0"
331source = "registry+https://github.com/rust-lang/crates.io-index" 344source = "registry+https://github.com/rust-lang/crates.io-index"
332checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" 345checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
333 346
334[[package]] 347[[package]]
335name = "thiserror" 348name = "thiserror"
336version = "1.0.30" 349version = "1.0.35"
337source = "registry+https://github.com/rust-lang/crates.io-index" 350source = "registry+https://github.com/rust-lang/crates.io-index"
338checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" 351checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85"
339dependencies = [ 352dependencies = [
340 "thiserror-impl", 353 "thiserror-impl",
341] 354]
342 355
343[[package]] 356[[package]]
344name = "thiserror-impl" 357name = "thiserror-impl"
345version = "1.0.30" 358version = "1.0.35"
346source = "registry+https://github.com/rust-lang/crates.io-index" 359source = "registry+https://github.com/rust-lang/crates.io-index"
347checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" 360checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783"
348dependencies = [ 361dependencies = [
349 "proc-macro2", 362 "proc-macro2",
350 "quote", 363 "quote",
@@ -352,37 +365,10 @@ dependencies = [
352] 365]
353 366
354[[package]] 367[[package]]
355name = "time" 368name = "unicode-ident"
356version = "0.3.7" 369version = "1.0.4"
357source = "registry+https://github.com/rust-lang/crates.io-index"
358checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d"
359dependencies = [
360 "itoa",
361 "libc",
362 "num_threads",
363 "time-macros",
364]
365
366[[package]]
367name = "time-macros"
368version = "0.2.3"
369source = "registry+https://github.com/rust-lang/crates.io-index"
370checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6"
371
372[[package]]
373name = "toml"
374version = "0.5.8"
375source = "registry+https://github.com/rust-lang/crates.io-index"
376checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
377dependencies = [
378 "serde",
379]
380
381[[package]]
382name = "unicode-xid"
383version = "0.2.2"
384source = "registry+https://github.com/rust-lang/crates.io-index" 370source = "registry+https://github.com/rust-lang/crates.io-index"
385checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 371checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
386 372
387[[package]] 373[[package]]
388name = "version_check" 374name = "version_check"