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