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