tzf 0.4.4 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +139 -425
- data/README.md +7 -0
- data/ext/tzf/Cargo.toml +1 -1
- data/ext/tzf/src/lib.rs +10 -3
- data/lib/tzf/version.rb +1 -1
- data/tzf.gemspec +9 -8
- metadata +5 -13
- data/.rspec +0 -3
- data/.rubocop.yml +0 -18
- data/CHANGELOG.md +0 -43
- data/CODE_OF_CONDUCT.md +0 -84
- data/Gemfile +0 -13
- data/Gemfile.lock +0 -80
- data/Rakefile +0 -25
- data/ext/tzf/Cargo.lock +0 -1207
data/Cargo.lock
CHANGED
@@ -4,116 +4,50 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "aho-corasick"
|
7
|
-
version = "
|
7
|
+
version = "1.1.3"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
10
10
|
dependencies = [
|
11
11
|
"memchr",
|
12
12
|
]
|
13
13
|
|
14
|
-
[[package]]
|
15
|
-
name = "anstream"
|
16
|
-
version = "0.6.4"
|
17
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44"
|
19
|
-
dependencies = [
|
20
|
-
"anstyle",
|
21
|
-
"anstyle-parse",
|
22
|
-
"anstyle-query",
|
23
|
-
"anstyle-wincon",
|
24
|
-
"colorchoice",
|
25
|
-
"utf8parse",
|
26
|
-
]
|
27
|
-
|
28
|
-
[[package]]
|
29
|
-
name = "anstyle"
|
30
|
-
version = "1.0.0"
|
31
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
32
|
-
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
|
33
|
-
|
34
|
-
[[package]]
|
35
|
-
name = "anstyle-parse"
|
36
|
-
version = "0.2.0"
|
37
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
-
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
|
39
|
-
dependencies = [
|
40
|
-
"utf8parse",
|
41
|
-
]
|
42
|
-
|
43
|
-
[[package]]
|
44
|
-
name = "anstyle-query"
|
45
|
-
version = "1.0.0"
|
46
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
|
48
|
-
dependencies = [
|
49
|
-
"windows-sys 0.48.0",
|
50
|
-
]
|
51
|
-
|
52
|
-
[[package]]
|
53
|
-
name = "anstyle-wincon"
|
54
|
-
version = "3.0.1"
|
55
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
-
checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628"
|
57
|
-
dependencies = [
|
58
|
-
"anstyle",
|
59
|
-
"windows-sys 0.48.0",
|
60
|
-
]
|
61
|
-
|
62
14
|
[[package]]
|
63
15
|
name = "anyhow"
|
64
|
-
version = "1.0.
|
65
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
-
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
|
67
|
-
|
68
|
-
[[package]]
|
69
|
-
name = "autocfg"
|
70
|
-
version = "1.1.0"
|
16
|
+
version = "1.0.82"
|
71
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
-
checksum = "
|
18
|
+
checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
|
73
19
|
|
74
20
|
[[package]]
|
75
21
|
name = "bindgen"
|
76
|
-
version = "0.
|
22
|
+
version = "0.69.4"
|
77
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
78
|
-
checksum = "
|
24
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
79
25
|
dependencies = [
|
80
|
-
"bitflags
|
26
|
+
"bitflags",
|
81
27
|
"cexpr",
|
82
28
|
"clang-sys",
|
29
|
+
"itertools",
|
83
30
|
"lazy_static",
|
84
31
|
"lazycell",
|
85
|
-
"peeking_take_while",
|
86
32
|
"proc-macro2",
|
87
33
|
"quote",
|
88
34
|
"regex",
|
89
35
|
"rustc-hash",
|
90
36
|
"shlex",
|
91
|
-
"syn
|
37
|
+
"syn",
|
92
38
|
]
|
93
39
|
|
94
40
|
[[package]]
|
95
41
|
name = "bitflags"
|
96
|
-
version = "
|
97
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
98
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
99
|
-
|
100
|
-
[[package]]
|
101
|
-
name = "bitflags"
|
102
|
-
version = "2.4.0"
|
42
|
+
version = "2.5.0"
|
103
43
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
104
|
-
checksum = "
|
44
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
105
45
|
|
106
46
|
[[package]]
|
107
47
|
name = "bytes"
|
108
|
-
version = "1.
|
109
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
110
|
-
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
111
|
-
|
112
|
-
[[package]]
|
113
|
-
name = "cc"
|
114
|
-
version = "1.0.79"
|
48
|
+
version = "1.6.0"
|
115
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
-
checksum = "
|
50
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
117
51
|
|
118
52
|
[[package]]
|
119
53
|
name = "cexpr"
|
@@ -132,96 +66,42 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
132
66
|
|
133
67
|
[[package]]
|
134
68
|
name = "clang-sys"
|
135
|
-
version = "1.
|
69
|
+
version = "1.7.0"
|
136
70
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
-
checksum = "
|
71
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
138
72
|
dependencies = [
|
139
73
|
"glob",
|
140
74
|
"libc",
|
141
75
|
"libloading",
|
142
76
|
]
|
143
77
|
|
144
|
-
[[package]]
|
145
|
-
name = "clap"
|
146
|
-
version = "4.4.6"
|
147
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
148
|
-
checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956"
|
149
|
-
dependencies = [
|
150
|
-
"clap_builder",
|
151
|
-
"clap_derive",
|
152
|
-
]
|
153
|
-
|
154
|
-
[[package]]
|
155
|
-
name = "clap_builder"
|
156
|
-
version = "4.4.6"
|
157
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
158
|
-
checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45"
|
159
|
-
dependencies = [
|
160
|
-
"anstream",
|
161
|
-
"anstyle",
|
162
|
-
"clap_lex",
|
163
|
-
"strsim",
|
164
|
-
]
|
165
|
-
|
166
|
-
[[package]]
|
167
|
-
name = "clap_derive"
|
168
|
-
version = "4.4.2"
|
169
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
170
|
-
checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873"
|
171
|
-
dependencies = [
|
172
|
-
"heck",
|
173
|
-
"proc-macro2",
|
174
|
-
"quote",
|
175
|
-
"syn 2.0.10",
|
176
|
-
]
|
177
|
-
|
178
|
-
[[package]]
|
179
|
-
name = "clap_lex"
|
180
|
-
version = "0.5.0"
|
181
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
-
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
|
183
|
-
|
184
|
-
[[package]]
|
185
|
-
name = "colorchoice"
|
186
|
-
version = "1.0.0"
|
187
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
188
|
-
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
189
|
-
|
190
78
|
[[package]]
|
191
79
|
name = "either"
|
192
|
-
version = "1.
|
80
|
+
version = "1.11.0"
|
193
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
-
checksum = "
|
82
|
+
checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
|
195
83
|
|
196
84
|
[[package]]
|
197
|
-
name = "
|
198
|
-
version = "0.
|
85
|
+
name = "equivalent"
|
86
|
+
version = "1.0.1"
|
199
87
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
-
checksum = "
|
201
|
-
dependencies = [
|
202
|
-
"errno-dragonfly",
|
203
|
-
"libc",
|
204
|
-
"winapi",
|
205
|
-
]
|
88
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
206
89
|
|
207
90
|
[[package]]
|
208
|
-
name = "errno
|
209
|
-
version = "0.
|
91
|
+
name = "errno"
|
92
|
+
version = "0.3.8"
|
210
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
-
checksum = "
|
94
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
212
95
|
dependencies = [
|
213
|
-
"cc",
|
214
96
|
"libc",
|
97
|
+
"windows-sys",
|
215
98
|
]
|
216
99
|
|
217
100
|
[[package]]
|
218
101
|
name = "fastrand"
|
219
|
-
version = "
|
102
|
+
version = "2.0.2"
|
220
103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
-
checksum = "
|
222
|
-
dependencies = [
|
223
|
-
"instant",
|
224
|
-
]
|
104
|
+
checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
|
225
105
|
|
226
106
|
[[package]]
|
227
107
|
name = "fixedbitset"
|
@@ -247,9 +127,9 @@ dependencies = [
|
|
247
127
|
|
248
128
|
[[package]]
|
249
129
|
name = "getrandom"
|
250
|
-
version = "0.2.
|
130
|
+
version = "0.2.14"
|
251
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
252
|
-
checksum = "
|
132
|
+
checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
|
253
133
|
dependencies = [
|
254
134
|
"cfg-if",
|
255
135
|
"libc",
|
@@ -264,57 +144,31 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
264
144
|
|
265
145
|
[[package]]
|
266
146
|
name = "hashbrown"
|
267
|
-
version = "0.
|
147
|
+
version = "0.14.3"
|
268
148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
269
|
-
checksum = "
|
149
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
270
150
|
|
271
151
|
[[package]]
|
272
152
|
name = "heck"
|
273
|
-
version = "0.
|
274
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
276
|
-
|
277
|
-
[[package]]
|
278
|
-
name = "hermit-abi"
|
279
|
-
version = "0.3.1"
|
153
|
+
version = "0.5.0"
|
280
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "
|
155
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
282
156
|
|
283
157
|
[[package]]
|
284
158
|
name = "indexmap"
|
285
|
-
version = "
|
159
|
+
version = "2.2.6"
|
286
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
-
checksum = "
|
161
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
288
162
|
dependencies = [
|
289
|
-
"
|
163
|
+
"equivalent",
|
290
164
|
"hashbrown",
|
291
165
|
]
|
292
166
|
|
293
|
-
[[package]]
|
294
|
-
name = "instant"
|
295
|
-
version = "0.1.12"
|
296
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
298
|
-
dependencies = [
|
299
|
-
"cfg-if",
|
300
|
-
]
|
301
|
-
|
302
|
-
[[package]]
|
303
|
-
name = "io-lifetimes"
|
304
|
-
version = "1.0.9"
|
305
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
-
checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb"
|
307
|
-
dependencies = [
|
308
|
-
"hermit-abi",
|
309
|
-
"libc",
|
310
|
-
"windows-sys 0.45.0",
|
311
|
-
]
|
312
|
-
|
313
167
|
[[package]]
|
314
168
|
name = "itertools"
|
315
|
-
version = "0.
|
169
|
+
version = "0.12.1"
|
316
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
-
checksum = "
|
171
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
318
172
|
dependencies = [
|
319
173
|
"either",
|
320
174
|
]
|
@@ -333,40 +187,37 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
333
187
|
|
334
188
|
[[package]]
|
335
189
|
name = "libc"
|
336
|
-
version = "0.2.
|
190
|
+
version = "0.2.153"
|
337
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
338
|
-
checksum = "
|
192
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
339
193
|
|
340
194
|
[[package]]
|
341
195
|
name = "libloading"
|
342
|
-
version = "0.
|
196
|
+
version = "0.8.3"
|
343
197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
344
|
-
checksum = "
|
198
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
345
199
|
dependencies = [
|
346
200
|
"cfg-if",
|
347
|
-
"
|
201
|
+
"windows-targets",
|
348
202
|
]
|
349
203
|
|
350
204
|
[[package]]
|
351
205
|
name = "linux-raw-sys"
|
352
|
-
version = "0.
|
206
|
+
version = "0.4.13"
|
353
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
-
checksum = "
|
208
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
355
209
|
|
356
210
|
[[package]]
|
357
211
|
name = "log"
|
358
|
-
version = "0.4.
|
212
|
+
version = "0.4.21"
|
359
213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
-
checksum = "
|
361
|
-
dependencies = [
|
362
|
-
"cfg-if",
|
363
|
-
]
|
214
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
364
215
|
|
365
216
|
[[package]]
|
366
217
|
name = "magnus"
|
367
|
-
version = "0.6.
|
218
|
+
version = "0.6.4"
|
368
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
369
|
-
checksum = "
|
220
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
370
221
|
dependencies = [
|
371
222
|
"magnus-macros",
|
372
223
|
"rb-sys",
|
@@ -382,14 +233,14 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
382
233
|
dependencies = [
|
383
234
|
"proc-macro2",
|
384
235
|
"quote",
|
385
|
-
"syn
|
236
|
+
"syn",
|
386
237
|
]
|
387
238
|
|
388
239
|
[[package]]
|
389
240
|
name = "memchr"
|
390
|
-
version = "2.
|
241
|
+
version = "2.7.2"
|
391
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
392
|
-
checksum = "
|
243
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
393
244
|
|
394
245
|
[[package]]
|
395
246
|
name = "minimal-lexical"
|
@@ -399,9 +250,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
399
250
|
|
400
251
|
[[package]]
|
401
252
|
name = "multimap"
|
402
|
-
version = "0.
|
253
|
+
version = "0.10.0"
|
403
254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
-
checksum = "
|
255
|
+
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
405
256
|
|
406
257
|
[[package]]
|
407
258
|
name = "nom"
|
@@ -415,21 +266,15 @@ dependencies = [
|
|
415
266
|
|
416
267
|
[[package]]
|
417
268
|
name = "once_cell"
|
418
|
-
version = "1.
|
269
|
+
version = "1.19.0"
|
419
270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
-
checksum = "
|
421
|
-
|
422
|
-
[[package]]
|
423
|
-
name = "peeking_take_while"
|
424
|
-
version = "0.1.2"
|
425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
-
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
271
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
427
272
|
|
428
273
|
[[package]]
|
429
274
|
name = "petgraph"
|
430
|
-
version = "0.6.
|
275
|
+
version = "0.6.4"
|
431
276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
432
|
-
checksum = "
|
277
|
+
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
433
278
|
dependencies = [
|
434
279
|
"fixedbitset",
|
435
280
|
"indexmap",
|
@@ -449,28 +294,28 @@ checksum = "a2145d14f09d5fc7fe7134b556146599c2929af5b1f1e3a0ecc9d582a9b85e4d"
|
|
449
294
|
|
450
295
|
[[package]]
|
451
296
|
name = "prettyplease"
|
452
|
-
version = "0.
|
297
|
+
version = "0.2.19"
|
453
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
454
|
-
checksum = "
|
299
|
+
checksum = "5ac2cf0f2e4f42b49f5ffd07dae8d746508ef7526c13940e5f524012ae6c6550"
|
455
300
|
dependencies = [
|
456
301
|
"proc-macro2",
|
457
|
-
"syn
|
302
|
+
"syn",
|
458
303
|
]
|
459
304
|
|
460
305
|
[[package]]
|
461
306
|
name = "proc-macro2"
|
462
|
-
version = "1.0.
|
307
|
+
version = "1.0.80"
|
463
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
-
checksum = "
|
309
|
+
checksum = "a56dea16b0a29e94408b9aa5e2940a4eedbd128a1ba20e8f7ae60fd3d465af0e"
|
465
310
|
dependencies = [
|
466
311
|
"unicode-ident",
|
467
312
|
]
|
468
313
|
|
469
314
|
[[package]]
|
470
315
|
name = "prost"
|
471
|
-
version = "0.
|
316
|
+
version = "0.12.4"
|
472
317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
-
checksum = "
|
318
|
+
checksum = "d0f5d036824e4761737860779c906171497f6d55681139d8312388f8fe398922"
|
474
319
|
dependencies = [
|
475
320
|
"bytes",
|
476
321
|
"prost-derive",
|
@@ -478,53 +323,52 @@ dependencies = [
|
|
478
323
|
|
479
324
|
[[package]]
|
480
325
|
name = "prost-build"
|
481
|
-
version = "0.
|
326
|
+
version = "0.12.4"
|
482
327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
-
checksum = "
|
328
|
+
checksum = "80b776a1b2dc779f5ee0641f8ade0125bc1298dd41a9a0c16d8bd57b42d222b1"
|
484
329
|
dependencies = [
|
485
330
|
"bytes",
|
486
331
|
"heck",
|
487
332
|
"itertools",
|
488
|
-
"lazy_static",
|
489
333
|
"log",
|
490
334
|
"multimap",
|
335
|
+
"once_cell",
|
491
336
|
"petgraph",
|
492
337
|
"prettyplease",
|
493
338
|
"prost",
|
494
339
|
"prost-types",
|
495
340
|
"regex",
|
496
|
-
"syn
|
341
|
+
"syn",
|
497
342
|
"tempfile",
|
498
|
-
"which",
|
499
343
|
]
|
500
344
|
|
501
345
|
[[package]]
|
502
346
|
name = "prost-derive"
|
503
|
-
version = "0.
|
347
|
+
version = "0.12.4"
|
504
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
505
|
-
checksum = "
|
349
|
+
checksum = "19de2de2a00075bf566bee3bd4db014b11587e84184d3f7a791bc17f1a8e9e48"
|
506
350
|
dependencies = [
|
507
351
|
"anyhow",
|
508
352
|
"itertools",
|
509
353
|
"proc-macro2",
|
510
354
|
"quote",
|
511
|
-
"syn
|
355
|
+
"syn",
|
512
356
|
]
|
513
357
|
|
514
358
|
[[package]]
|
515
359
|
name = "prost-types"
|
516
|
-
version = "0.
|
360
|
+
version = "0.12.4"
|
517
361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
518
|
-
checksum = "
|
362
|
+
checksum = "3235c33eb02c1f1e212abdbe34c78b264b038fb58ca612664343271e36e55ffe"
|
519
363
|
dependencies = [
|
520
364
|
"prost",
|
521
365
|
]
|
522
366
|
|
523
367
|
[[package]]
|
524
368
|
name = "quote"
|
525
|
-
version = "1.0.
|
369
|
+
version = "1.0.36"
|
526
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
527
|
-
checksum = "
|
371
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
528
372
|
dependencies = [
|
529
373
|
"proc-macro2",
|
530
374
|
]
|
@@ -561,18 +405,18 @@ dependencies = [
|
|
561
405
|
|
562
406
|
[[package]]
|
563
407
|
name = "rb-sys"
|
564
|
-
version = "0.9.
|
408
|
+
version = "0.9.94"
|
565
409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
-
checksum = "
|
410
|
+
checksum = "06dab8dbb0beb0a575a80c4b46355c8ace1f3dc5df60a3109758f205f1061366"
|
567
411
|
dependencies = [
|
568
412
|
"rb-sys-build",
|
569
413
|
]
|
570
414
|
|
571
415
|
[[package]]
|
572
416
|
name = "rb-sys-build"
|
573
|
-
version = "0.9.
|
417
|
+
version = "0.9.94"
|
574
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
575
|
-
checksum = "
|
419
|
+
checksum = "164d44950a42f2ba2f94efdcb650e14764270f84d281352aebb261806da0b2ce"
|
576
420
|
dependencies = [
|
577
421
|
"bindgen",
|
578
422
|
"lazy_static",
|
@@ -580,7 +424,7 @@ dependencies = [
|
|
580
424
|
"quote",
|
581
425
|
"regex",
|
582
426
|
"shell-words",
|
583
|
-
"syn
|
427
|
+
"syn",
|
584
428
|
]
|
585
429
|
|
586
430
|
[[package]]
|
@@ -590,19 +434,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
434
|
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
591
435
|
|
592
436
|
[[package]]
|
593
|
-
name = "
|
594
|
-
version = "
|
437
|
+
name = "regex"
|
438
|
+
version = "1.10.4"
|
595
439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
596
|
-
checksum = "
|
440
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
597
441
|
dependencies = [
|
598
|
-
"
|
442
|
+
"aho-corasick",
|
443
|
+
"memchr",
|
444
|
+
"regex-automata",
|
445
|
+
"regex-syntax",
|
599
446
|
]
|
600
447
|
|
601
448
|
[[package]]
|
602
|
-
name = "regex"
|
603
|
-
version = "
|
449
|
+
name = "regex-automata"
|
450
|
+
version = "0.4.6"
|
604
451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
605
|
-
checksum = "
|
452
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
606
453
|
dependencies = [
|
607
454
|
"aho-corasick",
|
608
455
|
"memchr",
|
@@ -611,9 +458,9 @@ dependencies = [
|
|
611
458
|
|
612
459
|
[[package]]
|
613
460
|
name = "regex-syntax"
|
614
|
-
version = "0.
|
461
|
+
version = "0.8.3"
|
615
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
616
|
-
checksum = "
|
463
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
617
464
|
|
618
465
|
[[package]]
|
619
466
|
name = "rtree_rs"
|
@@ -632,16 +479,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
632
479
|
|
633
480
|
[[package]]
|
634
481
|
name = "rustix"
|
635
|
-
version = "0.
|
482
|
+
version = "0.38.32"
|
636
483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
-
checksum = "
|
484
|
+
checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
|
638
485
|
dependencies = [
|
639
|
-
"bitflags
|
486
|
+
"bitflags",
|
640
487
|
"errno",
|
641
|
-
"io-lifetimes",
|
642
488
|
"libc",
|
643
489
|
"linux-raw-sys",
|
644
|
-
"windows-sys
|
490
|
+
"windows-sys",
|
645
491
|
]
|
646
492
|
|
647
493
|
[[package]]
|
@@ -658,32 +504,15 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
658
504
|
|
659
505
|
[[package]]
|
660
506
|
name = "shlex"
|
661
|
-
version = "1.
|
662
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
-
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
664
|
-
|
665
|
-
[[package]]
|
666
|
-
name = "strsim"
|
667
|
-
version = "0.10.0"
|
668
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
-
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
670
|
-
|
671
|
-
[[package]]
|
672
|
-
name = "syn"
|
673
|
-
version = "1.0.109"
|
507
|
+
version = "1.3.0"
|
674
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
675
|
-
checksum = "
|
676
|
-
dependencies = [
|
677
|
-
"proc-macro2",
|
678
|
-
"quote",
|
679
|
-
"unicode-ident",
|
680
|
-
]
|
509
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
681
510
|
|
682
511
|
[[package]]
|
683
512
|
name = "syn"
|
684
|
-
version = "2.0.
|
513
|
+
version = "2.0.59"
|
685
514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
686
|
-
checksum = "
|
515
|
+
checksum = "4a6531ffc7b071655e4ce2e04bd464c4830bb585a61cabb96cf808f05172615a"
|
687
516
|
dependencies = [
|
688
517
|
"proc-macro2",
|
689
518
|
"quote",
|
@@ -692,15 +521,14 @@ dependencies = [
|
|
692
521
|
|
693
522
|
[[package]]
|
694
523
|
name = "tempfile"
|
695
|
-
version = "3.
|
524
|
+
version = "3.10.1"
|
696
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
697
|
-
checksum = "
|
526
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
698
527
|
dependencies = [
|
699
528
|
"cfg-if",
|
700
529
|
"fastrand",
|
701
|
-
"redox_syscall",
|
702
530
|
"rustix",
|
703
|
-
"windows-sys
|
531
|
+
"windows-sys",
|
704
532
|
]
|
705
533
|
|
706
534
|
[[package]]
|
@@ -714,19 +542,18 @@ dependencies = [
|
|
714
542
|
|
715
543
|
[[package]]
|
716
544
|
name = "tzf-rel"
|
717
|
-
version = "0.0.
|
545
|
+
version = "0.0.2024-a"
|
718
546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
-
checksum = "
|
547
|
+
checksum = "3da647db441b5aad0454a41573a267edb82b67b82ca3b6a65d11c39ebce74a99"
|
720
548
|
|
721
549
|
[[package]]
|
722
550
|
name = "tzf-rs"
|
723
|
-
version = "0.4.
|
551
|
+
version = "0.4.8"
|
724
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
-
checksum = "
|
553
|
+
checksum = "7f10765037fa5376d5fc3603d3c898d1f579bf5a59b87594b9f6b2b3f0b9c14c"
|
726
554
|
dependencies = [
|
727
555
|
"anyhow",
|
728
556
|
"bytes",
|
729
|
-
"clap",
|
730
557
|
"geometry-rs",
|
731
558
|
"prost",
|
732
559
|
"prost-build",
|
@@ -736,15 +563,9 @@ dependencies = [
|
|
736
563
|
|
737
564
|
[[package]]
|
738
565
|
name = "unicode-ident"
|
739
|
-
version = "1.0.
|
740
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
741
|
-
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
742
|
-
|
743
|
-
[[package]]
|
744
|
-
name = "utf8parse"
|
745
|
-
version = "0.2.1"
|
566
|
+
version = "1.0.12"
|
746
567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
747
|
-
checksum = "
|
568
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
748
569
|
|
749
570
|
[[package]]
|
750
571
|
name = "wasi"
|
@@ -752,182 +573,75 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
752
573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
753
574
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
754
575
|
|
755
|
-
[[package]]
|
756
|
-
name = "which"
|
757
|
-
version = "4.4.0"
|
758
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
-
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
|
760
|
-
dependencies = [
|
761
|
-
"either",
|
762
|
-
"libc",
|
763
|
-
"once_cell",
|
764
|
-
]
|
765
|
-
|
766
|
-
[[package]]
|
767
|
-
name = "winapi"
|
768
|
-
version = "0.3.9"
|
769
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
771
|
-
dependencies = [
|
772
|
-
"winapi-i686-pc-windows-gnu",
|
773
|
-
"winapi-x86_64-pc-windows-gnu",
|
774
|
-
]
|
775
|
-
|
776
|
-
[[package]]
|
777
|
-
name = "winapi-i686-pc-windows-gnu"
|
778
|
-
version = "0.4.0"
|
779
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
780
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
781
|
-
|
782
|
-
[[package]]
|
783
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
784
|
-
version = "0.4.0"
|
785
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
787
|
-
|
788
576
|
[[package]]
|
789
577
|
name = "windows-sys"
|
790
|
-
version = "0.
|
578
|
+
version = "0.52.0"
|
791
579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
-
checksum = "
|
580
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
793
581
|
dependencies = [
|
794
|
-
"
|
795
|
-
"windows_aarch64_msvc 0.42.2",
|
796
|
-
"windows_i686_gnu 0.42.2",
|
797
|
-
"windows_i686_msvc 0.42.2",
|
798
|
-
"windows_x86_64_gnu 0.42.2",
|
799
|
-
"windows_x86_64_gnullvm 0.42.2",
|
800
|
-
"windows_x86_64_msvc 0.42.2",
|
801
|
-
]
|
802
|
-
|
803
|
-
[[package]]
|
804
|
-
name = "windows-sys"
|
805
|
-
version = "0.45.0"
|
806
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
808
|
-
dependencies = [
|
809
|
-
"windows-targets 0.42.2",
|
810
|
-
]
|
811
|
-
|
812
|
-
[[package]]
|
813
|
-
name = "windows-sys"
|
814
|
-
version = "0.48.0"
|
815
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
817
|
-
dependencies = [
|
818
|
-
"windows-targets 0.48.0",
|
819
|
-
]
|
820
|
-
|
821
|
-
[[package]]
|
822
|
-
name = "windows-targets"
|
823
|
-
version = "0.42.2"
|
824
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
825
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
826
|
-
dependencies = [
|
827
|
-
"windows_aarch64_gnullvm 0.42.2",
|
828
|
-
"windows_aarch64_msvc 0.42.2",
|
829
|
-
"windows_i686_gnu 0.42.2",
|
830
|
-
"windows_i686_msvc 0.42.2",
|
831
|
-
"windows_x86_64_gnu 0.42.2",
|
832
|
-
"windows_x86_64_gnullvm 0.42.2",
|
833
|
-
"windows_x86_64_msvc 0.42.2",
|
582
|
+
"windows-targets",
|
834
583
|
]
|
835
584
|
|
836
585
|
[[package]]
|
837
586
|
name = "windows-targets"
|
838
|
-
version = "0.
|
587
|
+
version = "0.52.5"
|
839
588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
-
checksum = "
|
589
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
841
590
|
dependencies = [
|
842
|
-
"windows_aarch64_gnullvm
|
843
|
-
"windows_aarch64_msvc
|
844
|
-
"windows_i686_gnu
|
845
|
-
"
|
846
|
-
"
|
847
|
-
"
|
848
|
-
"
|
591
|
+
"windows_aarch64_gnullvm",
|
592
|
+
"windows_aarch64_msvc",
|
593
|
+
"windows_i686_gnu",
|
594
|
+
"windows_i686_gnullvm",
|
595
|
+
"windows_i686_msvc",
|
596
|
+
"windows_x86_64_gnu",
|
597
|
+
"windows_x86_64_gnullvm",
|
598
|
+
"windows_x86_64_msvc",
|
849
599
|
]
|
850
600
|
|
851
601
|
[[package]]
|
852
602
|
name = "windows_aarch64_gnullvm"
|
853
|
-
version = "0.
|
603
|
+
version = "0.52.5"
|
854
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
855
|
-
checksum = "
|
856
|
-
|
857
|
-
[[package]]
|
858
|
-
name = "windows_aarch64_gnullvm"
|
859
|
-
version = "0.48.0"
|
860
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
-
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
862
|
-
|
863
|
-
[[package]]
|
864
|
-
name = "windows_aarch64_msvc"
|
865
|
-
version = "0.42.2"
|
866
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
867
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
605
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
868
606
|
|
869
607
|
[[package]]
|
870
608
|
name = "windows_aarch64_msvc"
|
871
|
-
version = "0.
|
872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
-
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
874
|
-
|
875
|
-
[[package]]
|
876
|
-
name = "windows_i686_gnu"
|
877
|
-
version = "0.42.2"
|
609
|
+
version = "0.52.5"
|
878
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
879
|
-
checksum = "
|
611
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
880
612
|
|
881
613
|
[[package]]
|
882
614
|
name = "windows_i686_gnu"
|
883
|
-
version = "0.
|
615
|
+
version = "0.52.5"
|
884
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
885
|
-
checksum = "
|
617
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
886
618
|
|
887
619
|
[[package]]
|
888
|
-
name = "
|
889
|
-
version = "0.
|
620
|
+
name = "windows_i686_gnullvm"
|
621
|
+
version = "0.52.5"
|
890
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
-
checksum = "
|
623
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
892
624
|
|
893
625
|
[[package]]
|
894
626
|
name = "windows_i686_msvc"
|
895
|
-
version = "0.
|
627
|
+
version = "0.52.5"
|
896
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
897
|
-
checksum = "
|
629
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
898
630
|
|
899
631
|
[[package]]
|
900
632
|
name = "windows_x86_64_gnu"
|
901
|
-
version = "0.
|
633
|
+
version = "0.52.5"
|
902
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
-
checksum = "
|
904
|
-
|
905
|
-
[[package]]
|
906
|
-
name = "windows_x86_64_gnu"
|
907
|
-
version = "0.48.0"
|
908
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
909
|
-
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
910
|
-
|
911
|
-
[[package]]
|
912
|
-
name = "windows_x86_64_gnullvm"
|
913
|
-
version = "0.42.2"
|
914
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
915
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
635
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
916
636
|
|
917
637
|
[[package]]
|
918
638
|
name = "windows_x86_64_gnullvm"
|
919
|
-
version = "0.
|
920
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
-
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
922
|
-
|
923
|
-
[[package]]
|
924
|
-
name = "windows_x86_64_msvc"
|
925
|
-
version = "0.42.2"
|
639
|
+
version = "0.52.5"
|
926
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
-
checksum = "
|
641
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
928
642
|
|
929
643
|
[[package]]
|
930
644
|
name = "windows_x86_64_msvc"
|
931
|
-
version = "0.
|
645
|
+
version = "0.52.5"
|
932
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
933
|
-
checksum = "
|
647
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|