aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Tham <[email protected]>2020-04-10 03:41:45 +0100
committerIvan Tham <[email protected]>2020-04-10 03:41:45 +0100
commit72de9e36630feba4343f22e4ae09e696bbb9ce38 (patch)
treeb9cb9c7f4fe2b1bced4a0e4fb038f9cf157778a8
parent2d0e9699096bb0129e3f5efd37d7b62333c41ac9 (diff)
Add Cargo.lock
https://doc.rust-lang.org/cargo/faq.html#why-do-binaries-have-cargolock-in-version-control-but-not-libraries
-rw-r--r--.gitignore6
-rw-r--r--Cargo.lock450
2 files changed, 451 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index e4e93e9..6c22375 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,13 +2,9 @@
2# will have compiled files and executables 2# will have compiled files and executables
3/target/ 3/target/
4 4
5# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
7Cargo.lock
8
9# These are backup files generated by rustfmt 5# These are backup files generated by rustfmt
10**/*.rs.bk 6**/*.rs.bk
11 7
12# ignore history used by rustyline 8# ignore history used by rustyline
13history.txt 9history.txt
14./.idea \ No newline at end of file 10./.idea
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..8b0baa1
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,450 @@
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3[[package]]
4name = "aho-corasick"
5version = "0.7.10"
6source = "registry+https://github.com/rust-lang/crates.io-index"
7checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
8dependencies = [
9 "memchr",
10]
11
12[[package]]
13name = "ansi_term"
14version = "0.11.0"
15source = "registry+https://github.com/rust-lang/crates.io-index"
16checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
17dependencies = [
18 "winapi",
19]
20
21[[package]]
22name = "arrayref"
23version = "0.3.6"
24source = "registry+https://github.com/rust-lang/crates.io-index"
25checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
26
27[[package]]
28name = "arrayvec"
29version = "0.5.1"
30source = "registry+https://github.com/rust-lang/crates.io-index"
31checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
32
33[[package]]
34name = "atty"
35version = "0.2.14"
36source = "registry+https://github.com/rust-lang/crates.io-index"
37checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
38dependencies = [
39 "hermit-abi",
40 "libc",
41 "winapi",
42]
43
44[[package]]
45name = "autocfg"
46version = "1.0.0"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
49
50[[package]]
51name = "base64"
52version = "0.11.0"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
55
56[[package]]
57name = "bitflags"
58version = "1.2.1"
59source = "registry+https://github.com/rust-lang/crates.io-index"
60checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
61
62[[package]]
63name = "blake2b_simd"
64version = "0.5.10"
65source = "registry+https://github.com/rust-lang/crates.io-index"
66checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
67dependencies = [
68 "arrayref",
69 "arrayvec",
70 "constant_time_eq",
71]
72
73[[package]]
74name = "cc"
75version = "1.0.50"
76source = "registry+https://github.com/rust-lang/crates.io-index"
77checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
78
79[[package]]
80name = "cfg-if"
81version = "0.1.10"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
84
85[[package]]
86name = "clap"
87version = "2.33.0"
88source = "registry+https://github.com/rust-lang/crates.io-index"
89checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
90dependencies = [
91 "ansi_term",
92 "atty",
93 "bitflags",
94 "strsim",
95 "textwrap",
96 "unicode-width",
97 "vec_map",
98]
99
100[[package]]
101name = "constant_time_eq"
102version = "0.1.5"
103source = "registry+https://github.com/rust-lang/crates.io-index"
104checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
105
106[[package]]
107name = "crossbeam-utils"
108version = "0.7.2"
109source = "registry+https://github.com/rust-lang/crates.io-index"
110checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
111dependencies = [
112 "autocfg",
113 "cfg-if",
114 "lazy_static",
115]
116
117[[package]]
118name = "directories"
119version = "2.0.2"
120source = "registry+https://github.com/rust-lang/crates.io-index"
121checksum = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c"
122dependencies = [
123 "cfg-if",
124 "dirs-sys",
125]
126
127[[package]]
128name = "dirs"
129version = "1.0.5"
130source = "registry+https://github.com/rust-lang/crates.io-index"
131checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
132dependencies = [
133 "libc",
134 "redox_users",
135 "winapi",
136]
137
138[[package]]
139name = "dirs-sys"
140version = "0.3.4"
141source = "registry+https://github.com/rust-lang/crates.io-index"
142checksum = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
143dependencies = [
144 "cfg-if",
145 "libc",
146 "redox_users",
147 "winapi",
148]
149
150[[package]]
151name = "eva"
152version = "0.2.7"
153dependencies = [
154 "clap",
155 "directories",
156 "lazy_static",
157 "num",
158 "radix_fmt",
159 "regex",
160 "rustyline",
161]
162
163[[package]]
164name = "getrandom"
165version = "0.1.14"
166source = "registry+https://github.com/rust-lang/crates.io-index"
167checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
168dependencies = [
169 "cfg-if",
170 "libc",
171 "wasi",
172]
173
174[[package]]
175name = "hermit-abi"
176version = "0.1.10"
177source = "registry+https://github.com/rust-lang/crates.io-index"
178checksum = "725cf19794cf90aa94e65050cb4191ff5d8fa87a498383774c47b332e3af952e"
179dependencies = [
180 "libc",
181]
182
183[[package]]
184name = "lazy_static"
185version = "1.4.0"
186source = "registry+https://github.com/rust-lang/crates.io-index"
187checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
188
189[[package]]
190name = "libc"
191version = "0.2.68"
192source = "registry+https://github.com/rust-lang/crates.io-index"
193checksum = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0"
194
195[[package]]
196name = "log"
197version = "0.4.8"
198source = "registry+https://github.com/rust-lang/crates.io-index"
199checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
200dependencies = [
201 "cfg-if",
202]
203
204[[package]]
205name = "memchr"
206version = "2.3.3"
207source = "registry+https://github.com/rust-lang/crates.io-index"
208checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
209
210[[package]]
211name = "nix"
212version = "0.13.1"
213source = "registry+https://github.com/rust-lang/crates.io-index"
214checksum = "4dbdc256eaac2e3bd236d93ad999d3479ef775c863dbda3068c4006a92eec51b"
215dependencies = [
216 "bitflags",
217 "cc",
218 "cfg-if",
219 "libc",
220 "void",
221]
222
223[[package]]
224name = "num"
225version = "0.2.1"
226source = "registry+https://github.com/rust-lang/crates.io-index"
227checksum = "b8536030f9fea7127f841b45bb6243b27255787fb4eb83958aa1ef9d2fdc0c36"
228dependencies = [
229 "num-bigint",
230 "num-complex",
231 "num-integer",
232 "num-iter",
233 "num-rational",
234 "num-traits",
235]
236
237[[package]]
238name = "num-bigint"
239version = "0.2.6"
240source = "registry+https://github.com/rust-lang/crates.io-index"
241checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
242dependencies = [
243 "autocfg",
244 "num-integer",
245 "num-traits",
246]
247
248[[package]]
249name = "num-complex"
250version = "0.2.4"
251source = "registry+https://github.com/rust-lang/crates.io-index"
252checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
253dependencies = [
254 "autocfg",
255 "num-traits",
256]
257
258[[package]]
259name = "num-integer"
260version = "0.1.42"
261source = "registry+https://github.com/rust-lang/crates.io-index"
262checksum = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
263dependencies = [
264 "autocfg",
265 "num-traits",
266]
267
268[[package]]
269name = "num-iter"
270version = "0.1.40"
271source = "registry+https://github.com/rust-lang/crates.io-index"
272checksum = "dfb0800a0291891dd9f4fe7bd9c19384f98f7fbe0cd0f39a2c6b88b9868bbc00"
273dependencies = [
274 "autocfg",
275 "num-integer",
276 "num-traits",
277]
278
279[[package]]
280name = "num-rational"
281version = "0.2.4"
282source = "registry+https://github.com/rust-lang/crates.io-index"
283checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
284dependencies = [
285 "autocfg",
286 "num-bigint",
287 "num-integer",
288 "num-traits",
289]
290
291[[package]]
292name = "num-traits"
293version = "0.2.11"
294source = "registry+https://github.com/rust-lang/crates.io-index"
295checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
296dependencies = [
297 "autocfg",
298]
299
300[[package]]
301name = "radix_fmt"
302version = "1.0.0"
303source = "registry+https://github.com/rust-lang/crates.io-index"
304checksum = "ce082a9940a7ace2ad4a8b7d0b1eac6aa378895f18be598230c5f2284ac05426"
305
306[[package]]
307name = "redox_syscall"
308version = "0.1.56"
309source = "registry+https://github.com/rust-lang/crates.io-index"
310checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
311
312[[package]]
313name = "redox_users"
314version = "0.3.4"
315source = "registry+https://github.com/rust-lang/crates.io-index"
316checksum = "09b23093265f8d200fa7b4c2c76297f47e681c655f6f1285a8780d6a022f7431"
317dependencies = [
318 "getrandom",
319 "redox_syscall",
320 "rust-argon2",
321]
322
323[[package]]
324name = "regex"
325version = "1.3.6"
326source = "registry+https://github.com/rust-lang/crates.io-index"
327checksum = "7f6946991529684867e47d86474e3a6d0c0ab9b82d5821e314b1ede31fa3a4b3"
328dependencies = [
329 "aho-corasick",
330 "memchr",
331 "regex-syntax",
332 "thread_local",
333]
334
335[[package]]
336name = "regex-syntax"
337version = "0.6.17"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
340
341[[package]]
342name = "rust-argon2"
343version = "0.7.0"
344source = "registry+https://github.com/rust-lang/crates.io-index"
345checksum = "2bc8af4bda8e1ff4932523b94d3dd20ee30a87232323eda55903ffd71d2fb017"
346dependencies = [
347 "base64",
348 "blake2b_simd",
349 "constant_time_eq",
350 "crossbeam-utils",
351]
352
353[[package]]
354name = "rustyline"
355version = "4.1.0"
356source = "registry+https://github.com/rust-lang/crates.io-index"
357checksum = "0f47ea1ceb347d2deae482d655dc8eef4bd82363d3329baffa3818bd76fea48b"
358dependencies = [
359 "dirs",
360 "libc",
361 "log",
362 "memchr",
363 "nix",
364 "unicode-segmentation",
365 "unicode-width",
366 "utf8parse",
367 "winapi",
368]
369
370[[package]]
371name = "strsim"
372version = "0.8.0"
373source = "registry+https://github.com/rust-lang/crates.io-index"
374checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
375
376[[package]]
377name = "textwrap"
378version = "0.11.0"
379source = "registry+https://github.com/rust-lang/crates.io-index"
380checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
381dependencies = [
382 "unicode-width",
383]
384
385[[package]]
386name = "thread_local"
387version = "1.0.1"
388source = "registry+https://github.com/rust-lang/crates.io-index"
389checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
390dependencies = [
391 "lazy_static",
392]
393
394[[package]]
395name = "unicode-segmentation"
396version = "1.6.0"
397source = "registry+https://github.com/rust-lang/crates.io-index"
398checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
399
400[[package]]
401name = "unicode-width"
402version = "0.1.7"
403source = "registry+https://github.com/rust-lang/crates.io-index"
404checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
405
406[[package]]
407name = "utf8parse"
408version = "0.1.1"
409source = "registry+https://github.com/rust-lang/crates.io-index"
410checksum = "8772a4ccbb4e89959023bc5b7cb8623a795caa7092d99f3aa9501b9484d4557d"
411
412[[package]]
413name = "vec_map"
414version = "0.8.1"
415source = "registry+https://github.com/rust-lang/crates.io-index"
416checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
417
418[[package]]
419name = "void"
420version = "1.0.2"
421source = "registry+https://github.com/rust-lang/crates.io-index"
422checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
423
424[[package]]
425name = "wasi"
426version = "0.9.0+wasi-snapshot-preview1"
427source = "registry+https://github.com/rust-lang/crates.io-index"
428checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
429
430[[package]]
431name = "winapi"
432version = "0.3.8"
433source = "registry+https://github.com/rust-lang/crates.io-index"
434checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
435dependencies = [
436 "winapi-i686-pc-windows-gnu",
437 "winapi-x86_64-pc-windows-gnu",
438]
439
440[[package]]
441name = "winapi-i686-pc-windows-gnu"
442version = "0.4.0"
443source = "registry+https://github.com/rust-lang/crates.io-index"
444checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
445
446[[package]]
447name = "winapi-x86_64-pc-windows-gnu"
448version = "0.4.0"
449source = "registry+https://github.com/rust-lang/crates.io-index"
450checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"