diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 566 |
1 files changed, 400 insertions, 166 deletions
@@ -3,10 +3,28 @@ | |||
3 | version = 3 | 3 | version = 3 |
4 | 4 | ||
5 | [[package]] | 5 | [[package]] |
6 | name = "aho-corasick" | ||
7 | version = "0.7.20" | ||
8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
9 | checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" | ||
10 | dependencies = [ | ||
11 | "memchr", | ||
12 | ] | ||
13 | |||
14 | [[package]] | ||
15 | name = "ansi_term" | ||
16 | version = "0.12.1" | ||
17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
18 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" | ||
19 | dependencies = [ | ||
20 | "winapi", | ||
21 | ] | ||
22 | |||
23 | [[package]] | ||
6 | name = "anyhow" | 24 | name = "anyhow" |
7 | version = "1.0.36" | 25 | version = "1.0.68" |
8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 26 | source = "registry+https://github.com/rust-lang/crates.io-index" |
9 | checksum = "68803225a7b13e47191bab76f2687382b60d259e8cf37f6e1893658b84bb9479" | 27 | checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" |
10 | 28 | ||
11 | [[package]] | 29 | [[package]] |
12 | name = "approx" | 30 | name = "approx" |
@@ -18,16 +36,50 @@ dependencies = [ | |||
18 | ] | 36 | ] |
19 | 37 | ||
20 | [[package]] | 38 | [[package]] |
39 | name = "atty" | ||
40 | version = "0.2.14" | ||
41 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
42 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
43 | dependencies = [ | ||
44 | "hermit-abi", | ||
45 | "libc", | ||
46 | "winapi", | ||
47 | ] | ||
48 | |||
49 | [[package]] | ||
21 | name = "autocfg" | 50 | name = "autocfg" |
22 | version = "1.0.1" | 51 | version = "1.1.0" |
23 | source = "registry+https://github.com/rust-lang/crates.io-index" | 52 | source = "registry+https://github.com/rust-lang/crates.io-index" |
24 | checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" | 53 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" |
54 | |||
55 | [[package]] | ||
56 | name = "bindgen" | ||
57 | version = "0.58.1" | ||
58 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
59 | checksum = "0f8523b410d7187a43085e7e064416ea32ded16bd0a4e6fc025e21616d01258f" | ||
60 | dependencies = [ | ||
61 | "bitflags", | ||
62 | "cexpr", | ||
63 | "clang-sys", | ||
64 | "clap", | ||
65 | "env_logger", | ||
66 | "lazy_static", | ||
67 | "lazycell", | ||
68 | "log", | ||
69 | "peeking_take_while", | ||
70 | "proc-macro2", | ||
71 | "quote", | ||
72 | "regex", | ||
73 | "rustc-hash", | ||
74 | "shlex", | ||
75 | "which", | ||
76 | ] | ||
25 | 77 | ||
26 | [[package]] | 78 | [[package]] |
27 | name = "bitflags" | 79 | name = "bitflags" |
28 | version = "1.2.1" | 80 | version = "1.3.2" |
29 | source = "registry+https://github.com/rust-lang/crates.io-index" | 81 | source = "registry+https://github.com/rust-lang/crates.io-index" |
30 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | 82 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
31 | 83 | ||
32 | [[package]] | 84 | [[package]] |
33 | name = "bstr" | 85 | name = "bstr" |
@@ -40,24 +92,23 @@ dependencies = [ | |||
40 | 92 | ||
41 | [[package]] | 93 | [[package]] |
42 | name = "cairo-rs" | 94 | name = "cairo-rs" |
43 | version = "0.9.1" | 95 | version = "0.16.7" |
44 | source = "registry+https://github.com/rust-lang/crates.io-index" | 96 | source = "registry+https://github.com/rust-lang/crates.io-index" |
45 | checksum = "c5c0f2e047e8ca53d0ff249c54ae047931d7a6ebe05d00af73e0ffeb6e34bdb8" | 97 | checksum = "f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d" |
46 | dependencies = [ | 98 | dependencies = [ |
47 | "bitflags", | 99 | "bitflags", |
48 | "cairo-sys-rs", | 100 | "cairo-sys-rs", |
49 | "glib", | 101 | "glib", |
50 | "glib-sys", | ||
51 | "gobject-sys", | ||
52 | "libc", | 102 | "libc", |
103 | "once_cell", | ||
53 | "thiserror", | 104 | "thiserror", |
54 | ] | 105 | ] |
55 | 106 | ||
56 | [[package]] | 107 | [[package]] |
57 | name = "cairo-sys-rs" | 108 | name = "cairo-sys-rs" |
58 | version = "0.10.0" | 109 | version = "0.16.3" |
59 | source = "registry+https://github.com/rust-lang/crates.io-index" | 110 | source = "registry+https://github.com/rust-lang/crates.io-index" |
60 | checksum = "2ed2639b9ad5f1d6efa76de95558e11339e7318426d84ac4890b86c03e828ca7" | 111 | checksum = "7c48f4af05fabdcfa9658178e1326efa061853f040ce7d72e33af6885196f421" |
61 | dependencies = [ | 112 | dependencies = [ |
62 | "glib-sys", | 113 | "glib-sys", |
63 | "libc", | 114 | "libc", |
@@ -66,15 +117,59 @@ dependencies = [ | |||
66 | 117 | ||
67 | [[package]] | 118 | [[package]] |
68 | name = "cc" | 119 | name = "cc" |
69 | version = "1.0.77" | 120 | version = "1.0.78" |
70 | source = "registry+https://github.com/rust-lang/crates.io-index" | 121 | source = "registry+https://github.com/rust-lang/crates.io-index" |
71 | checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4" | 122 | checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" |
123 | |||
124 | [[package]] | ||
125 | name = "cexpr" | ||
126 | version = "0.4.0" | ||
127 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
128 | checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27" | ||
129 | dependencies = [ | ||
130 | "nom", | ||
131 | ] | ||
132 | |||
133 | [[package]] | ||
134 | name = "cfg-expr" | ||
135 | version = "0.11.0" | ||
136 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
137 | checksum = "b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa" | ||
138 | dependencies = [ | ||
139 | "smallvec", | ||
140 | ] | ||
72 | 141 | ||
73 | [[package]] | 142 | [[package]] |
74 | name = "cfg-if" | 143 | name = "cfg-if" |
75 | version = "0.1.10" | 144 | version = "1.0.0" |
145 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
146 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | ||
147 | |||
148 | [[package]] | ||
149 | name = "clang-sys" | ||
150 | version = "1.4.0" | ||
151 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
152 | checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" | ||
153 | dependencies = [ | ||
154 | "glob", | ||
155 | "libc", | ||
156 | "libloading", | ||
157 | ] | ||
158 | |||
159 | [[package]] | ||
160 | name = "clap" | ||
161 | version = "2.34.0" | ||
76 | source = "registry+https://github.com/rust-lang/crates.io-index" | 162 | source = "registry+https://github.com/rust-lang/crates.io-index" |
77 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | 163 | checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" |
164 | dependencies = [ | ||
165 | "ansi_term", | ||
166 | "atty", | ||
167 | "bitflags", | ||
168 | "strsim", | ||
169 | "textwrap", | ||
170 | "unicode-width", | ||
171 | "vec_map", | ||
172 | ] | ||
78 | 173 | ||
79 | [[package]] | 174 | [[package]] |
80 | name = "diaphragm-cairo-renderer" | 175 | name = "diaphragm-cairo-renderer" |
@@ -121,31 +216,38 @@ dependencies = [ | |||
121 | ] | 216 | ] |
122 | 217 | ||
123 | [[package]] | 218 | [[package]] |
124 | name = "either" | 219 | name = "env_logger" |
125 | version = "1.6.1" | 220 | version = "0.8.4" |
126 | source = "registry+https://github.com/rust-lang/crates.io-index" | 221 | source = "registry+https://github.com/rust-lang/crates.io-index" |
127 | checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" | 222 | checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" |
223 | dependencies = [ | ||
224 | "atty", | ||
225 | "humantime", | ||
226 | "log", | ||
227 | "regex", | ||
228 | "termcolor", | ||
229 | ] | ||
128 | 230 | ||
129 | [[package]] | 231 | [[package]] |
130 | name = "futures-channel" | 232 | name = "futures-channel" |
131 | version = "0.3.8" | 233 | version = "0.3.25" |
132 | source = "registry+https://github.com/rust-lang/crates.io-index" | 234 | source = "registry+https://github.com/rust-lang/crates.io-index" |
133 | checksum = "4b7109687aa4e177ef6fe84553af6280ef2778bdb7783ba44c9dc3399110fe64" | 235 | checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" |
134 | dependencies = [ | 236 | dependencies = [ |
135 | "futures-core", | 237 | "futures-core", |
136 | ] | 238 | ] |
137 | 239 | ||
138 | [[package]] | 240 | [[package]] |
139 | name = "futures-core" | 241 | name = "futures-core" |
140 | version = "0.3.8" | 242 | version = "0.3.25" |
141 | source = "registry+https://github.com/rust-lang/crates.io-index" | 243 | source = "registry+https://github.com/rust-lang/crates.io-index" |
142 | checksum = "847ce131b72ffb13b6109a221da9ad97a64cbe48feb1028356b836b47b8f1748" | 244 | checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" |
143 | 245 | ||
144 | [[package]] | 246 | [[package]] |
145 | name = "futures-executor" | 247 | name = "futures-executor" |
146 | version = "0.3.8" | 248 | version = "0.3.25" |
147 | source = "registry+https://github.com/rust-lang/crates.io-index" | 249 | source = "registry+https://github.com/rust-lang/crates.io-index" |
148 | checksum = "4caa2b2b68b880003057c1dd49f1ed937e38f22fcf6c212188a121f08cf40a65" | 250 | checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" |
149 | dependencies = [ | 251 | dependencies = [ |
150 | "futures-core", | 252 | "futures-core", |
151 | "futures-task", | 253 | "futures-task", |
@@ -153,12 +255,17 @@ dependencies = [ | |||
153 | ] | 255 | ] |
154 | 256 | ||
155 | [[package]] | 257 | [[package]] |
258 | name = "futures-io" | ||
259 | version = "0.3.25" | ||
260 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
261 | checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" | ||
262 | |||
263 | [[package]] | ||
156 | name = "futures-macro" | 264 | name = "futures-macro" |
157 | version = "0.3.8" | 265 | version = "0.3.25" |
158 | source = "registry+https://github.com/rust-lang/crates.io-index" | 266 | source = "registry+https://github.com/rust-lang/crates.io-index" |
159 | checksum = "77408a692f1f97bcc61dc001d752e00643408fbc922e4d634c655df50d595556" | 267 | checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" |
160 | dependencies = [ | 268 | dependencies = [ |
161 | "proc-macro-hack", | ||
162 | "proc-macro2", | 269 | "proc-macro2", |
163 | "quote", | 270 | "quote", |
164 | "syn", | 271 | "syn", |
@@ -166,34 +273,29 @@ dependencies = [ | |||
166 | 273 | ||
167 | [[package]] | 274 | [[package]] |
168 | name = "futures-task" | 275 | name = "futures-task" |
169 | version = "0.3.8" | 276 | version = "0.3.25" |
170 | source = "registry+https://github.com/rust-lang/crates.io-index" | 277 | source = "registry+https://github.com/rust-lang/crates.io-index" |
171 | checksum = "7c554eb5bf48b2426c4771ab68c6b14468b6e76cc90996f528c3338d761a4d0d" | 278 | checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" |
172 | dependencies = [ | ||
173 | "once_cell", | ||
174 | ] | ||
175 | 279 | ||
176 | [[package]] | 280 | [[package]] |
177 | name = "futures-util" | 281 | name = "futures-util" |
178 | version = "0.3.8" | 282 | version = "0.3.25" |
179 | source = "registry+https://github.com/rust-lang/crates.io-index" | 283 | source = "registry+https://github.com/rust-lang/crates.io-index" |
180 | checksum = "d304cff4a7b99cfb7986f7d43fbe93d175e72e704a8860787cc95e9ffd85cbd2" | 284 | checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" |
181 | dependencies = [ | 285 | dependencies = [ |
182 | "futures-core", | 286 | "futures-core", |
183 | "futures-macro", | 287 | "futures-macro", |
184 | "futures-task", | 288 | "futures-task", |
185 | "pin-project", | 289 | "pin-project-lite", |
186 | "pin-utils", | 290 | "pin-utils", |
187 | "proc-macro-hack", | ||
188 | "proc-macro-nested", | ||
189 | "slab", | 291 | "slab", |
190 | ] | 292 | ] |
191 | 293 | ||
192 | [[package]] | 294 | [[package]] |
193 | name = "getrandom" | 295 | name = "getrandom" |
194 | version = "0.1.15" | 296 | version = "0.1.16" |
195 | source = "registry+https://github.com/rust-lang/crates.io-index" | 297 | source = "registry+https://github.com/rust-lang/crates.io-index" |
196 | checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6" | 298 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" |
197 | dependencies = [ | 299 | dependencies = [ |
198 | "cfg-if", | 300 | "cfg-if", |
199 | "libc", | 301 | "libc", |
@@ -201,10 +303,43 @@ dependencies = [ | |||
201 | ] | 303 | ] |
202 | 304 | ||
203 | [[package]] | 305 | [[package]] |
306 | name = "gio" | ||
307 | version = "0.16.7" | ||
308 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
309 | checksum = "2a1c84b4534a290a29160ef5c6eff2a9c95833111472e824fc5cb78b513dd092" | ||
310 | dependencies = [ | ||
311 | "bitflags", | ||
312 | "futures-channel", | ||
313 | "futures-core", | ||
314 | "futures-io", | ||
315 | "futures-util", | ||
316 | "gio-sys", | ||
317 | "glib", | ||
318 | "libc", | ||
319 | "once_cell", | ||
320 | "pin-project-lite", | ||
321 | "smallvec", | ||
322 | "thiserror", | ||
323 | ] | ||
324 | |||
325 | [[package]] | ||
326 | name = "gio-sys" | ||
327 | version = "0.16.3" | ||
328 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
329 | checksum = "e9b693b8e39d042a95547fc258a7b07349b1f0b48f4b2fa3108ba3c51c0b5229" | ||
330 | dependencies = [ | ||
331 | "glib-sys", | ||
332 | "gobject-sys", | ||
333 | "libc", | ||
334 | "system-deps", | ||
335 | "winapi", | ||
336 | ] | ||
337 | |||
338 | [[package]] | ||
204 | name = "glib" | 339 | name = "glib" |
205 | version = "0.10.3" | 340 | version = "0.16.7" |
206 | source = "registry+https://github.com/rust-lang/crates.io-index" | 341 | source = "registry+https://github.com/rust-lang/crates.io-index" |
207 | checksum = "0c685013b7515e668f1b57a165b009d4d28cb139a8a989bbd699c10dad29d0c5" | 342 | checksum = "ddd4df61a866ed7259d6189b8bcb1464989a77f1d85d25d002279bbe9dd38b2f" |
208 | dependencies = [ | 343 | dependencies = [ |
209 | "bitflags", | 344 | "bitflags", |
210 | "futures-channel", | 345 | "futures-channel", |
@@ -212,22 +347,24 @@ dependencies = [ | |||
212 | "futures-executor", | 347 | "futures-executor", |
213 | "futures-task", | 348 | "futures-task", |
214 | "futures-util", | 349 | "futures-util", |
350 | "gio-sys", | ||
215 | "glib-macros", | 351 | "glib-macros", |
216 | "glib-sys", | 352 | "glib-sys", |
217 | "gobject-sys", | 353 | "gobject-sys", |
218 | "libc", | 354 | "libc", |
219 | "once_cell", | 355 | "once_cell", |
356 | "smallvec", | ||
357 | "thiserror", | ||
220 | ] | 358 | ] |
221 | 359 | ||
222 | [[package]] | 360 | [[package]] |
223 | name = "glib-macros" | 361 | name = "glib-macros" |
224 | version = "0.10.1" | 362 | version = "0.16.3" |
225 | source = "registry+https://github.com/rust-lang/crates.io-index" | 363 | source = "registry+https://github.com/rust-lang/crates.io-index" |
226 | checksum = "41486a26d1366a8032b160b59065a59fb528530a46a49f627e7048fb8c064039" | 364 | checksum = "e084807350b01348b6d9dbabb724d1a0bb987f47a2c85de200e98e12e30733bf" |
227 | dependencies = [ | 365 | dependencies = [ |
228 | "anyhow", | 366 | "anyhow", |
229 | "heck", | 367 | "heck", |
230 | "itertools", | ||
231 | "proc-macro-crate", | 368 | "proc-macro-crate", |
232 | "proc-macro-error", | 369 | "proc-macro-error", |
233 | "proc-macro2", | 370 | "proc-macro2", |
@@ -237,19 +374,25 @@ dependencies = [ | |||
237 | 374 | ||
238 | [[package]] | 375 | [[package]] |
239 | name = "glib-sys" | 376 | name = "glib-sys" |
240 | version = "0.10.1" | 377 | version = "0.16.3" |
241 | source = "registry+https://github.com/rust-lang/crates.io-index" | 378 | source = "registry+https://github.com/rust-lang/crates.io-index" |
242 | checksum = "c7e9b997a66e9a23d073f2b1abb4dbfc3925e0b8952f67efd8d9b6e168e4cdc1" | 379 | checksum = "c61a4f46316d06bfa33a7ac22df6f0524c8be58e3db2d9ca99ccb1f357b62a65" |
243 | dependencies = [ | 380 | dependencies = [ |
244 | "libc", | 381 | "libc", |
245 | "system-deps", | 382 | "system-deps", |
246 | ] | 383 | ] |
247 | 384 | ||
248 | [[package]] | 385 | [[package]] |
386 | name = "glob" | ||
387 | version = "0.3.0" | ||
388 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
389 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | ||
390 | |||
391 | [[package]] | ||
249 | name = "gobject-sys" | 392 | name = "gobject-sys" |
250 | version = "0.10.0" | 393 | version = "0.16.3" |
251 | source = "registry+https://github.com/rust-lang/crates.io-index" | 394 | source = "registry+https://github.com/rust-lang/crates.io-index" |
252 | checksum = "952133b60c318a62bf82ee75b93acc7e84028a093e06b9e27981c2b6fe68218c" | 395 | checksum = "3520bb9c07ae2a12c7f2fbb24d4efc11231c8146a86956413fb1a79bb760a0f1" |
253 | dependencies = [ | 396 | dependencies = [ |
254 | "glib-sys", | 397 | "glib-sys", |
255 | "libc", | 398 | "libc", |
@@ -258,39 +401,58 @@ dependencies = [ | |||
258 | 401 | ||
259 | [[package]] | 402 | [[package]] |
260 | name = "heck" | 403 | name = "heck" |
261 | version = "0.3.2" | 404 | version = "0.4.0" |
262 | source = "registry+https://github.com/rust-lang/crates.io-index" | 405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
263 | checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac" | 406 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" |
264 | dependencies = [ | ||
265 | "unicode-segmentation", | ||
266 | ] | ||
267 | 407 | ||
268 | [[package]] | 408 | [[package]] |
269 | name = "itertools" | 409 | name = "hermit-abi" |
270 | version = "0.9.0" | 410 | version = "0.1.19" |
271 | source = "registry+https://github.com/rust-lang/crates.io-index" | 411 | source = "registry+https://github.com/rust-lang/crates.io-index" |
272 | checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" | 412 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" |
273 | dependencies = [ | 413 | dependencies = [ |
274 | "either", | 414 | "libc", |
275 | ] | 415 | ] |
276 | 416 | ||
277 | [[package]] | 417 | [[package]] |
418 | name = "humantime" | ||
419 | version = "2.1.0" | ||
420 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
421 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" | ||
422 | |||
423 | [[package]] | ||
278 | name = "lazy_static" | 424 | name = "lazy_static" |
279 | version = "1.4.0" | 425 | version = "1.4.0" |
280 | source = "registry+https://github.com/rust-lang/crates.io-index" | 426 | source = "registry+https://github.com/rust-lang/crates.io-index" |
281 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | 427 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
282 | 428 | ||
283 | [[package]] | 429 | [[package]] |
430 | name = "lazycell" | ||
431 | version = "1.3.0" | ||
432 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
433 | checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" | ||
434 | |||
435 | [[package]] | ||
284 | name = "libc" | 436 | name = "libc" |
285 | version = "0.2.81" | 437 | version = "0.2.139" |
438 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
439 | checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" | ||
440 | |||
441 | [[package]] | ||
442 | name = "libloading" | ||
443 | version = "0.7.4" | ||
286 | source = "registry+https://github.com/rust-lang/crates.io-index" | 444 | source = "registry+https://github.com/rust-lang/crates.io-index" |
287 | checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb" | 445 | checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" |
446 | dependencies = [ | ||
447 | "cfg-if", | ||
448 | "winapi", | ||
449 | ] | ||
288 | 450 | ||
289 | [[package]] | 451 | [[package]] |
290 | name = "log" | 452 | name = "log" |
291 | version = "0.4.11" | 453 | version = "0.4.17" |
292 | source = "registry+https://github.com/rust-lang/crates.io-index" | 454 | source = "registry+https://github.com/rust-lang/crates.io-index" |
293 | checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" | 455 | checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" |
294 | dependencies = [ | 456 | dependencies = [ |
295 | "cfg-if", | 457 | "cfg-if", |
296 | ] | 458 | ] |
@@ -328,19 +490,29 @@ dependencies = [ | |||
328 | ] | 490 | ] |
329 | 491 | ||
330 | [[package]] | 492 | [[package]] |
493 | name = "nom" | ||
494 | version = "5.1.2" | ||
495 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
496 | checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" | ||
497 | dependencies = [ | ||
498 | "memchr", | ||
499 | "version_check", | ||
500 | ] | ||
501 | |||
502 | [[package]] | ||
331 | name = "num-traits" | 503 | name = "num-traits" |
332 | version = "0.2.14" | 504 | version = "0.2.15" |
333 | source = "registry+https://github.com/rust-lang/crates.io-index" | 505 | source = "registry+https://github.com/rust-lang/crates.io-index" |
334 | checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" | 506 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" |
335 | dependencies = [ | 507 | dependencies = [ |
336 | "autocfg", | 508 | "autocfg", |
337 | ] | 509 | ] |
338 | 510 | ||
339 | [[package]] | 511 | [[package]] |
340 | name = "once_cell" | 512 | name = "once_cell" |
341 | version = "1.5.2" | 513 | version = "1.16.0" |
342 | source = "registry+https://github.com/rust-lang/crates.io-index" | 514 | source = "registry+https://github.com/rust-lang/crates.io-index" |
343 | checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0" | 515 | checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" |
344 | 516 | ||
345 | [[package]] | 517 | [[package]] |
346 | name = "palette" | 518 | name = "palette" |
@@ -368,14 +540,13 @@ dependencies = [ | |||
368 | 540 | ||
369 | [[package]] | 541 | [[package]] |
370 | name = "pango" | 542 | name = "pango" |
371 | version = "0.9.1" | 543 | version = "0.16.5" |
372 | source = "registry+https://github.com/rust-lang/crates.io-index" | 544 | source = "registry+https://github.com/rust-lang/crates.io-index" |
373 | checksum = "9937068580bebd8ced19975938573803273ccbcbd598c58d4906efd4ac87c438" | 545 | checksum = "cdff66b271861037b89d028656184059e03b0b6ccb36003820be19f7200b1e94" |
374 | dependencies = [ | 546 | dependencies = [ |
375 | "bitflags", | 547 | "bitflags", |
548 | "gio", | ||
376 | "glib", | 549 | "glib", |
377 | "glib-sys", | ||
378 | "gobject-sys", | ||
379 | "libc", | 550 | "libc", |
380 | "once_cell", | 551 | "once_cell", |
381 | "pango-sys", | 552 | "pango-sys", |
@@ -383,9 +554,9 @@ dependencies = [ | |||
383 | 554 | ||
384 | [[package]] | 555 | [[package]] |
385 | name = "pango-sys" | 556 | name = "pango-sys" |
386 | version = "0.10.0" | 557 | version = "0.16.3" |
387 | source = "registry+https://github.com/rust-lang/crates.io-index" | 558 | source = "registry+https://github.com/rust-lang/crates.io-index" |
388 | checksum = "24d2650c8b62d116c020abd0cea26a4ed96526afda89b1c4ea567131fdefc890" | 559 | checksum = "9e134909a9a293e04d2cc31928aa95679c5e4df954d0b85483159bd20d8f047f" |
389 | dependencies = [ | 560 | dependencies = [ |
390 | "glib-sys", | 561 | "glib-sys", |
391 | "gobject-sys", | 562 | "gobject-sys", |
@@ -395,27 +566,23 @@ dependencies = [ | |||
395 | 566 | ||
396 | [[package]] | 567 | [[package]] |
397 | name = "pangocairo" | 568 | name = "pangocairo" |
398 | version = "0.10.0" | 569 | version = "0.16.3" |
399 | source = "registry+https://github.com/rust-lang/crates.io-index" | 570 | source = "registry+https://github.com/rust-lang/crates.io-index" |
400 | checksum = "00f5ae67a05a5e023f09f64e9a71c845274d4b82dedee237b70425811885e883" | 571 | checksum = "16ad2ec87789371b551fd2367c10aa37060412ffd3e60abd99491b21b93a3f9b" |
401 | dependencies = [ | 572 | dependencies = [ |
402 | "bitflags", | 573 | "bitflags", |
403 | "cairo-rs", | 574 | "cairo-rs", |
404 | "cairo-sys-rs", | ||
405 | "glib", | 575 | "glib", |
406 | "glib-sys", | ||
407 | "gobject-sys", | ||
408 | "libc", | 576 | "libc", |
409 | "pango", | 577 | "pango", |
410 | "pango-sys", | ||
411 | "pangocairo-sys", | 578 | "pangocairo-sys", |
412 | ] | 579 | ] |
413 | 580 | ||
414 | [[package]] | 581 | [[package]] |
415 | name = "pangocairo-sys" | 582 | name = "pangocairo-sys" |
416 | version = "0.11.0" | 583 | version = "0.16.3" |
417 | source = "registry+https://github.com/rust-lang/crates.io-index" | 584 | source = "registry+https://github.com/rust-lang/crates.io-index" |
418 | checksum = "94ccc97f698c2f0233b84e5ca676893a1e676785b60eec700b9c0e6dcd0feb98" | 585 | checksum = "848d2df9b7f1a8c7a19d994de443bcbe5d4382610ccb8e64247f932be74fcf76" |
419 | dependencies = [ | 586 | dependencies = [ |
420 | "cairo-sys-rs", | 587 | "cairo-sys-rs", |
421 | "glib-sys", | 588 | "glib-sys", |
@@ -425,6 +592,12 @@ dependencies = [ | |||
425 | ] | 592 | ] |
426 | 593 | ||
427 | [[package]] | 594 | [[package]] |
595 | name = "peeking_take_while" | ||
596 | version = "0.1.2" | ||
597 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
598 | checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" | ||
599 | |||
600 | [[package]] | ||
428 | name = "phf" | 601 | name = "phf" |
429 | version = "0.8.0" | 602 | version = "0.8.0" |
430 | source = "registry+https://github.com/rust-lang/crates.io-index" | 603 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -463,24 +636,10 @@ dependencies = [ | |||
463 | ] | 636 | ] |
464 | 637 | ||
465 | [[package]] | 638 | [[package]] |
466 | name = "pin-project" | 639 | name = "pin-project-lite" |
467 | version = "1.0.2" | 640 | version = "0.2.9" |
468 | source = "registry+https://github.com/rust-lang/crates.io-index" | 641 | source = "registry+https://github.com/rust-lang/crates.io-index" |
469 | checksum = "9ccc2237c2c489783abd8c4c80e5450fc0e98644555b1364da68cc29aa151ca7" | 642 | checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" |
470 | dependencies = [ | ||
471 | "pin-project-internal", | ||
472 | ] | ||
473 | |||
474 | [[package]] | ||
475 | name = "pin-project-internal" | ||
476 | version = "1.0.2" | ||
477 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
478 | checksum = "f8e8d2bf0b23038a4424865103a4df472855692821aab4e4f5c3312d461d9e5f" | ||
479 | dependencies = [ | ||
480 | "proc-macro2", | ||
481 | "quote", | ||
482 | "syn", | ||
483 | ] | ||
484 | 643 | ||
485 | [[package]] | 644 | [[package]] |
486 | name = "pin-utils" | 645 | name = "pin-utils" |
@@ -490,22 +649,24 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" | |||
490 | 649 | ||
491 | [[package]] | 650 | [[package]] |
492 | name = "pkg-config" | 651 | name = "pkg-config" |
493 | version = "0.3.19" | 652 | version = "0.3.26" |
494 | source = "registry+https://github.com/rust-lang/crates.io-index" | 653 | source = "registry+https://github.com/rust-lang/crates.io-index" |
495 | checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" | 654 | checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" |
496 | 655 | ||
497 | [[package]] | 656 | [[package]] |
498 | name = "ppv-lite86" | 657 | name = "ppv-lite86" |
499 | version = "0.2.10" | 658 | version = "0.2.17" |
500 | source = "registry+https://github.com/rust-lang/crates.io-index" | 659 | source = "registry+https://github.com/rust-lang/crates.io-index" |
501 | checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" | 660 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" |
502 | 661 | ||
503 | [[package]] | 662 | [[package]] |
504 | name = "proc-macro-crate" | 663 | name = "proc-macro-crate" |
505 | version = "0.1.5" | 664 | version = "1.2.1" |
506 | source = "registry+https://github.com/rust-lang/crates.io-index" | 665 | source = "registry+https://github.com/rust-lang/crates.io-index" |
507 | checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785" | 666 | checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" |
508 | dependencies = [ | 667 | dependencies = [ |
668 | "once_cell", | ||
669 | "thiserror", | ||
509 | "toml", | 670 | "toml", |
510 | ] | 671 | ] |
511 | 672 | ||
@@ -534,31 +695,19 @@ dependencies = [ | |||
534 | ] | 695 | ] |
535 | 696 | ||
536 | [[package]] | 697 | [[package]] |
537 | name = "proc-macro-hack" | ||
538 | version = "0.5.19" | ||
539 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
540 | checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" | ||
541 | |||
542 | [[package]] | ||
543 | name = "proc-macro-nested" | ||
544 | version = "0.1.6" | ||
545 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
546 | checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a" | ||
547 | |||
548 | [[package]] | ||
549 | name = "proc-macro2" | 698 | name = "proc-macro2" |
550 | version = "1.0.24" | 699 | version = "1.0.49" |
551 | source = "registry+https://github.com/rust-lang/crates.io-index" | 700 | source = "registry+https://github.com/rust-lang/crates.io-index" |
552 | checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" | 701 | checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5" |
553 | dependencies = [ | 702 | dependencies = [ |
554 | "unicode-xid", | 703 | "unicode-ident", |
555 | ] | 704 | ] |
556 | 705 | ||
557 | [[package]] | 706 | [[package]] |
558 | name = "quote" | 707 | name = "quote" |
559 | version = "1.0.8" | 708 | version = "1.0.23" |
560 | source = "registry+https://github.com/rust-lang/crates.io-index" | 709 | source = "registry+https://github.com/rust-lang/crates.io-index" |
561 | checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df" | 710 | checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" |
562 | dependencies = [ | 711 | dependencies = [ |
563 | "proc-macro2", | 712 | "proc-macro2", |
564 | ] | 713 | ] |
@@ -615,6 +764,23 @@ dependencies = [ | |||
615 | ] | 764 | ] |
616 | 765 | ||
617 | [[package]] | 766 | [[package]] |
767 | name = "regex" | ||
768 | version = "1.7.0" | ||
769 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
770 | checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" | ||
771 | dependencies = [ | ||
772 | "aho-corasick", | ||
773 | "memchr", | ||
774 | "regex-syntax", | ||
775 | ] | ||
776 | |||
777 | [[package]] | ||
778 | name = "regex-syntax" | ||
779 | version = "0.6.28" | ||
780 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
781 | checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" | ||
782 | |||
783 | [[package]] | ||
618 | name = "rustc-hash" | 784 | name = "rustc-hash" |
619 | version = "1.1.0" | 785 | version = "1.1.0" |
620 | source = "registry+https://github.com/rust-lang/crates.io-index" | 786 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -622,80 +788,99 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" | |||
622 | 788 | ||
623 | [[package]] | 789 | [[package]] |
624 | name = "serde" | 790 | name = "serde" |
625 | version = "1.0.118" | 791 | version = "1.0.151" |
792 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
793 | checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0" | ||
794 | |||
795 | [[package]] | ||
796 | name = "shlex" | ||
797 | version = "1.1.0" | ||
626 | source = "registry+https://github.com/rust-lang/crates.io-index" | 798 | source = "registry+https://github.com/rust-lang/crates.io-index" |
627 | checksum = "06c64263859d87aa2eb554587e2d23183398d617427327cf2b3d0ed8c69e4800" | 799 | checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" |
628 | 800 | ||
629 | [[package]] | 801 | [[package]] |
630 | name = "siphasher" | 802 | name = "siphasher" |
631 | version = "0.3.3" | 803 | version = "0.3.10" |
632 | source = "registry+https://github.com/rust-lang/crates.io-index" | 804 | source = "registry+https://github.com/rust-lang/crates.io-index" |
633 | checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7" | 805 | checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" |
634 | 806 | ||
635 | [[package]] | 807 | [[package]] |
636 | name = "slab" | 808 | name = "slab" |
637 | version = "0.4.2" | 809 | version = "0.4.7" |
638 | source = "registry+https://github.com/rust-lang/crates.io-index" | 810 | source = "registry+https://github.com/rust-lang/crates.io-index" |
639 | checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" | 811 | checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" |
812 | dependencies = [ | ||
813 | "autocfg", | ||
814 | ] | ||
640 | 815 | ||
641 | [[package]] | 816 | [[package]] |
642 | name = "strum" | 817 | name = "smallvec" |
643 | version = "0.18.0" | 818 | version = "1.10.0" |
644 | source = "registry+https://github.com/rust-lang/crates.io-index" | 819 | source = "registry+https://github.com/rust-lang/crates.io-index" |
645 | checksum = "57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b" | 820 | checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" |
646 | 821 | ||
647 | [[package]] | 822 | [[package]] |
648 | name = "strum_macros" | 823 | name = "strsim" |
649 | version = "0.18.0" | 824 | version = "0.8.0" |
650 | source = "registry+https://github.com/rust-lang/crates.io-index" | 825 | source = "registry+https://github.com/rust-lang/crates.io-index" |
651 | checksum = "87c85aa3f8ea653bfd3ddf25f7ee357ee4d204731f6aa9ad04002306f6e2774c" | 826 | checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" |
652 | dependencies = [ | ||
653 | "heck", | ||
654 | "proc-macro2", | ||
655 | "quote", | ||
656 | "syn", | ||
657 | ] | ||
658 | 827 | ||
659 | [[package]] | 828 | [[package]] |
660 | name = "syn" | 829 | name = "syn" |
661 | version = "1.0.55" | 830 | version = "1.0.107" |
662 | source = "registry+https://github.com/rust-lang/crates.io-index" | 831 | source = "registry+https://github.com/rust-lang/crates.io-index" |
663 | checksum = "a571a711dddd09019ccc628e1b17fe87c59b09d513c06c026877aa708334f37a" | 832 | checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" |
664 | dependencies = [ | 833 | dependencies = [ |
665 | "proc-macro2", | 834 | "proc-macro2", |
666 | "quote", | 835 | "quote", |
667 | "unicode-xid", | 836 | "unicode-ident", |
668 | ] | 837 | ] |
669 | 838 | ||
670 | [[package]] | 839 | [[package]] |
671 | name = "system-deps" | 840 | name = "system-deps" |
672 | version = "1.3.2" | 841 | version = "6.0.3" |
673 | source = "registry+https://github.com/rust-lang/crates.io-index" | 842 | source = "registry+https://github.com/rust-lang/crates.io-index" |
674 | checksum = "0f3ecc17269a19353b3558b313bba738b25d82993e30d62a18406a24aba4649b" | 843 | checksum = "2955b1fe31e1fa2fbd1976b71cc69a606d7d4da16f6de3333d0c92d51419aeff" |
675 | dependencies = [ | 844 | dependencies = [ |
845 | "cfg-expr", | ||
676 | "heck", | 846 | "heck", |
677 | "pkg-config", | 847 | "pkg-config", |
678 | "strum", | ||
679 | "strum_macros", | ||
680 | "thiserror", | ||
681 | "toml", | 848 | "toml", |
682 | "version-compare", | 849 | "version-compare", |
683 | ] | 850 | ] |
684 | 851 | ||
685 | [[package]] | 852 | [[package]] |
853 | name = "termcolor" | ||
854 | version = "1.1.3" | ||
855 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
856 | checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" | ||
857 | dependencies = [ | ||
858 | "winapi-util", | ||
859 | ] | ||
860 | |||
861 | [[package]] | ||
862 | name = "textwrap" | ||
863 | version = "0.11.0" | ||
864 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
865 | checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" | ||
866 | dependencies = [ | ||
867 | "unicode-width", | ||
868 | ] | ||
869 | |||
870 | [[package]] | ||
686 | name = "thiserror" | 871 | name = "thiserror" |
687 | version = "1.0.22" | 872 | version = "1.0.38" |
688 | source = "registry+https://github.com/rust-lang/crates.io-index" | 873 | source = "registry+https://github.com/rust-lang/crates.io-index" |
689 | checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e" | 874 | checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" |
690 | dependencies = [ | 875 | dependencies = [ |
691 | "thiserror-impl", | 876 | "thiserror-impl", |
692 | ] | 877 | ] |
693 | 878 | ||
694 | [[package]] | 879 | [[package]] |
695 | name = "thiserror-impl" | 880 | name = "thiserror-impl" |
696 | version = "1.0.22" | 881 | version = "1.0.38" |
697 | source = "registry+https://github.com/rust-lang/crates.io-index" | 882 | source = "registry+https://github.com/rust-lang/crates.io-index" |
698 | checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56" | 883 | checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" |
699 | dependencies = [ | 884 | dependencies = [ |
700 | "proc-macro2", | 885 | "proc-macro2", |
701 | "quote", | 886 | "quote", |
@@ -704,36 +889,42 @@ dependencies = [ | |||
704 | 889 | ||
705 | [[package]] | 890 | [[package]] |
706 | name = "toml" | 891 | name = "toml" |
707 | version = "0.5.8" | 892 | version = "0.5.10" |
708 | source = "registry+https://github.com/rust-lang/crates.io-index" | 893 | source = "registry+https://github.com/rust-lang/crates.io-index" |
709 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" | 894 | checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f" |
710 | dependencies = [ | 895 | dependencies = [ |
711 | "serde", | 896 | "serde", |
712 | ] | 897 | ] |
713 | 898 | ||
714 | [[package]] | 899 | [[package]] |
715 | name = "unicode-segmentation" | 900 | name = "unicode-ident" |
716 | version = "1.7.1" | 901 | version = "1.0.6" |
717 | source = "registry+https://github.com/rust-lang/crates.io-index" | 902 | source = "registry+https://github.com/rust-lang/crates.io-index" |
718 | checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796" | 903 | checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" |
719 | 904 | ||
720 | [[package]] | 905 | [[package]] |
721 | name = "unicode-xid" | 906 | name = "unicode-width" |
722 | version = "0.2.1" | 907 | version = "0.1.10" |
908 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
909 | checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" | ||
910 | |||
911 | [[package]] | ||
912 | name = "vec_map" | ||
913 | version = "0.8.2" | ||
723 | source = "registry+https://github.com/rust-lang/crates.io-index" | 914 | source = "registry+https://github.com/rust-lang/crates.io-index" |
724 | checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" | 915 | checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" |
725 | 916 | ||
726 | [[package]] | 917 | [[package]] |
727 | name = "version-compare" | 918 | name = "version-compare" |
728 | version = "0.0.10" | 919 | version = "0.1.1" |
729 | source = "registry+https://github.com/rust-lang/crates.io-index" | 920 | source = "registry+https://github.com/rust-lang/crates.io-index" |
730 | checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1" | 921 | checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" |
731 | 922 | ||
732 | [[package]] | 923 | [[package]] |
733 | name = "version_check" | 924 | name = "version_check" |
734 | version = "0.9.2" | 925 | version = "0.9.4" |
735 | source = "registry+https://github.com/rust-lang/crates.io-index" | 926 | source = "registry+https://github.com/rust-lang/crates.io-index" |
736 | checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed" | 927 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" |
737 | 928 | ||
738 | [[package]] | 929 | [[package]] |
739 | name = "wasi" | 930 | name = "wasi" |
@@ -742,10 +933,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
742 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" | 933 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" |
743 | 934 | ||
744 | [[package]] | 935 | [[package]] |
936 | name = "which" | ||
937 | version = "3.1.1" | ||
938 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
939 | checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724" | ||
940 | dependencies = [ | ||
941 | "libc", | ||
942 | ] | ||
943 | |||
944 | [[package]] | ||
945 | name = "winapi" | ||
946 | version = "0.3.9" | ||
947 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
948 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | ||
949 | dependencies = [ | ||
950 | "winapi-i686-pc-windows-gnu", | ||
951 | "winapi-x86_64-pc-windows-gnu", | ||
952 | ] | ||
953 | |||
954 | [[package]] | ||
955 | name = "winapi-i686-pc-windows-gnu" | ||
956 | version = "0.4.0" | ||
957 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
958 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
959 | |||
960 | [[package]] | ||
961 | name = "winapi-util" | ||
962 | version = "0.1.5" | ||
963 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
964 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | ||
965 | dependencies = [ | ||
966 | "winapi", | ||
967 | ] | ||
968 | |||
969 | [[package]] | ||
970 | name = "winapi-x86_64-pc-windows-gnu" | ||
971 | version = "0.4.0" | ||
972 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
973 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
974 | |||
975 | [[package]] | ||
745 | name = "z3" | 976 | name = "z3" |
746 | version = "0.9.0" | 977 | version = "0.11.2" |
747 | source = "registry+https://github.com/rust-lang/crates.io-index" | 978 | source = "registry+https://github.com/rust-lang/crates.io-index" |
748 | checksum = "0c5bdc8c9e19d1b983c5584cd4baf6fbd71f3ca5c83283b9d46ad7780d67bd3b" | 979 | checksum = "d25754b4bf4516a65d0e596ea9c1f0082224bdf20823a37fdd9111fa08d5bf48" |
749 | dependencies = [ | 980 | dependencies = [ |
750 | "lazy_static", | 981 | "lazy_static", |
751 | "log", | 982 | "log", |
@@ -754,6 +985,9 @@ dependencies = [ | |||
754 | 985 | ||
755 | [[package]] | 986 | [[package]] |
756 | name = "z3-sys" | 987 | name = "z3-sys" |
757 | version = "0.6.3" | 988 | version = "0.7.1" |
758 | source = "registry+https://github.com/rust-lang/crates.io-index" | 989 | source = "registry+https://github.com/rust-lang/crates.io-index" |
759 | checksum = "afa18ba5fbd4933e41ffb440c3fd91f91fe9cdb7310cce3ddfb6648563811de0" | 990 | checksum = "1c82dcbc58be4bf1994c520066cb2bd6c3d36aed0fdc57244f34d277421986a6" |
991 | dependencies = [ | ||
992 | "bindgen", | ||
993 | ] | ||