tzf 0.4.4 → 0.4.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +131 -358
- data/README.md +4 -0
- data/ext/tzf/Cargo.toml +1 -1
- data/lib/tzf/version.rb +1 -1
- data/tzf.gemspec +8 -7
- metadata +6 -14
- 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,72 +4,18 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "aho-corasick"
|
7
|
-
version = "
|
7
|
+
version = "1.1.2"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
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.75"
|
71
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
-
checksum = "
|
18
|
+
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
|
73
19
|
|
74
20
|
[[package]]
|
75
21
|
name = "bindgen"
|
@@ -77,7 +23,7 @@ version = "0.66.1"
|
|
77
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
78
24
|
checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
|
79
25
|
dependencies = [
|
80
|
-
"bitflags 2.4.
|
26
|
+
"bitflags 2.4.1",
|
81
27
|
"cexpr",
|
82
28
|
"clang-sys",
|
83
29
|
"lazy_static",
|
@@ -88,7 +34,7 @@ dependencies = [
|
|
88
34
|
"regex",
|
89
35
|
"rustc-hash",
|
90
36
|
"shlex",
|
91
|
-
"syn
|
37
|
+
"syn",
|
92
38
|
]
|
93
39
|
|
94
40
|
[[package]]
|
@@ -99,21 +45,15 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
99
45
|
|
100
46
|
[[package]]
|
101
47
|
name = "bitflags"
|
102
|
-
version = "2.4.
|
48
|
+
version = "2.4.1"
|
103
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
104
|
-
checksum = "
|
50
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
105
51
|
|
106
52
|
[[package]]
|
107
53
|
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"
|
54
|
+
version = "1.5.0"
|
115
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
-
checksum = "
|
56
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
117
57
|
|
118
58
|
[[package]]
|
119
59
|
name = "cexpr"
|
@@ -132,96 +72,42 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
132
72
|
|
133
73
|
[[package]]
|
134
74
|
name = "clang-sys"
|
135
|
-
version = "1.6.
|
75
|
+
version = "1.6.1"
|
136
76
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
-
checksum = "
|
77
|
+
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
|
138
78
|
dependencies = [
|
139
79
|
"glob",
|
140
80
|
"libc",
|
141
81
|
"libloading",
|
142
82
|
]
|
143
83
|
|
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
84
|
[[package]]
|
191
85
|
name = "either"
|
192
|
-
version = "1.
|
86
|
+
version = "1.9.0"
|
193
87
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
-
checksum = "
|
88
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
195
89
|
|
196
90
|
[[package]]
|
197
|
-
name = "
|
198
|
-
version = "0.
|
91
|
+
name = "equivalent"
|
92
|
+
version = "1.0.1"
|
199
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
-
checksum = "
|
201
|
-
dependencies = [
|
202
|
-
"errno-dragonfly",
|
203
|
-
"libc",
|
204
|
-
"winapi",
|
205
|
-
]
|
94
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
206
95
|
|
207
96
|
[[package]]
|
208
|
-
name = "errno
|
209
|
-
version = "0.
|
97
|
+
name = "errno"
|
98
|
+
version = "0.3.5"
|
210
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
-
checksum = "
|
100
|
+
checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860"
|
212
101
|
dependencies = [
|
213
|
-
"cc",
|
214
102
|
"libc",
|
103
|
+
"windows-sys",
|
215
104
|
]
|
216
105
|
|
217
106
|
[[package]]
|
218
107
|
name = "fastrand"
|
219
|
-
version = "
|
108
|
+
version = "2.0.1"
|
220
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
-
checksum = "
|
222
|
-
dependencies = [
|
223
|
-
"instant",
|
224
|
-
]
|
110
|
+
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
225
111
|
|
226
112
|
[[package]]
|
227
113
|
name = "fixedbitset"
|
@@ -247,9 +133,9 @@ dependencies = [
|
|
247
133
|
|
248
134
|
[[package]]
|
249
135
|
name = "getrandom"
|
250
|
-
version = "0.2.
|
136
|
+
version = "0.2.10"
|
251
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
252
|
-
checksum = "
|
138
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
253
139
|
dependencies = [
|
254
140
|
"cfg-if",
|
255
141
|
"libc",
|
@@ -264,9 +150,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
264
150
|
|
265
151
|
[[package]]
|
266
152
|
name = "hashbrown"
|
267
|
-
version = "0.
|
153
|
+
version = "0.14.2"
|
268
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
269
|
-
checksum = "
|
155
|
+
checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
|
270
156
|
|
271
157
|
[[package]]
|
272
158
|
name = "heck"
|
@@ -275,39 +161,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
161
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
276
162
|
|
277
163
|
[[package]]
|
278
|
-
name = "
|
279
|
-
version = "0.
|
280
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
282
|
-
|
283
|
-
[[package]]
|
284
|
-
name = "indexmap"
|
285
|
-
version = "1.9.3"
|
164
|
+
name = "home"
|
165
|
+
version = "0.5.5"
|
286
166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
-
checksum = "
|
167
|
+
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
|
288
168
|
dependencies = [
|
289
|
-
"
|
290
|
-
"hashbrown",
|
169
|
+
"windows-sys",
|
291
170
|
]
|
292
171
|
|
293
172
|
[[package]]
|
294
|
-
name = "
|
295
|
-
version = "
|
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"
|
173
|
+
name = "indexmap"
|
174
|
+
version = "2.1.0"
|
305
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
-
checksum = "
|
176
|
+
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
307
177
|
dependencies = [
|
308
|
-
"
|
309
|
-
"
|
310
|
-
"windows-sys 0.45.0",
|
178
|
+
"equivalent",
|
179
|
+
"hashbrown",
|
311
180
|
]
|
312
181
|
|
313
182
|
[[package]]
|
@@ -333,9 +202,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
333
202
|
|
334
203
|
[[package]]
|
335
204
|
name = "libc"
|
336
|
-
version = "0.2.
|
205
|
+
version = "0.2.149"
|
337
206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
338
|
-
checksum = "
|
207
|
+
checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
|
339
208
|
|
340
209
|
[[package]]
|
341
210
|
name = "libloading"
|
@@ -349,18 +218,15 @@ dependencies = [
|
|
349
218
|
|
350
219
|
[[package]]
|
351
220
|
name = "linux-raw-sys"
|
352
|
-
version = "0.
|
221
|
+
version = "0.4.10"
|
353
222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
-
checksum = "
|
223
|
+
checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f"
|
355
224
|
|
356
225
|
[[package]]
|
357
226
|
name = "log"
|
358
|
-
version = "0.4.
|
227
|
+
version = "0.4.20"
|
359
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
-
checksum = "
|
361
|
-
dependencies = [
|
362
|
-
"cfg-if",
|
363
|
-
]
|
229
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
364
230
|
|
365
231
|
[[package]]
|
366
232
|
name = "magnus"
|
@@ -382,14 +248,14 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
382
248
|
dependencies = [
|
383
249
|
"proc-macro2",
|
384
250
|
"quote",
|
385
|
-
"syn
|
251
|
+
"syn",
|
386
252
|
]
|
387
253
|
|
388
254
|
[[package]]
|
389
255
|
name = "memchr"
|
390
|
-
version = "2.
|
256
|
+
version = "2.6.4"
|
391
257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
392
|
-
checksum = "
|
258
|
+
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
|
393
259
|
|
394
260
|
[[package]]
|
395
261
|
name = "minimal-lexical"
|
@@ -415,9 +281,9 @@ dependencies = [
|
|
415
281
|
|
416
282
|
[[package]]
|
417
283
|
name = "once_cell"
|
418
|
-
version = "1.
|
284
|
+
version = "1.18.0"
|
419
285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
-
checksum = "
|
286
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
421
287
|
|
422
288
|
[[package]]
|
423
289
|
name = "peeking_take_while"
|
@@ -427,9 +293,9 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
427
293
|
|
428
294
|
[[package]]
|
429
295
|
name = "petgraph"
|
430
|
-
version = "0.6.
|
296
|
+
version = "0.6.4"
|
431
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
432
|
-
checksum = "
|
298
|
+
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
433
299
|
dependencies = [
|
434
300
|
"fixedbitset",
|
435
301
|
"indexmap",
|
@@ -449,28 +315,28 @@ checksum = "a2145d14f09d5fc7fe7134b556146599c2929af5b1f1e3a0ecc9d582a9b85e4d"
|
|
449
315
|
|
450
316
|
[[package]]
|
451
317
|
name = "prettyplease"
|
452
|
-
version = "0.
|
318
|
+
version = "0.2.15"
|
453
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
454
|
-
checksum = "
|
320
|
+
checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d"
|
455
321
|
dependencies = [
|
456
322
|
"proc-macro2",
|
457
|
-
"syn
|
323
|
+
"syn",
|
458
324
|
]
|
459
325
|
|
460
326
|
[[package]]
|
461
327
|
name = "proc-macro2"
|
462
|
-
version = "1.0.
|
328
|
+
version = "1.0.69"
|
463
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
-
checksum = "
|
330
|
+
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
|
465
331
|
dependencies = [
|
466
332
|
"unicode-ident",
|
467
333
|
]
|
468
334
|
|
469
335
|
[[package]]
|
470
336
|
name = "prost"
|
471
|
-
version = "0.
|
337
|
+
version = "0.12.3"
|
472
338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
-
checksum = "
|
339
|
+
checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a"
|
474
340
|
dependencies = [
|
475
341
|
"bytes",
|
476
342
|
"prost-derive",
|
@@ -478,53 +344,53 @@ dependencies = [
|
|
478
344
|
|
479
345
|
[[package]]
|
480
346
|
name = "prost-build"
|
481
|
-
version = "0.
|
347
|
+
version = "0.12.3"
|
482
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
-
checksum = "
|
349
|
+
checksum = "c55e02e35260070b6f716a2423c2ff1c3bb1642ddca6f99e1f26d06268a0e2d2"
|
484
350
|
dependencies = [
|
485
351
|
"bytes",
|
486
352
|
"heck",
|
487
353
|
"itertools",
|
488
|
-
"lazy_static",
|
489
354
|
"log",
|
490
355
|
"multimap",
|
356
|
+
"once_cell",
|
491
357
|
"petgraph",
|
492
358
|
"prettyplease",
|
493
359
|
"prost",
|
494
360
|
"prost-types",
|
495
361
|
"regex",
|
496
|
-
"syn
|
362
|
+
"syn",
|
497
363
|
"tempfile",
|
498
364
|
"which",
|
499
365
|
]
|
500
366
|
|
501
367
|
[[package]]
|
502
368
|
name = "prost-derive"
|
503
|
-
version = "0.
|
369
|
+
version = "0.12.3"
|
504
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
505
|
-
checksum = "
|
371
|
+
checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e"
|
506
372
|
dependencies = [
|
507
373
|
"anyhow",
|
508
374
|
"itertools",
|
509
375
|
"proc-macro2",
|
510
376
|
"quote",
|
511
|
-
"syn
|
377
|
+
"syn",
|
512
378
|
]
|
513
379
|
|
514
380
|
[[package]]
|
515
381
|
name = "prost-types"
|
516
|
-
version = "0.
|
382
|
+
version = "0.12.3"
|
517
383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
518
|
-
checksum = "
|
384
|
+
checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e"
|
519
385
|
dependencies = [
|
520
386
|
"prost",
|
521
387
|
]
|
522
388
|
|
523
389
|
[[package]]
|
524
390
|
name = "quote"
|
525
|
-
version = "1.0.
|
391
|
+
version = "1.0.33"
|
526
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
527
|
-
checksum = "
|
393
|
+
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
|
528
394
|
dependencies = [
|
529
395
|
"proc-macro2",
|
530
396
|
]
|
@@ -580,7 +446,7 @@ dependencies = [
|
|
580
446
|
"quote",
|
581
447
|
"regex",
|
582
448
|
"shell-words",
|
583
|
-
"syn
|
449
|
+
"syn",
|
584
450
|
]
|
585
451
|
|
586
452
|
[[package]]
|
@@ -591,18 +457,30 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
591
457
|
|
592
458
|
[[package]]
|
593
459
|
name = "redox_syscall"
|
594
|
-
version = "0.
|
460
|
+
version = "0.4.1"
|
595
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
596
|
-
checksum = "
|
462
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
597
463
|
dependencies = [
|
598
464
|
"bitflags 1.3.2",
|
599
465
|
]
|
600
466
|
|
601
467
|
[[package]]
|
602
468
|
name = "regex"
|
603
|
-
version = "1.
|
469
|
+
version = "1.10.2"
|
604
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
605
|
-
checksum = "
|
471
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
472
|
+
dependencies = [
|
473
|
+
"aho-corasick",
|
474
|
+
"memchr",
|
475
|
+
"regex-automata",
|
476
|
+
"regex-syntax",
|
477
|
+
]
|
478
|
+
|
479
|
+
[[package]]
|
480
|
+
name = "regex-automata"
|
481
|
+
version = "0.4.3"
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
606
484
|
dependencies = [
|
607
485
|
"aho-corasick",
|
608
486
|
"memchr",
|
@@ -611,9 +489,9 @@ dependencies = [
|
|
611
489
|
|
612
490
|
[[package]]
|
613
491
|
name = "regex-syntax"
|
614
|
-
version = "0.
|
492
|
+
version = "0.8.2"
|
615
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
616
|
-
checksum = "
|
494
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
617
495
|
|
618
496
|
[[package]]
|
619
497
|
name = "rtree_rs"
|
@@ -632,16 +510,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
632
510
|
|
633
511
|
[[package]]
|
634
512
|
name = "rustix"
|
635
|
-
version = "0.
|
513
|
+
version = "0.38.21"
|
636
514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
-
checksum = "
|
515
|
+
checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3"
|
638
516
|
dependencies = [
|
639
|
-
"bitflags
|
517
|
+
"bitflags 2.4.1",
|
640
518
|
"errno",
|
641
|
-
"io-lifetimes",
|
642
519
|
"libc",
|
643
520
|
"linux-raw-sys",
|
644
|
-
"windows-sys
|
521
|
+
"windows-sys",
|
645
522
|
]
|
646
523
|
|
647
524
|
[[package]]
|
@@ -658,32 +535,15 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
658
535
|
|
659
536
|
[[package]]
|
660
537
|
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"
|
538
|
+
version = "1.2.0"
|
674
539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
675
|
-
checksum = "
|
676
|
-
dependencies = [
|
677
|
-
"proc-macro2",
|
678
|
-
"quote",
|
679
|
-
"unicode-ident",
|
680
|
-
]
|
540
|
+
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
681
541
|
|
682
542
|
[[package]]
|
683
543
|
name = "syn"
|
684
|
-
version = "2.0.
|
544
|
+
version = "2.0.38"
|
685
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
686
|
-
checksum = "
|
546
|
+
checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b"
|
687
547
|
dependencies = [
|
688
548
|
"proc-macro2",
|
689
549
|
"quote",
|
@@ -692,15 +552,15 @@ dependencies = [
|
|
692
552
|
|
693
553
|
[[package]]
|
694
554
|
name = "tempfile"
|
695
|
-
version = "3.
|
555
|
+
version = "3.8.1"
|
696
556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
697
|
-
checksum = "
|
557
|
+
checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
|
698
558
|
dependencies = [
|
699
559
|
"cfg-if",
|
700
560
|
"fastrand",
|
701
561
|
"redox_syscall",
|
702
562
|
"rustix",
|
703
|
-
"windows-sys
|
563
|
+
"windows-sys",
|
704
564
|
]
|
705
565
|
|
706
566
|
[[package]]
|
@@ -714,19 +574,18 @@ dependencies = [
|
|
714
574
|
|
715
575
|
[[package]]
|
716
576
|
name = "tzf-rel"
|
717
|
-
version = "0.0.2023-
|
577
|
+
version = "0.0.2023-d"
|
718
578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
-
checksum = "
|
579
|
+
checksum = "6f07a0f286fe439ee06a322c948699f4f40c68e877cf9614aac251d4c6d35a11"
|
720
580
|
|
721
581
|
[[package]]
|
722
582
|
name = "tzf-rs"
|
723
|
-
version = "0.4.
|
583
|
+
version = "0.4.5"
|
724
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
-
checksum = "
|
585
|
+
checksum = "fbc15ed27f426b211b681ed770481f147fd7d412ce2e6b83156e14bf18650cea"
|
726
586
|
dependencies = [
|
727
587
|
"anyhow",
|
728
588
|
"bytes",
|
729
|
-
"clap",
|
730
589
|
"geometry-rs",
|
731
590
|
"prost",
|
732
591
|
"prost-build",
|
@@ -736,15 +595,9 @@ dependencies = [
|
|
736
595
|
|
737
596
|
[[package]]
|
738
597
|
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"
|
598
|
+
version = "1.0.12"
|
746
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
747
|
-
checksum = "
|
600
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
748
601
|
|
749
602
|
[[package]]
|
750
603
|
name = "wasi"
|
@@ -754,13 +607,14 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
754
607
|
|
755
608
|
[[package]]
|
756
609
|
name = "which"
|
757
|
-
version = "4.4.
|
610
|
+
version = "4.4.2"
|
758
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
-
checksum = "
|
612
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
760
613
|
dependencies = [
|
761
614
|
"either",
|
762
|
-
"
|
615
|
+
"home",
|
763
616
|
"once_cell",
|
617
|
+
"rustix",
|
764
618
|
]
|
765
619
|
|
766
620
|
[[package]]
|
@@ -785,149 +639,68 @@ version = "0.4.0"
|
|
785
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
640
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
787
641
|
|
788
|
-
[[package]]
|
789
|
-
name = "windows-sys"
|
790
|
-
version = "0.42.0"
|
791
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
-
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
793
|
-
dependencies = [
|
794
|
-
"windows_aarch64_gnullvm 0.42.2",
|
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
642
|
[[package]]
|
813
643
|
name = "windows-sys"
|
814
644
|
version = "0.48.0"
|
815
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
646
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
817
647
|
dependencies = [
|
818
|
-
"windows-targets
|
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",
|
648
|
+
"windows-targets",
|
834
649
|
]
|
835
650
|
|
836
651
|
[[package]]
|
837
652
|
name = "windows-targets"
|
838
|
-
version = "0.48.
|
653
|
+
version = "0.48.5"
|
839
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
-
checksum = "
|
655
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
841
656
|
dependencies = [
|
842
|
-
"windows_aarch64_gnullvm
|
843
|
-
"windows_aarch64_msvc
|
844
|
-
"windows_i686_gnu
|
845
|
-
"windows_i686_msvc
|
846
|
-
"windows_x86_64_gnu
|
847
|
-
"windows_x86_64_gnullvm
|
848
|
-
"windows_x86_64_msvc
|
657
|
+
"windows_aarch64_gnullvm",
|
658
|
+
"windows_aarch64_msvc",
|
659
|
+
"windows_i686_gnu",
|
660
|
+
"windows_i686_msvc",
|
661
|
+
"windows_x86_64_gnu",
|
662
|
+
"windows_x86_64_gnullvm",
|
663
|
+
"windows_x86_64_msvc",
|
849
664
|
]
|
850
665
|
|
851
666
|
[[package]]
|
852
667
|
name = "windows_aarch64_gnullvm"
|
853
|
-
version = "0.
|
668
|
+
version = "0.48.5"
|
854
669
|
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"
|
670
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
862
671
|
|
863
672
|
[[package]]
|
864
673
|
name = "windows_aarch64_msvc"
|
865
|
-
version = "0.
|
674
|
+
version = "0.48.5"
|
866
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
867
|
-
checksum = "
|
868
|
-
|
869
|
-
[[package]]
|
870
|
-
name = "windows_aarch64_msvc"
|
871
|
-
version = "0.48.0"
|
872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
-
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
676
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
874
677
|
|
875
678
|
[[package]]
|
876
679
|
name = "windows_i686_gnu"
|
877
|
-
version = "0.
|
680
|
+
version = "0.48.5"
|
878
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
879
|
-
checksum = "
|
880
|
-
|
881
|
-
[[package]]
|
882
|
-
name = "windows_i686_gnu"
|
883
|
-
version = "0.48.0"
|
884
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
885
|
-
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
886
|
-
|
887
|
-
[[package]]
|
888
|
-
name = "windows_i686_msvc"
|
889
|
-
version = "0.42.2"
|
890
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
682
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
892
683
|
|
893
684
|
[[package]]
|
894
685
|
name = "windows_i686_msvc"
|
895
|
-
version = "0.48.
|
896
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
897
|
-
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
898
|
-
|
899
|
-
[[package]]
|
900
|
-
name = "windows_x86_64_gnu"
|
901
|
-
version = "0.42.2"
|
686
|
+
version = "0.48.5"
|
902
687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
-
checksum = "
|
688
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
904
689
|
|
905
690
|
[[package]]
|
906
691
|
name = "windows_x86_64_gnu"
|
907
|
-
version = "0.48.
|
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"
|
692
|
+
version = "0.48.5"
|
914
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
915
|
-
checksum = "
|
694
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
916
695
|
|
917
696
|
[[package]]
|
918
697
|
name = "windows_x86_64_gnullvm"
|
919
|
-
version = "0.48.
|
698
|
+
version = "0.48.5"
|
920
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
-
checksum = "
|
700
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
922
701
|
|
923
702
|
[[package]]
|
924
703
|
name = "windows_x86_64_msvc"
|
925
|
-
version = "0.
|
926
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
928
|
-
|
929
|
-
[[package]]
|
930
|
-
name = "windows_x86_64_msvc"
|
931
|
-
version = "0.48.0"
|
704
|
+
version = "0.48.5"
|
932
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
933
|
-
checksum = "
|
706
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|