tzf 1.7.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +54 -283
- data/ext/tzf/Cargo.toml +1 -1
- data/lib/tzf/version.rb +1 -1
- data/tzf.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5155c6d9e09a525ebbccf106036337441a11077a2d0a5ee0f6732b4c74e748a7
|
|
4
|
+
data.tar.gz: d0a0cf01c560ae9383fefd1b0f07e5bd0bf9e7549758f9edd66562701bdafb34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2efd3db41cc342bb281658c55c95874697e4e36db59e35db080a5ba6e098de1420a1e754d39305169298d59771fd730de227439bb2846451f6ce2c87d749286
|
|
7
|
+
data.tar.gz: 3af302ba3afb9b8a301bdbf867658e55890e7ab8da5c1d6b8ff7ede214f8155cc96cf4e6b7443453fc31d3dea5e2e28bbf7e6fd62e0258a91d0021923fbb43d4
|
data/Cargo.lock
CHANGED
|
@@ -11,24 +11,16 @@ dependencies = [
|
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
|
-
[[package]]
|
|
15
|
-
name = "anyhow"
|
|
16
|
-
version = "1.0.100"
|
|
17
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
19
|
-
|
|
20
14
|
[[package]]
|
|
21
15
|
name = "bindgen"
|
|
22
|
-
version = "0.
|
|
16
|
+
version = "0.72.1"
|
|
23
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
18
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
25
19
|
dependencies = [
|
|
26
20
|
"bitflags",
|
|
27
21
|
"cexpr",
|
|
28
22
|
"clang-sys",
|
|
29
|
-
"itertools
|
|
30
|
-
"lazy_static",
|
|
31
|
-
"lazycell",
|
|
23
|
+
"itertools",
|
|
32
24
|
"proc-macro2",
|
|
33
25
|
"quote",
|
|
34
26
|
"regex",
|
|
@@ -39,15 +31,9 @@ dependencies = [
|
|
|
39
31
|
|
|
40
32
|
[[package]]
|
|
41
33
|
name = "bitflags"
|
|
42
|
-
version = "2.
|
|
34
|
+
version = "2.11.1"
|
|
43
35
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
-
checksum = "
|
|
45
|
-
|
|
46
|
-
[[package]]
|
|
47
|
-
name = "bytes"
|
|
48
|
-
version = "1.11.0"
|
|
49
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
-
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
36
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
51
37
|
|
|
52
38
|
[[package]]
|
|
53
39
|
name = "cexpr"
|
|
@@ -81,50 +67,13 @@ version = "1.15.0"
|
|
|
81
67
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
68
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
83
69
|
|
|
84
|
-
[[package]]
|
|
85
|
-
name = "equivalent"
|
|
86
|
-
version = "1.0.2"
|
|
87
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
89
|
-
|
|
90
|
-
[[package]]
|
|
91
|
-
name = "errno"
|
|
92
|
-
version = "0.3.14"
|
|
93
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
-
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
95
|
-
dependencies = [
|
|
96
|
-
"libc",
|
|
97
|
-
"windows-sys",
|
|
98
|
-
]
|
|
99
|
-
|
|
100
|
-
[[package]]
|
|
101
|
-
name = "fastrand"
|
|
102
|
-
version = "2.3.0"
|
|
103
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
-
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
105
|
-
|
|
106
|
-
[[package]]
|
|
107
|
-
name = "fixedbitset"
|
|
108
|
-
version = "0.5.7"
|
|
109
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
111
|
-
|
|
112
70
|
[[package]]
|
|
113
71
|
name = "geometry-rs"
|
|
114
|
-
version = "0.
|
|
115
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "f8a0b4dc167f84f57bd3744e8a87efead6abb3fa1cebd25b49920c5088d41330"
|
|
117
|
-
|
|
118
|
-
[[package]]
|
|
119
|
-
name = "getrandom"
|
|
120
|
-
version = "0.3.4"
|
|
72
|
+
version = "0.5.1"
|
|
121
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
-
checksum = "
|
|
74
|
+
checksum = "794fbaf8ce24464265e001a7a1dc819e401a303127c0cb714538e21ebe077c77"
|
|
123
75
|
dependencies = [
|
|
124
|
-
"
|
|
125
|
-
"libc",
|
|
126
|
-
"r-efi",
|
|
127
|
-
"wasip2",
|
|
76
|
+
"rtree_rs",
|
|
128
77
|
]
|
|
129
78
|
|
|
130
79
|
[[package]]
|
|
@@ -133,42 +82,11 @@ version = "0.3.3"
|
|
|
133
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
83
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
135
84
|
|
|
136
|
-
[[package]]
|
|
137
|
-
name = "hashbrown"
|
|
138
|
-
version = "0.16.1"
|
|
139
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
-
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
141
|
-
|
|
142
|
-
[[package]]
|
|
143
|
-
name = "heck"
|
|
144
|
-
version = "0.5.0"
|
|
145
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
-
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
147
|
-
|
|
148
|
-
[[package]]
|
|
149
|
-
name = "indexmap"
|
|
150
|
-
version = "2.12.1"
|
|
151
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
153
|
-
dependencies = [
|
|
154
|
-
"equivalent",
|
|
155
|
-
"hashbrown",
|
|
156
|
-
]
|
|
157
|
-
|
|
158
|
-
[[package]]
|
|
159
|
-
name = "itertools"
|
|
160
|
-
version = "0.12.1"
|
|
161
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
-
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
163
|
-
dependencies = [
|
|
164
|
-
"either",
|
|
165
|
-
]
|
|
166
|
-
|
|
167
85
|
[[package]]
|
|
168
86
|
name = "itertools"
|
|
169
|
-
version = "0.
|
|
87
|
+
version = "0.13.0"
|
|
170
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
-
checksum = "
|
|
89
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
172
90
|
dependencies = [
|
|
173
91
|
"either",
|
|
174
92
|
]
|
|
@@ -179,17 +97,11 @@ version = "1.5.0"
|
|
|
179
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
98
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
181
99
|
|
|
182
|
-
[[package]]
|
|
183
|
-
name = "lazycell"
|
|
184
|
-
version = "1.3.0"
|
|
185
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
187
|
-
|
|
188
100
|
[[package]]
|
|
189
101
|
name = "libc"
|
|
190
|
-
version = "0.2.
|
|
102
|
+
version = "0.2.186"
|
|
191
103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
104
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
193
105
|
|
|
194
106
|
[[package]]
|
|
195
107
|
name = "libloading"
|
|
@@ -201,18 +113,6 @@ dependencies = [
|
|
|
201
113
|
"windows-link",
|
|
202
114
|
]
|
|
203
115
|
|
|
204
|
-
[[package]]
|
|
205
|
-
name = "linux-raw-sys"
|
|
206
|
-
version = "0.11.0"
|
|
207
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
-
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
209
|
-
|
|
210
|
-
[[package]]
|
|
211
|
-
name = "log"
|
|
212
|
-
version = "0.4.28"
|
|
213
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
-
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
215
|
-
|
|
216
116
|
[[package]]
|
|
217
117
|
name = "magnus"
|
|
218
118
|
version = "0.8.2"
|
|
@@ -238,9 +138,9 @@ dependencies = [
|
|
|
238
138
|
|
|
239
139
|
[[package]]
|
|
240
140
|
name = "memchr"
|
|
241
|
-
version = "2.
|
|
141
|
+
version = "2.8.0"
|
|
242
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
-
checksum = "
|
|
143
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
244
144
|
|
|
245
145
|
[[package]]
|
|
246
146
|
name = "minimal-lexical"
|
|
@@ -248,12 +148,6 @@ version = "0.2.1"
|
|
|
248
148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
149
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
250
150
|
|
|
251
|
-
[[package]]
|
|
252
|
-
name = "multimap"
|
|
253
|
-
version = "0.10.1"
|
|
254
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
-
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
256
|
-
|
|
257
151
|
[[package]]
|
|
258
152
|
name = "nom"
|
|
259
153
|
version = "7.1.3"
|
|
@@ -265,121 +159,43 @@ dependencies = [
|
|
|
265
159
|
]
|
|
266
160
|
|
|
267
161
|
[[package]]
|
|
268
|
-
name = "
|
|
269
|
-
version = "1.
|
|
270
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
272
|
-
|
|
273
|
-
[[package]]
|
|
274
|
-
name = "petgraph"
|
|
275
|
-
version = "0.7.1"
|
|
276
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
-
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
278
|
-
dependencies = [
|
|
279
|
-
"fixedbitset",
|
|
280
|
-
"indexmap",
|
|
281
|
-
]
|
|
282
|
-
|
|
283
|
-
[[package]]
|
|
284
|
-
name = "prettyplease"
|
|
285
|
-
version = "0.2.37"
|
|
162
|
+
name = "pqueue"
|
|
163
|
+
version = "0.1.0"
|
|
286
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
-
checksum = "
|
|
288
|
-
dependencies = [
|
|
289
|
-
"proc-macro2",
|
|
290
|
-
"syn",
|
|
291
|
-
]
|
|
165
|
+
checksum = "a2145d14f09d5fc7fe7134b556146599c2929af5b1f1e3a0ecc9d582a9b85e4d"
|
|
292
166
|
|
|
293
167
|
[[package]]
|
|
294
168
|
name = "proc-macro2"
|
|
295
|
-
version = "1.0.
|
|
169
|
+
version = "1.0.106"
|
|
296
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "
|
|
171
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
298
172
|
dependencies = [
|
|
299
173
|
"unicode-ident",
|
|
300
174
|
]
|
|
301
175
|
|
|
302
|
-
[[package]]
|
|
303
|
-
name = "prost"
|
|
304
|
-
version = "0.14.1"
|
|
305
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
-
checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
|
|
307
|
-
dependencies = [
|
|
308
|
-
"bytes",
|
|
309
|
-
"prost-derive",
|
|
310
|
-
]
|
|
311
|
-
|
|
312
|
-
[[package]]
|
|
313
|
-
name = "prost-build"
|
|
314
|
-
version = "0.14.1"
|
|
315
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
-
checksum = "ac6c3320f9abac597dcbc668774ef006702672474aad53c6d596b62e487b40b1"
|
|
317
|
-
dependencies = [
|
|
318
|
-
"heck",
|
|
319
|
-
"itertools 0.14.0",
|
|
320
|
-
"log",
|
|
321
|
-
"multimap",
|
|
322
|
-
"once_cell",
|
|
323
|
-
"petgraph",
|
|
324
|
-
"prettyplease",
|
|
325
|
-
"prost",
|
|
326
|
-
"prost-types",
|
|
327
|
-
"regex",
|
|
328
|
-
"syn",
|
|
329
|
-
"tempfile",
|
|
330
|
-
]
|
|
331
|
-
|
|
332
|
-
[[package]]
|
|
333
|
-
name = "prost-derive"
|
|
334
|
-
version = "0.14.1"
|
|
335
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
-
checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
|
|
337
|
-
dependencies = [
|
|
338
|
-
"anyhow",
|
|
339
|
-
"itertools 0.14.0",
|
|
340
|
-
"proc-macro2",
|
|
341
|
-
"quote",
|
|
342
|
-
"syn",
|
|
343
|
-
]
|
|
344
|
-
|
|
345
|
-
[[package]]
|
|
346
|
-
name = "prost-types"
|
|
347
|
-
version = "0.14.1"
|
|
348
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
-
checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
|
|
350
|
-
dependencies = [
|
|
351
|
-
"prost",
|
|
352
|
-
]
|
|
353
|
-
|
|
354
176
|
[[package]]
|
|
355
177
|
name = "quote"
|
|
356
|
-
version = "1.0.
|
|
178
|
+
version = "1.0.45"
|
|
357
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
-
checksum = "
|
|
180
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
359
181
|
dependencies = [
|
|
360
182
|
"proc-macro2",
|
|
361
183
|
]
|
|
362
184
|
|
|
363
|
-
[[package]]
|
|
364
|
-
name = "r-efi"
|
|
365
|
-
version = "5.3.0"
|
|
366
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
368
|
-
|
|
369
185
|
[[package]]
|
|
370
186
|
name = "rb-sys"
|
|
371
|
-
version = "0.9.
|
|
187
|
+
version = "0.9.130"
|
|
372
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
-
checksum = "
|
|
189
|
+
checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
|
|
374
190
|
dependencies = [
|
|
375
191
|
"rb-sys-build",
|
|
376
192
|
]
|
|
377
193
|
|
|
378
194
|
[[package]]
|
|
379
195
|
name = "rb-sys-build"
|
|
380
|
-
version = "0.9.
|
|
196
|
+
version = "0.9.130"
|
|
381
197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
-
checksum = "
|
|
198
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
383
199
|
dependencies = [
|
|
384
200
|
"bindgen",
|
|
385
201
|
"lazy_static",
|
|
@@ -392,15 +208,15 @@ dependencies = [
|
|
|
392
208
|
|
|
393
209
|
[[package]]
|
|
394
210
|
name = "rb-sys-env"
|
|
395
|
-
version = "0.2.
|
|
211
|
+
version = "0.2.3"
|
|
396
212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
-
checksum = "
|
|
213
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
398
214
|
|
|
399
215
|
[[package]]
|
|
400
216
|
name = "regex"
|
|
401
|
-
version = "1.12.
|
|
217
|
+
version = "1.12.3"
|
|
402
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
-
checksum = "
|
|
219
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
404
220
|
dependencies = [
|
|
405
221
|
"aho-corasick",
|
|
406
222
|
"memchr",
|
|
@@ -410,9 +226,9 @@ dependencies = [
|
|
|
410
226
|
|
|
411
227
|
[[package]]
|
|
412
228
|
name = "regex-automata"
|
|
413
|
-
version = "0.4.
|
|
229
|
+
version = "0.4.14"
|
|
414
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
-
checksum = "
|
|
231
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
416
232
|
dependencies = [
|
|
417
233
|
"aho-corasick",
|
|
418
234
|
"memchr",
|
|
@@ -421,28 +237,24 @@ dependencies = [
|
|
|
421
237
|
|
|
422
238
|
[[package]]
|
|
423
239
|
name = "regex-syntax"
|
|
424
|
-
version = "0.8.
|
|
240
|
+
version = "0.8.10"
|
|
425
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
-
checksum = "
|
|
242
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
427
243
|
|
|
428
244
|
[[package]]
|
|
429
|
-
name = "
|
|
430
|
-
version = "
|
|
245
|
+
name = "rtree_rs"
|
|
246
|
+
version = "0.1.4"
|
|
431
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
-
checksum = "
|
|
248
|
+
checksum = "7787960e978c1c675fd6b8eb7d56b9c7162aec55c41d368add6f3ff39251b96e"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"pqueue",
|
|
251
|
+
]
|
|
433
252
|
|
|
434
253
|
[[package]]
|
|
435
|
-
name = "
|
|
436
|
-
version = "
|
|
254
|
+
name = "rustc-hash"
|
|
255
|
+
version = "2.1.2"
|
|
437
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
-
checksum = "
|
|
439
|
-
dependencies = [
|
|
440
|
-
"bitflags",
|
|
441
|
-
"errno",
|
|
442
|
-
"libc",
|
|
443
|
-
"linux-raw-sys",
|
|
444
|
-
"windows-sys",
|
|
445
|
-
]
|
|
257
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
446
258
|
|
|
447
259
|
[[package]]
|
|
448
260
|
name = "seq-macro"
|
|
@@ -452,9 +264,9 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
452
264
|
|
|
453
265
|
[[package]]
|
|
454
266
|
name = "shell-words"
|
|
455
|
-
version = "1.1.
|
|
267
|
+
version = "1.1.1"
|
|
456
268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
-
checksum = "
|
|
269
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
458
270
|
|
|
459
271
|
[[package]]
|
|
460
272
|
name = "shlex"
|
|
@@ -464,28 +276,15 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
464
276
|
|
|
465
277
|
[[package]]
|
|
466
278
|
name = "syn"
|
|
467
|
-
version = "2.0.
|
|
279
|
+
version = "2.0.117"
|
|
468
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
-
checksum = "
|
|
281
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
470
282
|
dependencies = [
|
|
471
283
|
"proc-macro2",
|
|
472
284
|
"quote",
|
|
473
285
|
"unicode-ident",
|
|
474
286
|
]
|
|
475
287
|
|
|
476
|
-
[[package]]
|
|
477
|
-
name = "tempfile"
|
|
478
|
-
version = "3.23.0"
|
|
479
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
481
|
-
dependencies = [
|
|
482
|
-
"fastrand",
|
|
483
|
-
"getrandom",
|
|
484
|
-
"once_cell",
|
|
485
|
-
"rustix",
|
|
486
|
-
"windows-sys",
|
|
487
|
-
]
|
|
488
|
-
|
|
489
288
|
[[package]]
|
|
490
289
|
name = "tzf"
|
|
491
290
|
version = "0.1.0"
|
|
@@ -497,57 +296,29 @@ dependencies = [
|
|
|
497
296
|
]
|
|
498
297
|
|
|
499
298
|
[[package]]
|
|
500
|
-
name = "tzf-
|
|
501
|
-
version = "0.0.
|
|
299
|
+
name = "tzf-dist"
|
|
300
|
+
version = "0.0.2026-d"
|
|
502
301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
-
checksum = "
|
|
302
|
+
checksum = "5e2968ddd98d78d8f712b3165ee6dabc3f1e80c3a2fd7340ecd5c694e925782f"
|
|
504
303
|
|
|
505
304
|
[[package]]
|
|
506
305
|
name = "tzf-rs"
|
|
507
|
-
version = "
|
|
306
|
+
version = "2.1.2"
|
|
508
307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
308
|
+
checksum = "5bd4bd76dc7816db8a12043dbac00254158c17cd2c731aa951fd85f1a9d1f1ae"
|
|
510
309
|
dependencies = [
|
|
511
|
-
"anyhow",
|
|
512
|
-
"bytes",
|
|
513
310
|
"geometry-rs",
|
|
514
|
-
"
|
|
515
|
-
"prost-build",
|
|
516
|
-
"tzf-rel",
|
|
311
|
+
"tzf-dist",
|
|
517
312
|
]
|
|
518
313
|
|
|
519
314
|
[[package]]
|
|
520
315
|
name = "unicode-ident"
|
|
521
|
-
version = "1.0.
|
|
522
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
524
|
-
|
|
525
|
-
[[package]]
|
|
526
|
-
name = "wasip2"
|
|
527
|
-
version = "1.0.1+wasi-0.2.4"
|
|
316
|
+
version = "1.0.24"
|
|
528
317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
530
|
-
dependencies = [
|
|
531
|
-
"wit-bindgen",
|
|
532
|
-
]
|
|
318
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
533
319
|
|
|
534
320
|
[[package]]
|
|
535
321
|
name = "windows-link"
|
|
536
322
|
version = "0.2.1"
|
|
537
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
324
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
539
|
-
|
|
540
|
-
[[package]]
|
|
541
|
-
name = "windows-sys"
|
|
542
|
-
version = "0.61.2"
|
|
543
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
545
|
-
dependencies = [
|
|
546
|
-
"windows-link",
|
|
547
|
-
]
|
|
548
|
-
|
|
549
|
-
[[package]]
|
|
550
|
-
name = "wit-bindgen"
|
|
551
|
-
version = "0.46.0"
|
|
552
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
-
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
data/ext/tzf/Cargo.toml
CHANGED
|
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
|
|
|
12
12
|
[dependencies]
|
|
13
13
|
lazy_static = "1.5.0"
|
|
14
14
|
magnus = { version = "0.8" }
|
|
15
|
-
tzf-rs = { version = "
|
|
15
|
+
tzf-rs = { version = "2.0.0", features = ["bundled"], default-features = false }
|
|
16
16
|
rb-sys = { version = "0.9", default-features = false, features = [
|
|
17
17
|
"stable-api-compiled-fallback",
|
|
18
18
|
] }
|
data/lib/tzf/version.rb
CHANGED
data/tzf.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = "Ruby time zone lookup interface using tzf-rs."
|
|
13
13
|
spec.homepage = "https://github.com/HarlemSquirrel/tzf-rb"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = ">= 3.
|
|
15
|
+
spec.required_ruby_version = ">= 3.3.0"
|
|
16
16
|
spec.required_rubygems_version = ">= 3.4.6"
|
|
17
17
|
|
|
18
18
|
spec.metadata["bug_tracker_uri"] = "https://github.com/HarlemSquirrel/tzf-rb/issues"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tzf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin McCormack
|
|
@@ -58,14 +58,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - ">="
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 3.
|
|
61
|
+
version: 3.3.0
|
|
62
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
requirements:
|
|
64
64
|
- - ">="
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
66
|
version: 3.4.6
|
|
67
67
|
requirements: []
|
|
68
|
-
rubygems_version: 4.0.
|
|
68
|
+
rubygems_version: 4.0.20
|
|
69
69
|
specification_version: 4
|
|
70
70
|
summary: Ruby time zone lookup interface using tzf-rs
|
|
71
71
|
test_files: []
|