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