tzf 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Cargo.lock ADDED
@@ -0,0 +1,1036 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.19.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler"
16
+ version = "1.0.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom",
28
+ "once_cell",
29
+ "version_check",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "anyhow"
34
+ version = "1.0.69"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
37
+
38
+ [[package]]
39
+ name = "arrayvec"
40
+ version = "0.7.2"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
43
+
44
+ [[package]]
45
+ name = "autocfg"
46
+ version = "1.1.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
49
+
50
+ [[package]]
51
+ name = "backtrace"
52
+ version = "0.3.67"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
55
+ dependencies = [
56
+ "addr2line",
57
+ "cc",
58
+ "cfg-if",
59
+ "libc",
60
+ "miniz_oxide",
61
+ "object",
62
+ "rustc-demangle",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "bitflags"
67
+ version = "1.3.2"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
70
+
71
+ [[package]]
72
+ name = "bytemuck"
73
+ version = "1.13.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "c041d3eab048880cb0b86b256447da3f18859a163c3b8d8893f4e6368abe6393"
76
+
77
+ [[package]]
78
+ name = "bytes"
79
+ version = "1.4.0"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
82
+
83
+ [[package]]
84
+ name = "cc"
85
+ version = "1.0.79"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
88
+
89
+ [[package]]
90
+ name = "cfg-if"
91
+ version = "1.0.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
94
+
95
+ [[package]]
96
+ name = "cities-json"
97
+ version = "0.3.4"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "fcdd53149b5ffe4097fd15acaf9c48e43940f186d420d8910bdc6e435529ce70"
100
+ dependencies = [
101
+ "lazy_static",
102
+ "rand",
103
+ "serde",
104
+ "serde_json",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "clap"
109
+ version = "4.1.6"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "ec0b0588d44d4d63a87dbd75c136c166bbfd9a86a31cb89e09906521c7d3f5e3"
112
+ dependencies = [
113
+ "bitflags",
114
+ "clap_derive",
115
+ "clap_lex",
116
+ "is-terminal",
117
+ "once_cell",
118
+ "strsim",
119
+ "termcolor",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "clap_derive"
124
+ version = "4.1.0"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8"
127
+ dependencies = [
128
+ "heck",
129
+ "proc-macro-error",
130
+ "proc-macro2",
131
+ "quote",
132
+ "syn",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "clap_lex"
137
+ version = "0.3.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade"
140
+ dependencies = [
141
+ "os_str_bytes",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "cpp_demangle"
146
+ version = "0.4.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "b446fd40bcc17eddd6a4a78f24315eb90afdb3334999ddfd4909985c47722442"
149
+ dependencies = [
150
+ "cfg-if",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "debugid"
155
+ version = "0.8.0"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
158
+ dependencies = [
159
+ "uuid",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "either"
164
+ version = "1.8.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
167
+
168
+ [[package]]
169
+ name = "errno"
170
+ version = "0.2.8"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
173
+ dependencies = [
174
+ "errno-dragonfly",
175
+ "libc",
176
+ "winapi",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "errno-dragonfly"
181
+ version = "0.1.2"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
184
+ dependencies = [
185
+ "cc",
186
+ "libc",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "fastrand"
191
+ version = "1.9.0"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
194
+ dependencies = [
195
+ "instant",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "findshlibs"
200
+ version = "0.10.2"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
203
+ dependencies = [
204
+ "cc",
205
+ "lazy_static",
206
+ "libc",
207
+ "winapi",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "fixedbitset"
212
+ version = "0.4.2"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
215
+
216
+ [[package]]
217
+ name = "float_next_after"
218
+ version = "0.1.5"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "4fc612c5837986b7104a87a0df74a5460931f1c5274be12f8d0f40aa2f30d632"
221
+ dependencies = [
222
+ "num-traits",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "geometry-rs"
227
+ version = "0.1.2"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "c623c811aed432757098db05e02cae0975900b73ff574277ba3e580890d9c6f1"
230
+ dependencies = [
231
+ "float_next_after",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "getrandom"
236
+ version = "0.2.8"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
239
+ dependencies = [
240
+ "cfg-if",
241
+ "libc",
242
+ "wasi",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "gimli"
247
+ version = "0.27.2"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
250
+
251
+ [[package]]
252
+ name = "hashbrown"
253
+ version = "0.12.3"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
256
+
257
+ [[package]]
258
+ name = "heck"
259
+ version = "0.4.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
262
+
263
+ [[package]]
264
+ name = "hermit-abi"
265
+ version = "0.3.1"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
268
+
269
+ [[package]]
270
+ name = "indexmap"
271
+ version = "1.9.2"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
274
+ dependencies = [
275
+ "autocfg",
276
+ "hashbrown",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "inferno"
281
+ version = "0.11.15"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "2fb7c1b80a1dfa604bb4a649a5c5aeef3d913f7c520cb42b40e534e8a61bcdfc"
284
+ dependencies = [
285
+ "ahash",
286
+ "indexmap",
287
+ "is-terminal",
288
+ "itoa",
289
+ "log",
290
+ "num-format",
291
+ "once_cell",
292
+ "quick-xml",
293
+ "rgb",
294
+ "str_stack",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "instant"
299
+ version = "0.1.12"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
302
+ dependencies = [
303
+ "cfg-if",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "io-lifetimes"
308
+ version = "1.0.5"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
311
+ dependencies = [
312
+ "libc",
313
+ "windows-sys",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "is-terminal"
318
+ version = "0.4.3"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
321
+ dependencies = [
322
+ "hermit-abi",
323
+ "io-lifetimes",
324
+ "rustix",
325
+ "windows-sys",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "itertools"
330
+ version = "0.10.5"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
333
+ dependencies = [
334
+ "either",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "itoa"
339
+ version = "1.0.5"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
342
+
343
+ [[package]]
344
+ name = "lazy_static"
345
+ version = "1.4.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
348
+
349
+ [[package]]
350
+ name = "libc"
351
+ version = "0.2.139"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
354
+
355
+ [[package]]
356
+ name = "linux-raw-sys"
357
+ version = "0.1.4"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
360
+
361
+ [[package]]
362
+ name = "lock_api"
363
+ version = "0.4.9"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
366
+ dependencies = [
367
+ "autocfg",
368
+ "scopeguard",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "log"
373
+ version = "0.4.17"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
376
+ dependencies = [
377
+ "cfg-if",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "memchr"
382
+ version = "2.5.0"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
385
+
386
+ [[package]]
387
+ name = "memmap2"
388
+ version = "0.5.9"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "2af2c65375e552a67fe3829ca63e8a7c27a378a62824594f43b2851d682b5ec2"
391
+ dependencies = [
392
+ "libc",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "miniz_oxide"
397
+ version = "0.6.2"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
400
+ dependencies = [
401
+ "adler",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "multimap"
406
+ version = "0.8.3"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
409
+
410
+ [[package]]
411
+ name = "nix"
412
+ version = "0.24.3"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
415
+ dependencies = [
416
+ "bitflags",
417
+ "cfg-if",
418
+ "libc",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "num-format"
423
+ version = "0.4.4"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
426
+ dependencies = [
427
+ "arrayvec",
428
+ "itoa",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "num-traits"
433
+ version = "0.2.15"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
436
+ dependencies = [
437
+ "autocfg",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "object"
442
+ version = "0.30.3"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
445
+ dependencies = [
446
+ "memchr",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "once_cell"
451
+ version = "1.17.1"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
454
+
455
+ [[package]]
456
+ name = "os_str_bytes"
457
+ version = "6.4.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
460
+
461
+ [[package]]
462
+ name = "parking_lot"
463
+ version = "0.12.1"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
466
+ dependencies = [
467
+ "lock_api",
468
+ "parking_lot_core",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "parking_lot_core"
473
+ version = "0.9.7"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
476
+ dependencies = [
477
+ "cfg-if",
478
+ "libc",
479
+ "redox_syscall",
480
+ "smallvec",
481
+ "windows-sys",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "petgraph"
486
+ version = "0.6.3"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
489
+ dependencies = [
490
+ "fixedbitset",
491
+ "indexmap",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "pprof"
496
+ version = "0.11.0"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "e20150f965e0e4c925982b9356da71c84bcd56cb66ef4e894825837cbcf6613e"
499
+ dependencies = [
500
+ "backtrace",
501
+ "cfg-if",
502
+ "findshlibs",
503
+ "inferno",
504
+ "libc",
505
+ "log",
506
+ "nix",
507
+ "once_cell",
508
+ "parking_lot",
509
+ "smallvec",
510
+ "symbolic-demangle",
511
+ "tempfile",
512
+ "thiserror",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "ppv-lite86"
517
+ version = "0.2.17"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
520
+
521
+ [[package]]
522
+ name = "prettyplease"
523
+ version = "0.1.23"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78"
526
+ dependencies = [
527
+ "proc-macro2",
528
+ "syn",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "proc-macro-error"
533
+ version = "1.0.4"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
536
+ dependencies = [
537
+ "proc-macro-error-attr",
538
+ "proc-macro2",
539
+ "quote",
540
+ "syn",
541
+ "version_check",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "proc-macro-error-attr"
546
+ version = "1.0.4"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
549
+ dependencies = [
550
+ "proc-macro2",
551
+ "quote",
552
+ "version_check",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "proc-macro2"
557
+ version = "1.0.51"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
560
+ dependencies = [
561
+ "unicode-ident",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "prost"
566
+ version = "0.11.6"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
569
+ dependencies = [
570
+ "bytes",
571
+ "prost-derive",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "prost-build"
576
+ version = "0.11.6"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
579
+ dependencies = [
580
+ "bytes",
581
+ "heck",
582
+ "itertools",
583
+ "lazy_static",
584
+ "log",
585
+ "multimap",
586
+ "petgraph",
587
+ "prettyplease",
588
+ "prost",
589
+ "prost-types",
590
+ "regex",
591
+ "syn",
592
+ "tempfile",
593
+ "which",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "prost-derive"
598
+ version = "0.11.6"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
601
+ dependencies = [
602
+ "anyhow",
603
+ "itertools",
604
+ "proc-macro2",
605
+ "quote",
606
+ "syn",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "prost-types"
611
+ version = "0.11.6"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
614
+ dependencies = [
615
+ "bytes",
616
+ "prost",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "quick-xml"
621
+ version = "0.26.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
624
+ dependencies = [
625
+ "memchr",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "quote"
630
+ version = "1.0.23"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
633
+ dependencies = [
634
+ "proc-macro2",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "rand"
639
+ version = "0.8.5"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
642
+ dependencies = [
643
+ "libc",
644
+ "rand_chacha",
645
+ "rand_core",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "rand_chacha"
650
+ version = "0.3.1"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
653
+ dependencies = [
654
+ "ppv-lite86",
655
+ "rand_core",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "rand_core"
660
+ version = "0.6.4"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
663
+ dependencies = [
664
+ "getrandom",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "redox_syscall"
669
+ version = "0.2.16"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
672
+ dependencies = [
673
+ "bitflags",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "regex"
678
+ version = "1.7.1"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
681
+ dependencies = [
682
+ "regex-syntax",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "regex-syntax"
687
+ version = "0.6.28"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
690
+
691
+ [[package]]
692
+ name = "remove_dir_all"
693
+ version = "0.5.3"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
696
+ dependencies = [
697
+ "winapi",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "rgb"
702
+ version = "0.8.36"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59"
705
+ dependencies = [
706
+ "bytemuck",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "rustc-demangle"
711
+ version = "0.1.21"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
714
+
715
+ [[package]]
716
+ name = "rustix"
717
+ version = "0.36.8"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
720
+ dependencies = [
721
+ "bitflags",
722
+ "errno",
723
+ "io-lifetimes",
724
+ "libc",
725
+ "linux-raw-sys",
726
+ "windows-sys",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "ryu"
731
+ version = "1.0.12"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
734
+
735
+ [[package]]
736
+ name = "scopeguard"
737
+ version = "1.1.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
740
+
741
+ [[package]]
742
+ name = "serde"
743
+ version = "1.0.152"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
746
+ dependencies = [
747
+ "serde_derive",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "serde_derive"
752
+ version = "1.0.152"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
755
+ dependencies = [
756
+ "proc-macro2",
757
+ "quote",
758
+ "syn",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "serde_json"
763
+ version = "1.0.93"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
766
+ dependencies = [
767
+ "itoa",
768
+ "ryu",
769
+ "serde",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "smallvec"
774
+ version = "1.10.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
777
+
778
+ [[package]]
779
+ name = "stable_deref_trait"
780
+ version = "1.2.0"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
783
+
784
+ [[package]]
785
+ name = "str_stack"
786
+ version = "0.1.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
789
+
790
+ [[package]]
791
+ name = "strsim"
792
+ version = "0.10.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
795
+
796
+ [[package]]
797
+ name = "symbolic-common"
798
+ version = "10.2.1"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "1b55cdc318ede251d0957f07afe5fed912119b8c1bc5a7804151826db999e737"
801
+ dependencies = [
802
+ "debugid",
803
+ "memmap2",
804
+ "stable_deref_trait",
805
+ "uuid",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "symbolic-demangle"
810
+ version = "10.2.1"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "79be897be8a483a81fff6a3a4e195b4ac838ef73ca42d348b3f722da9902e489"
813
+ dependencies = [
814
+ "cpp_demangle",
815
+ "rustc-demangle",
816
+ "symbolic-common",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "syn"
821
+ version = "1.0.107"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
824
+ dependencies = [
825
+ "proc-macro2",
826
+ "quote",
827
+ "unicode-ident",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "tempfile"
832
+ version = "3.3.0"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
835
+ dependencies = [
836
+ "cfg-if",
837
+ "fastrand",
838
+ "libc",
839
+ "redox_syscall",
840
+ "remove_dir_all",
841
+ "winapi",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "termcolor"
846
+ version = "1.2.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
849
+ dependencies = [
850
+ "winapi-util",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "thiserror"
855
+ version = "1.0.38"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
858
+ dependencies = [
859
+ "thiserror-impl",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "thiserror-impl"
864
+ version = "1.0.38"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
867
+ dependencies = [
868
+ "proc-macro2",
869
+ "quote",
870
+ "syn",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "tzf"
875
+ version = "0.1.0"
876
+ dependencies = [
877
+ "lazy_static",
878
+ "tzf-rs",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "tzf-rel"
883
+ version = "0.0.2022-g1"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "9740d99d1cf246ba7848086fdbebc8ce6adc64715e6e5edd4695985f8053064b"
886
+
887
+ [[package]]
888
+ name = "tzf-rs"
889
+ version = "0.3.0"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "696d8f5abef38f16dc4bb184c45aacc19c203dea901ae7beff6835d0eaac735f"
892
+ dependencies = [
893
+ "anyhow",
894
+ "bytes",
895
+ "cities-json",
896
+ "clap",
897
+ "geometry-rs",
898
+ "lazy_static",
899
+ "pprof",
900
+ "prost",
901
+ "prost-build",
902
+ "rand",
903
+ "tzf-rel",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "unicode-ident"
908
+ version = "1.0.6"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
911
+
912
+ [[package]]
913
+ name = "uuid"
914
+ version = "1.3.0"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
917
+
918
+ [[package]]
919
+ name = "version_check"
920
+ version = "0.9.4"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
923
+
924
+ [[package]]
925
+ name = "wasi"
926
+ version = "0.11.0+wasi-snapshot-preview1"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
929
+
930
+ [[package]]
931
+ name = "which"
932
+ version = "4.4.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
935
+ dependencies = [
936
+ "either",
937
+ "libc",
938
+ "once_cell",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "winapi"
943
+ version = "0.3.9"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
946
+ dependencies = [
947
+ "winapi-i686-pc-windows-gnu",
948
+ "winapi-x86_64-pc-windows-gnu",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "winapi-i686-pc-windows-gnu"
953
+ version = "0.4.0"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
956
+
957
+ [[package]]
958
+ name = "winapi-util"
959
+ version = "0.1.5"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
962
+ dependencies = [
963
+ "winapi",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "winapi-x86_64-pc-windows-gnu"
968
+ version = "0.4.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
971
+
972
+ [[package]]
973
+ name = "windows-sys"
974
+ version = "0.45.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
977
+ dependencies = [
978
+ "windows-targets",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "windows-targets"
983
+ version = "0.42.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
986
+ dependencies = [
987
+ "windows_aarch64_gnullvm",
988
+ "windows_aarch64_msvc",
989
+ "windows_i686_gnu",
990
+ "windows_i686_msvc",
991
+ "windows_x86_64_gnu",
992
+ "windows_x86_64_gnullvm",
993
+ "windows_x86_64_msvc",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "windows_aarch64_gnullvm"
998
+ version = "0.42.1"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
1001
+
1002
+ [[package]]
1003
+ name = "windows_aarch64_msvc"
1004
+ version = "0.42.1"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
1007
+
1008
+ [[package]]
1009
+ name = "windows_i686_gnu"
1010
+ version = "0.42.1"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
1013
+
1014
+ [[package]]
1015
+ name = "windows_i686_msvc"
1016
+ version = "0.42.1"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
1019
+
1020
+ [[package]]
1021
+ name = "windows_x86_64_gnu"
1022
+ version = "0.42.1"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
1025
+
1026
+ [[package]]
1027
+ name = "windows_x86_64_gnullvm"
1028
+ version = "0.42.1"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
1031
+
1032
+ [[package]]
1033
+ name = "windows_x86_64_msvc"
1034
+ version = "0.42.1"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"