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