diff options
-rw-r--r-- | Cargo.lock | 312 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | derivation.nix | 2 |
3 files changed, 180 insertions, 136 deletions
@@ -5,7 +5,7 @@ name = "aho-corasick" | |||
5 | version = "0.7.6" | 5 | version = "0.7.6" |
6 | source = "registry+https://github.com/rust-lang/crates.io-index" | 6 | source = "registry+https://github.com/rust-lang/crates.io-index" |
7 | dependencies = [ | 7 | dependencies = [ |
8 | "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 8 | "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
9 | ] | 9 | ] |
10 | 10 | ||
11 | [[package]] | 11 | [[package]] |
@@ -18,15 +18,16 @@ dependencies = [ | |||
18 | 18 | ||
19 | [[package]] | 19 | [[package]] |
20 | name = "anyhow" | 20 | name = "anyhow" |
21 | version = "1.0.23" | 21 | version = "1.0.26" |
22 | source = "registry+https://github.com/rust-lang/crates.io-index" | 22 | source = "registry+https://github.com/rust-lang/crates.io-index" |
23 | 23 | ||
24 | [[package]] | 24 | [[package]] |
25 | name = "atty" | 25 | name = "atty" |
26 | version = "0.2.13" | 26 | version = "0.2.14" |
27 | source = "registry+https://github.com/rust-lang/crates.io-index" | 27 | source = "registry+https://github.com/rust-lang/crates.io-index" |
28 | dependencies = [ | 28 | dependencies = [ |
29 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 29 | "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
30 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", | ||
30 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 31 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", |
31 | ] | 32 | ] |
32 | 33 | ||
@@ -36,6 +37,11 @@ version = "0.1.7" | |||
36 | source = "registry+https://github.com/rust-lang/crates.io-index" | 37 | source = "registry+https://github.com/rust-lang/crates.io-index" |
37 | 38 | ||
38 | [[package]] | 39 | [[package]] |
40 | name = "autocfg" | ||
41 | version = "1.0.0" | ||
42 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
43 | |||
44 | [[package]] | ||
39 | name = "bitflags" | 45 | name = "bitflags" |
40 | version = "1.2.1" | 46 | version = "1.2.1" |
41 | source = "registry+https://github.com/rust-lang/crates.io-index" | 47 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -55,12 +61,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
55 | 61 | ||
56 | [[package]] | 62 | [[package]] |
57 | name = "chrono" | 63 | name = "chrono" |
58 | version = "0.4.9" | 64 | version = "0.4.10" |
59 | source = "registry+https://github.com/rust-lang/crates.io-index" | 65 | source = "registry+https://github.com/rust-lang/crates.io-index" |
60 | dependencies = [ | 66 | dependencies = [ |
61 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 67 | "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", |
62 | "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", | 68 | "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", |
63 | "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
64 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", | 69 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", |
65 | ] | 70 | ] |
66 | 71 | ||
@@ -70,7 +75,7 @@ version = "0.23.0" | |||
70 | source = "registry+https://github.com/rust-lang/crates.io-index" | 75 | source = "registry+https://github.com/rust-lang/crates.io-index" |
71 | dependencies = [ | 76 | dependencies = [ |
72 | "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", | 77 | "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", |
73 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 78 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
74 | ] | 79 | ] |
75 | 80 | ||
76 | [[package]] | 81 | [[package]] |
@@ -79,7 +84,7 @@ version = "0.28.1" | |||
79 | source = "registry+https://github.com/rust-lang/crates.io-index" | 84 | source = "registry+https://github.com/rust-lang/crates.io-index" |
80 | dependencies = [ | 85 | dependencies = [ |
81 | "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 86 | "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
82 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 87 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
83 | ] | 88 | ] |
84 | 89 | ||
85 | [[package]] | 90 | [[package]] |
@@ -88,11 +93,11 @@ version = "2.33.0" | |||
88 | source = "registry+https://github.com/rust-lang/crates.io-index" | 93 | source = "registry+https://github.com/rust-lang/crates.io-index" |
89 | dependencies = [ | 94 | dependencies = [ |
90 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | 95 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", |
91 | "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", | 96 | "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", |
92 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 97 | "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
93 | "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 98 | "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
94 | "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | 99 | "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", |
95 | "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 100 | "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
96 | "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", | 101 | "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", |
97 | ] | 102 | ] |
98 | 103 | ||
@@ -106,9 +111,9 @@ name = "codemap-diagnostic" | |||
106 | version = "0.1.1" | 111 | version = "0.1.1" |
107 | source = "registry+https://github.com/rust-lang/crates.io-index" | 112 | source = "registry+https://github.com/rust-lang/crates.io-index" |
108 | dependencies = [ | 113 | dependencies = [ |
109 | "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", | 114 | "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", |
110 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 115 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
111 | "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | 116 | "termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
112 | ] | 117 | ] |
113 | 118 | ||
114 | [[package]] | 119 | [[package]] |
@@ -135,9 +140,10 @@ dependencies = [ | |||
135 | 140 | ||
136 | [[package]] | 141 | [[package]] |
137 | name = "crossbeam-queue" | 142 | name = "crossbeam-queue" |
138 | version = "0.2.0" | 143 | version = "0.2.1" |
139 | source = "registry+https://github.com/rust-lang/crates.io-index" | 144 | source = "registry+https://github.com/rust-lang/crates.io-index" |
140 | dependencies = [ | 145 | dependencies = [ |
146 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
141 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 147 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
142 | ] | 148 | ] |
143 | 149 | ||
@@ -161,21 +167,21 @@ name = "env_logger" | |||
161 | version = "0.6.2" | 167 | version = "0.6.2" |
162 | source = "registry+https://github.com/rust-lang/crates.io-index" | 168 | source = "registry+https://github.com/rust-lang/crates.io-index" |
163 | dependencies = [ | 169 | dependencies = [ |
164 | "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", | 170 | "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", |
165 | "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 171 | "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
166 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 172 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
167 | "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 173 | "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
168 | "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | 174 | "termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
169 | ] | 175 | ] |
170 | 176 | ||
171 | [[package]] | 177 | [[package]] |
172 | name = "getrandom" | 178 | name = "getrandom" |
173 | version = "0.1.13" | 179 | version = "0.1.14" |
174 | source = "registry+https://github.com/rust-lang/crates.io-index" | 180 | source = "registry+https://github.com/rust-lang/crates.io-index" |
175 | dependencies = [ | 181 | dependencies = [ |
176 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 182 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
177 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 183 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
178 | "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 184 | "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", |
179 | ] | 185 | ] |
180 | 186 | ||
181 | [[package]] | 187 | [[package]] |
@@ -193,10 +199,10 @@ dependencies = [ | |||
193 | 199 | ||
194 | [[package]] | 200 | [[package]] |
195 | name = "hermit-abi" | 201 | name = "hermit-abi" |
196 | version = "0.1.3" | 202 | version = "0.1.6" |
197 | source = "registry+https://github.com/rust-lang/crates.io-index" | 203 | source = "registry+https://github.com/rust-lang/crates.io-index" |
198 | dependencies = [ | 204 | dependencies = [ |
199 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 205 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
200 | ] | 206 | ] |
201 | 207 | ||
202 | [[package]] | 208 | [[package]] |
@@ -204,7 +210,15 @@ name = "humantime" | |||
204 | version = "1.3.0" | 210 | version = "1.3.0" |
205 | source = "registry+https://github.com/rust-lang/crates.io-index" | 211 | source = "registry+https://github.com/rust-lang/crates.io-index" |
206 | dependencies = [ | 212 | dependencies = [ |
207 | "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 213 | "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", |
214 | ] | ||
215 | |||
216 | [[package]] | ||
217 | name = "indexmap" | ||
218 | version = "1.3.0" | ||
219 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
220 | dependencies = [ | ||
221 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
208 | ] | 222 | ] |
209 | 223 | ||
210 | [[package]] | 224 | [[package]] |
@@ -219,7 +233,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
219 | 233 | ||
220 | [[package]] | 234 | [[package]] |
221 | name = "libc" | 235 | name = "libc" |
222 | version = "0.2.65" | 236 | version = "0.2.66" |
223 | source = "registry+https://github.com/rust-lang/crates.io-index" | 237 | source = "registry+https://github.com/rust-lang/crates.io-index" |
224 | 238 | ||
225 | [[package]] | 239 | [[package]] |
@@ -232,7 +246,7 @@ dependencies = [ | |||
232 | 246 | ||
233 | [[package]] | 247 | [[package]] |
234 | name = "memchr" | 248 | name = "memchr" |
235 | version = "2.2.1" | 249 | version = "2.3.0" |
236 | source = "registry+https://github.com/rust-lang/crates.io-index" | 250 | source = "registry+https://github.com/rust-lang/crates.io-index" |
237 | 251 | ||
238 | [[package]] | 252 | [[package]] |
@@ -245,19 +259,19 @@ dependencies = [ | |||
245 | 259 | ||
246 | [[package]] | 260 | [[package]] |
247 | name = "num-integer" | 261 | name = "num-integer" |
248 | version = "0.1.41" | 262 | version = "0.1.42" |
249 | source = "registry+https://github.com/rust-lang/crates.io-index" | 263 | source = "registry+https://github.com/rust-lang/crates.io-index" |
250 | dependencies = [ | 264 | dependencies = [ |
251 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 265 | "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
252 | "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", | 266 | "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", |
253 | ] | 267 | ] |
254 | 268 | ||
255 | [[package]] | 269 | [[package]] |
256 | name = "num-traits" | 270 | name = "num-traits" |
257 | version = "0.2.10" | 271 | version = "0.2.11" |
258 | source = "registry+https://github.com/rust-lang/crates.io-index" | 272 | source = "registry+https://github.com/rust-lang/crates.io-index" |
259 | dependencies = [ | 273 | dependencies = [ |
260 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 274 | "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
261 | ] | 275 | ] |
262 | 276 | ||
263 | [[package]] | 277 | [[package]] |
@@ -265,8 +279,8 @@ name = "num_cpus" | |||
265 | version = "1.11.1" | 279 | version = "1.11.1" |
266 | source = "registry+https://github.com/rust-lang/crates.io-index" | 280 | source = "registry+https://github.com/rust-lang/crates.io-index" |
267 | dependencies = [ | 281 | dependencies = [ |
268 | "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | 282 | "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
269 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 283 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
270 | ] | 284 | ] |
271 | 285 | ||
272 | [[package]] | 286 | [[package]] |
@@ -274,9 +288,9 @@ name = "pandoc_types" | |||
274 | version = "0.2.0" | 288 | version = "0.2.0" |
275 | source = "registry+https://github.com/rust-lang/crates.io-index" | 289 | source = "registry+https://github.com/rust-lang/crates.io-index" |
276 | dependencies = [ | 290 | dependencies = [ |
277 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 291 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", |
278 | "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 292 | "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", |
279 | "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", | 293 | "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", |
280 | ] | 294 | ] |
281 | 295 | ||
282 | [[package]] | 296 | [[package]] |
@@ -288,7 +302,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
288 | name = "poseidoc" | 302 | name = "poseidoc" |
289 | version = "0.1.0" | 303 | version = "0.1.0" |
290 | dependencies = [ | 304 | dependencies = [ |
291 | "anyhow 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)", | 305 | "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", |
292 | "clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", | 306 | "clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", |
293 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 307 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
294 | "codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 308 | "codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -297,14 +311,14 @@ dependencies = [ | |||
297 | "pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 311 | "pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
298 | "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 312 | "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
299 | "pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 313 | "pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
300 | "rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 314 | "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
301 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 315 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", |
302 | "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 316 | "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", |
303 | "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", | 317 | "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", |
304 | "shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 318 | "shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
305 | "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 319 | "structopt 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", |
306 | "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 320 | "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
307 | "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 321 | "thiserror 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", |
308 | "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", | 322 | "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", |
309 | "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 323 | "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
310 | ] | 324 | ] |
@@ -319,24 +333,38 @@ name = "pretty_env_logger" | |||
319 | version = "0.3.1" | 333 | version = "0.3.1" |
320 | source = "registry+https://github.com/rust-lang/crates.io-index" | 334 | source = "registry+https://github.com/rust-lang/crates.io-index" |
321 | dependencies = [ | 335 | dependencies = [ |
322 | "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | 336 | "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", |
323 | "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", | 337 | "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", |
324 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 338 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
325 | ] | 339 | ] |
326 | 340 | ||
327 | [[package]] | 341 | [[package]] |
328 | name = "proc-macro-error" | 342 | name = "proc-macro-error" |
329 | version = "0.2.6" | 343 | version = "0.4.4" |
330 | source = "registry+https://github.com/rust-lang/crates.io-index" | 344 | source = "registry+https://github.com/rust-lang/crates.io-index" |
331 | dependencies = [ | 345 | dependencies = [ |
332 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 346 | "proc-macro-error-attr 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", |
347 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
333 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 348 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
334 | "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 349 | "rustversion 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
350 | "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
351 | ] | ||
352 | |||
353 | [[package]] | ||
354 | name = "proc-macro-error-attr" | ||
355 | version = "0.4.3" | ||
356 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
357 | dependencies = [ | ||
358 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
359 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
360 | "rustversion 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
361 | "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
362 | "syn-mid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
335 | ] | 363 | ] |
336 | 364 | ||
337 | [[package]] | 365 | [[package]] |
338 | name = "proc-macro2" | 366 | name = "proc-macro2" |
339 | version = "1.0.6" | 367 | version = "1.0.7" |
340 | source = "registry+https://github.com/rust-lang/crates.io-index" | 368 | source = "registry+https://github.com/rust-lang/crates.io-index" |
341 | dependencies = [ | 369 | dependencies = [ |
342 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 370 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -344,7 +372,7 @@ dependencies = [ | |||
344 | 372 | ||
345 | [[package]] | 373 | [[package]] |
346 | name = "quick-error" | 374 | name = "quick-error" |
347 | version = "1.2.2" | 375 | version = "1.2.3" |
348 | source = "registry+https://github.com/rust-lang/crates.io-index" | 376 | source = "registry+https://github.com/rust-lang/crates.io-index" |
349 | 377 | ||
350 | [[package]] | 378 | [[package]] |
@@ -352,16 +380,16 @@ name = "quote" | |||
352 | version = "1.0.2" | 380 | version = "1.0.2" |
353 | source = "registry+https://github.com/rust-lang/crates.io-index" | 381 | source = "registry+https://github.com/rust-lang/crates.io-index" |
354 | dependencies = [ | 382 | dependencies = [ |
355 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 383 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", |
356 | ] | 384 | ] |
357 | 385 | ||
358 | [[package]] | 386 | [[package]] |
359 | name = "rand" | 387 | name = "rand" |
360 | version = "0.7.2" | 388 | version = "0.7.3" |
361 | source = "registry+https://github.com/rust-lang/crates.io-index" | 389 | source = "registry+https://github.com/rust-lang/crates.io-index" |
362 | dependencies = [ | 390 | dependencies = [ |
363 | "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | 391 | "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", |
364 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 392 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
365 | "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 393 | "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
366 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | 394 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", |
367 | "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 395 | "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -381,7 +409,7 @@ name = "rand_core" | |||
381 | version = "0.5.1" | 409 | version = "0.5.1" |
382 | source = "registry+https://github.com/rust-lang/crates.io-index" | 410 | source = "registry+https://github.com/rust-lang/crates.io-index" |
383 | dependencies = [ | 411 | dependencies = [ |
384 | "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | 412 | "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", |
385 | ] | 413 | ] |
386 | 414 | ||
387 | [[package]] | 415 | [[package]] |
@@ -394,21 +422,21 @@ dependencies = [ | |||
394 | 422 | ||
395 | [[package]] | 423 | [[package]] |
396 | name = "rayon" | 424 | name = "rayon" |
397 | version = "1.2.1" | 425 | version = "1.3.0" |
398 | source = "registry+https://github.com/rust-lang/crates.io-index" | 426 | source = "registry+https://github.com/rust-lang/crates.io-index" |
399 | dependencies = [ | 427 | dependencies = [ |
400 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | 428 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", |
401 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | 429 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", |
402 | "rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", | 430 | "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
403 | ] | 431 | ] |
404 | 432 | ||
405 | [[package]] | 433 | [[package]] |
406 | name = "rayon-core" | 434 | name = "rayon-core" |
407 | version = "1.6.1" | 435 | version = "1.7.0" |
408 | source = "registry+https://github.com/rust-lang/crates.io-index" | 436 | source = "registry+https://github.com/rust-lang/crates.io-index" |
409 | dependencies = [ | 437 | dependencies = [ |
410 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | 438 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", |
411 | "crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 439 | "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
412 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 440 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
413 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 441 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
414 | "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", | 442 | "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -421,18 +449,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
421 | 449 | ||
422 | [[package]] | 450 | [[package]] |
423 | name = "regex" | 451 | name = "regex" |
424 | version = "1.3.1" | 452 | version = "1.3.3" |
425 | source = "registry+https://github.com/rust-lang/crates.io-index" | 453 | source = "registry+https://github.com/rust-lang/crates.io-index" |
426 | dependencies = [ | 454 | dependencies = [ |
427 | "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", | 455 | "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", |
428 | "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 456 | "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
429 | "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", | 457 | "regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)", |
430 | "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | 458 | "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
431 | ] | 459 | ] |
432 | 460 | ||
433 | [[package]] | 461 | [[package]] |
434 | name = "regex-syntax" | 462 | name = "regex-syntax" |
435 | version = "0.6.12" | 463 | version = "0.6.13" |
436 | source = "registry+https://github.com/rust-lang/crates.io-index" | 464 | source = "registry+https://github.com/rust-lang/crates.io-index" |
437 | 465 | ||
438 | [[package]] | 466 | [[package]] |
@@ -452,6 +480,16 @@ dependencies = [ | |||
452 | ] | 480 | ] |
453 | 481 | ||
454 | [[package]] | 482 | [[package]] |
483 | name = "rustversion" | ||
484 | version = "1.0.1" | ||
485 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
486 | dependencies = [ | ||
487 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
488 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
489 | "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
490 | ] | ||
491 | |||
492 | [[package]] | ||
455 | name = "ryu" | 493 | name = "ryu" |
456 | version = "1.0.2" | 494 | version = "1.0.2" |
457 | source = "registry+https://github.com/rust-lang/crates.io-index" | 495 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -476,27 +514,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
476 | 514 | ||
477 | [[package]] | 515 | [[package]] |
478 | name = "serde" | 516 | name = "serde" |
479 | version = "1.0.102" | 517 | version = "1.0.104" |
480 | source = "registry+https://github.com/rust-lang/crates.io-index" | 518 | source = "registry+https://github.com/rust-lang/crates.io-index" |
481 | 519 | ||
482 | [[package]] | 520 | [[package]] |
483 | name = "serde_derive" | 521 | name = "serde_derive" |
484 | version = "1.0.102" | 522 | version = "1.0.104" |
485 | source = "registry+https://github.com/rust-lang/crates.io-index" | 523 | source = "registry+https://github.com/rust-lang/crates.io-index" |
486 | dependencies = [ | 524 | dependencies = [ |
487 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 525 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", |
488 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 526 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
489 | "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 527 | "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", |
490 | ] | 528 | ] |
491 | 529 | ||
492 | [[package]] | 530 | [[package]] |
493 | name = "serde_json" | 531 | name = "serde_json" |
494 | version = "1.0.41" | 532 | version = "1.0.44" |
495 | source = "registry+https://github.com/rust-lang/crates.io-index" | 533 | source = "registry+https://github.com/rust-lang/crates.io-index" |
496 | dependencies = [ | 534 | dependencies = [ |
535 | "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
497 | "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | 536 | "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", |
498 | "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 537 | "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
499 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 538 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", |
500 | ] | 539 | ] |
501 | 540 | ||
502 | [[package]] | 541 | [[package]] |
@@ -511,43 +550,53 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
511 | 550 | ||
512 | [[package]] | 551 | [[package]] |
513 | name = "structopt" | 552 | name = "structopt" |
514 | version = "0.3.5" | 553 | version = "0.3.7" |
515 | source = "registry+https://github.com/rust-lang/crates.io-index" | 554 | source = "registry+https://github.com/rust-lang/crates.io-index" |
516 | dependencies = [ | 555 | dependencies = [ |
517 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", | 556 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", |
518 | "structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | 557 | "structopt-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
519 | ] | 558 | ] |
520 | 559 | ||
521 | [[package]] | 560 | [[package]] |
522 | name = "structopt-derive" | 561 | name = "structopt-derive" |
523 | version = "0.3.5" | 562 | version = "0.4.0" |
524 | source = "registry+https://github.com/rust-lang/crates.io-index" | 563 | source = "registry+https://github.com/rust-lang/crates.io-index" |
525 | dependencies = [ | 564 | dependencies = [ |
526 | "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 565 | "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
527 | "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | 566 | "proc-macro-error 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", |
528 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 567 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", |
529 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 568 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
530 | "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 569 | "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", |
531 | ] | 570 | ] |
532 | 571 | ||
533 | [[package]] | 572 | [[package]] |
534 | name = "syn" | 573 | name = "syn" |
535 | version = "1.0.8" | 574 | version = "1.0.13" |
536 | source = "registry+https://github.com/rust-lang/crates.io-index" | 575 | source = "registry+https://github.com/rust-lang/crates.io-index" |
537 | dependencies = [ | 576 | dependencies = [ |
538 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 577 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", |
539 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 578 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
540 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 579 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
541 | ] | 580 | ] |
542 | 581 | ||
543 | [[package]] | 582 | [[package]] |
583 | name = "syn-mid" | ||
584 | version = "0.4.0" | ||
585 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
586 | dependencies = [ | ||
587 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
588 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
589 | "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
590 | ] | ||
591 | |||
592 | [[package]] | ||
544 | name = "tempfile" | 593 | name = "tempfile" |
545 | version = "3.1.0" | 594 | version = "3.1.0" |
546 | source = "registry+https://github.com/rust-lang/crates.io-index" | 595 | source = "registry+https://github.com/rust-lang/crates.io-index" |
547 | dependencies = [ | 596 | dependencies = [ |
548 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | 597 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", |
549 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 598 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
550 | "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | 599 | "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", |
551 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", | 600 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", |
552 | "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | 601 | "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", |
553 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 602 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -555,10 +604,10 @@ dependencies = [ | |||
555 | 604 | ||
556 | [[package]] | 605 | [[package]] |
557 | name = "termcolor" | 606 | name = "termcolor" |
558 | version = "1.0.5" | 607 | version = "1.1.0" |
559 | source = "registry+https://github.com/rust-lang/crates.io-index" | 608 | source = "registry+https://github.com/rust-lang/crates.io-index" |
560 | dependencies = [ | 609 | dependencies = [ |
561 | "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 610 | "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", |
562 | ] | 611 | ] |
563 | 612 | ||
564 | [[package]] | 613 | [[package]] |
@@ -566,30 +615,30 @@ name = "textwrap" | |||
566 | version = "0.11.0" | 615 | version = "0.11.0" |
567 | source = "registry+https://github.com/rust-lang/crates.io-index" | 616 | source = "registry+https://github.com/rust-lang/crates.io-index" |
568 | dependencies = [ | 617 | dependencies = [ |
569 | "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 618 | "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
570 | ] | 619 | ] |
571 | 620 | ||
572 | [[package]] | 621 | [[package]] |
573 | name = "thiserror" | 622 | name = "thiserror" |
574 | version = "1.0.6" | 623 | version = "1.0.9" |
575 | source = "registry+https://github.com/rust-lang/crates.io-index" | 624 | source = "registry+https://github.com/rust-lang/crates.io-index" |
576 | dependencies = [ | 625 | dependencies = [ |
577 | "thiserror-impl 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 626 | "thiserror-impl 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", |
578 | ] | 627 | ] |
579 | 628 | ||
580 | [[package]] | 629 | [[package]] |
581 | name = "thiserror-impl" | 630 | name = "thiserror-impl" |
582 | version = "1.0.6" | 631 | version = "1.0.9" |
583 | source = "registry+https://github.com/rust-lang/crates.io-index" | 632 | source = "registry+https://github.com/rust-lang/crates.io-index" |
584 | dependencies = [ | 633 | dependencies = [ |
585 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 634 | "proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", |
586 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 635 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
587 | "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 636 | "syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", |
588 | ] | 637 | ] |
589 | 638 | ||
590 | [[package]] | 639 | [[package]] |
591 | name = "thread_local" | 640 | name = "thread_local" |
592 | version = "0.3.6" | 641 | version = "1.0.1" |
593 | source = "registry+https://github.com/rust-lang/crates.io-index" | 642 | source = "registry+https://github.com/rust-lang/crates.io-index" |
594 | dependencies = [ | 643 | dependencies = [ |
595 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | 644 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -600,7 +649,7 @@ name = "time" | |||
600 | version = "0.1.42" | 649 | version = "0.1.42" |
601 | source = "registry+https://github.com/rust-lang/crates.io-index" | 650 | source = "registry+https://github.com/rust-lang/crates.io-index" |
602 | dependencies = [ | 651 | dependencies = [ |
603 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 652 | "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", |
604 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", | 653 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", |
605 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 654 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", |
606 | ] | 655 | ] |
@@ -610,7 +659,7 @@ name = "toml" | |||
610 | version = "0.5.5" | 659 | version = "0.5.5" |
611 | source = "registry+https://github.com/rust-lang/crates.io-index" | 660 | source = "registry+https://github.com/rust-lang/crates.io-index" |
612 | dependencies = [ | 661 | dependencies = [ |
613 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 662 | "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", |
614 | ] | 663 | ] |
615 | 664 | ||
616 | [[package]] | 665 | [[package]] |
@@ -620,7 +669,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
620 | 669 | ||
621 | [[package]] | 670 | [[package]] |
622 | name = "unicode-width" | 671 | name = "unicode-width" |
623 | version = "0.1.6" | 672 | version = "0.1.7" |
624 | source = "registry+https://github.com/rust-lang/crates.io-index" | 673 | source = "registry+https://github.com/rust-lang/crates.io-index" |
625 | 674 | ||
626 | [[package]] | 675 | [[package]] |
@@ -635,7 +684,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
635 | 684 | ||
636 | [[package]] | 685 | [[package]] |
637 | name = "wasi" | 686 | name = "wasi" |
638 | version = "0.7.0" | 687 | version = "0.9.0+wasi-snapshot-preview1" |
639 | source = "registry+https://github.com/rust-lang/crates.io-index" | 688 | source = "registry+https://github.com/rust-lang/crates.io-index" |
640 | 689 | ||
641 | [[package]] | 690 | [[package]] |
@@ -654,7 +703,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
654 | 703 | ||
655 | [[package]] | 704 | [[package]] |
656 | name = "winapi-util" | 705 | name = "winapi-util" |
657 | version = "0.1.2" | 706 | version = "0.1.3" |
658 | source = "registry+https://github.com/rust-lang/crates.io-index" | 707 | source = "registry+https://github.com/rust-lang/crates.io-index" |
659 | dependencies = [ | 708 | dependencies = [ |
660 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | 709 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -666,15 +715,6 @@ version = "0.4.0" | |||
666 | source = "registry+https://github.com/rust-lang/crates.io-index" | 715 | source = "registry+https://github.com/rust-lang/crates.io-index" |
667 | 716 | ||
668 | [[package]] | 717 | [[package]] |
669 | name = "wincolor" | ||
670 | version = "1.0.2" | ||
671 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
672 | dependencies = [ | ||
673 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
674 | "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
675 | ] | ||
676 | |||
677 | [[package]] | ||
678 | name = "xml-rs" | 718 | name = "xml-rs" |
679 | version = "0.8.0" | 719 | version = "0.8.0" |
680 | source = "registry+https://github.com/rust-lang/crates.io-index" | 720 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -682,13 +722,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
682 | [metadata] | 722 | [metadata] |
683 | "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" | 723 | "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" |
684 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" | 724 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" |
685 | "checksum anyhow 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1072d8f55592084072d2d3cb23a4b680a8543c00f10d446118e85ad3718142" | 725 | "checksum anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = "7825f6833612eb2414095684fcf6c635becf3ce97fe48cf6421321e93bfbd53c" |
686 | "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" | 726 | "checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" |
687 | "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" | 727 | "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" |
728 | "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" | ||
688 | "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | 729 | "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" |
689 | "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" | 730 | "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" |
690 | "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | 731 | "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" |
691 | "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" | 732 | "checksum chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "31850b4a4d6bae316f7a09e691c944c28299298837edc0a03f755618c23cbc01" |
692 | "checksum clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "edaa418fdc81a329f3c8258a4e8776f7d2c31682147c5bda1c5c37ab8e818114" | 733 | "checksum clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "edaa418fdc81a329f3c8258a4e8776f7d2c31682147c5bda1c5c37ab8e818114" |
693 | "checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" | 734 | "checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" |
694 | "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" | 735 | "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" |
@@ -696,71 +737,74 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
696 | "checksum codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ba0e6be8e2774e750f9e90625b490249715bece38a12f9d09e82477caba5028" | 737 | "checksum codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ba0e6be8e2774e750f9e90625b490249715bece38a12f9d09e82477caba5028" |
697 | "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" | 738 | "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" |
698 | "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" | 739 | "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" |
699 | "checksum crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfd6515864a82d2f877b42813d4553292c6659498c9a2aa31bab5a15243c2700" | 740 | "checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db" |
700 | "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" | 741 | "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" |
701 | "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" | 742 | "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" |
702 | "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" | 743 | "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" |
703 | "checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" | 744 | "checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" |
704 | "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | 745 | "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" |
705 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" | 746 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" |
706 | "checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" | 747 | "checksum hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772" |
707 | "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" | 748 | "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" |
749 | "checksum indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d7b3ea5827fcb9d4fda14bf4da5f136f0db2ae9c8f4bd4e2d1c6fde4e6db2" | ||
708 | "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" | 750 | "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" |
709 | "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | 751 | "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
710 | "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" | 752 | "checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558" |
711 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" | 753 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" |
712 | "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" | 754 | "checksum memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3197e20c7edb283f87c071ddfc7a2cca8f8e0b888c242959846a6fce03c72223" |
713 | "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" | 755 | "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" |
714 | "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" | 756 | "checksum num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba" |
715 | "checksum num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c81ffc11c212fa327657cb19dd85eb7419e163b5b076bede2bdb5c974c07e4" | 757 | "checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096" |
716 | "checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" | 758 | "checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" |
717 | "checksum pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29869c4f0ed84c2514105047415ff220679d7dbe566982c32f60a5c330cb77ed" | 759 | "checksum pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29869c4f0ed84c2514105047415ff220679d7dbe566982c32f60a5c330cb77ed" |
718 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" | 760 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" |
719 | "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" | 761 | "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" |
720 | "checksum pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "717ee476b1690853d222af4634056d830b5197ffd747726a9a1eee6da9f49074" | 762 | "checksum pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "717ee476b1690853d222af4634056d830b5197ffd747726a9a1eee6da9f49074" |
721 | "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" | 763 | "checksum proc-macro-error 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "53c98547ceaea14eeb26fcadf51dc70d01a2479a7839170eae133721105e4428" |
722 | "checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" | 764 | "checksum proc-macro-error-attr 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c2bf5d493cf5d3e296beccfd61794e445e830dfc8070a9c248ad3ee071392c6c" |
723 | "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" | 765 | "checksum proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0319972dcae462681daf4da1adeeaa066e3ebd29c69be96c6abb1259d2ee2bcc" |
766 | "checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" | ||
724 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" | 767 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" |
725 | "checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" | 768 | "checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" |
726 | "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" | 769 | "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" |
727 | "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" | 770 | "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" |
728 | "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" | 771 | "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" |
729 | "checksum rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "43739f8831493b276363637423d3622d4bd6394ab6f0a9c4a552e208aeb7fddd" | 772 | "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" |
730 | "checksum rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8bf17de6f23b05473c437eb958b9c850bfc8af0961fe17b4cc92d5a627b4791" | 773 | "checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" |
731 | "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" | 774 | "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" |
732 | "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" | 775 | "checksum regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b5508c1941e4e7cb19965abef075d35a9a8b5cdf0846f30b4050e9b55dc55e87" |
733 | "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" | 776 | "checksum regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e734e891f5b408a29efbf8309e656876276f49ab6a6ac208600b4419bd893d90" |
734 | "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" | 777 | "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" |
735 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | 778 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" |
779 | "checksum rustversion 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a0538bd897e17257b0128d2fd95c2ed6df939374073a36166051a79e2eb7986" | ||
736 | "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" | 780 | "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" |
737 | "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" | 781 | "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" |
738 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | 782 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" |
739 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | 783 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" |
740 | "checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" | 784 | "checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449" |
741 | "checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" | 785 | "checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64" |
742 | "checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" | 786 | "checksum serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)" = "48c575e0cc52bdd09b47f330f646cf59afc586e9c4e3ccd6fc1f625b8ea1dad7" |
743 | "checksum shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39acde55a154c4cd3ae048ac78cc21c25f3a0145e44111b523279113dce0d94a" | 787 | "checksum shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39acde55a154c4cd3ae048ac78cc21c25f3a0145e44111b523279113dce0d94a" |
744 | "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" | 788 | "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" |
745 | "checksum structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf" | 789 | "checksum structopt 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "884ae79d6aad1e738f4a70dff314203fd498490a63ebc4d03ea83323c40b7b72" |
746 | "checksum structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e" | 790 | "checksum structopt-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0a97f829a34a0a9d5b353a881025a23b8c9fd09d46be6045df6b22920dbd7a93" |
747 | "checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" | 791 | "checksum syn 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1e4ff033220a41d1a57d8125eab57bf5263783dfdcc18688b1dacc6ce9651ef8" |
792 | "checksum syn-mid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9fd3937748a7eccff61ba5b90af1a20dbf610858923a9192ea0ecb0cb77db1d0" | ||
748 | "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" | 793 | "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" |
749 | "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" | 794 | "checksum termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" |
750 | "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" | 795 | "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" |
751 | "checksum thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "cc6b305ec0e323c7b6cfff6098a22516e0063d0bb7c3d88660a890217dca099a" | 796 | "checksum thiserror 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6f357d1814b33bc2dc221243f8424104bfe72dbe911d5b71b3816a2dff1c977e" |
752 | "checksum thiserror-impl 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45ba8d810d9c48fc456b7ad54574e8bfb7c7918a57ad7a6e6a0985d7959e8597" | 797 | "checksum thiserror-impl 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "eb2e25d25307eb8436894f727aba8f65d07adf02e5b35a13cebed48bd282bfef" |
753 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" | 798 | "checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" |
754 | "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" | 799 | "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" |
755 | "checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" | 800 | "checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" |
756 | "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" | 801 | "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" |
757 | "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" | 802 | "checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479" |
758 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" | 803 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" |
759 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" | 804 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" |
760 | "checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" | 805 | "checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" |
761 | "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" | 806 | "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" |
762 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | 807 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
763 | "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" | 808 | "checksum winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80" |
764 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | 809 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
765 | "checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" | ||
766 | "checksum xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "541b12c998c5b56aa2b4e6f18f03664eef9a4fd0a246a55594efae6cc2d964b5" | 810 | "checksum xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "541b12c998c5b56aa2b4e6f18f03664eef9a4fd0a246a55594efae6cc2d964b5" |
@@ -19,7 +19,7 @@ pretty_env_logger = "0.3" | |||
19 | rayon = "1" | 19 | rayon = "1" |
20 | serde = "1" | 20 | serde = "1" |
21 | serde_derive = "1" | 21 | serde_derive = "1" |
22 | serde_json = "1" | 22 | serde_json = { version = "1", features = ["preserve_order"] } |
23 | shell-words = "0.1" | 23 | shell-words = "0.1" |
24 | structopt = "0.3" | 24 | structopt = "0.3" |
25 | # TODO: remove tempfile | 25 | # TODO: remove tempfile |
diff --git a/derivation.nix b/derivation.nix index e877c04..ea479d0 100644 --- a/derivation.nix +++ b/derivation.nix | |||
@@ -9,7 +9,7 @@ rustPlatform.buildRustPackage { | |||
9 | buildInputs = [ llvm libclang ]; | 9 | buildInputs = [ llvm libclang ]; |
10 | LIBCLANG_PATH = "${libclang}/lib"; | 10 | LIBCLANG_PATH = "${libclang}/lib"; |
11 | 11 | ||
12 | cargoSha256 = "0hrqzfzirq8xx32l969367xznlr6wf606xnwkqzknxdc2lxs7k40"; | 12 | cargoSha256 = "1yi49fmqxmqrp5m6cqpfbvi76c76xaw6kiic7jpf1vaa2q7px4rk"; |
13 | 13 | ||
14 | postFixup = '' | 14 | postFixup = '' |
15 | shell=${runtimeShell} | 15 | shell=${runtimeShell} |