tzf 0.2.6 → 0.4.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 +9 -0
- data/Cargo.lock +288 -180
- data/Gemfile.lock +15 -15
- data/ext/tzf/Cargo.lock +1 -1
- data/ext/tzf/Cargo.toml +1 -1
- data/lib/tzf/version.rb +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: '079073c28e43ca00ef461aefcb4c5c2bad6f0297c83f4341b20e5869a773eba9'
|
4
|
+
data.tar.gz: f9da366053d42268854337c5a792c0d2b10203e3f4d1d5559892fedc32ea066a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d35f18bea020a9786ab808283d4be3a1c63a10b2bc45aa0729cbb5eae04cd51b21a2ff87507f19aebac527cc2707d6053cd24df6eda7189428571dce202593a6
|
7
|
+
data.tar.gz: f152bb53b48b10276a1b65823a955ad52056441da0bb0afd0df24d1fcf859fd918035626996af3948b40de8d2f3beb7560d98c6bf0b800115eca27d958831bb9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.4.1] - 2023-03-27
|
4
|
+
|
5
|
+
- Bump tzf-rs to [0.4.1](https://github.com/ringsaturn/tzf-rs/releases/tag/v0.4.1)
|
6
|
+
|
7
|
+
## [0.4.0] - 2023-03-27
|
8
|
+
|
9
|
+
- Bump tzf-rs to [0.4.0](https://github.com/ringsaturn/tzf-rs/releases/tag/v0.4.0) which includes [2023b](https://github.com/evansiroky/timezone-boundary-builder/releases/tag/2023b) data.
|
10
|
+
- Bump remove_dir_all to address to address CWE-366 and CWE-367
|
11
|
+
|
3
12
|
## [0.2.6] - 2023-02-23
|
4
13
|
|
5
14
|
- Set min rubygems to [3.4.6](https://github.com/rubygems/rubygems/blob/master/CHANGELOG.md#346--2023-01-31) to address issues with CargoBuilder install path
|
data/Cargo.lock
CHANGED
@@ -38,11 +38,60 @@ dependencies = [
|
|
38
38
|
"memchr",
|
39
39
|
]
|
40
40
|
|
41
|
+
[[package]]
|
42
|
+
name = "anstream"
|
43
|
+
version = "0.3.2"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
|
46
|
+
dependencies = [
|
47
|
+
"anstyle",
|
48
|
+
"anstyle-parse",
|
49
|
+
"anstyle-query",
|
50
|
+
"anstyle-wincon",
|
51
|
+
"colorchoice",
|
52
|
+
"is-terminal",
|
53
|
+
"utf8parse",
|
54
|
+
]
|
55
|
+
|
56
|
+
[[package]]
|
57
|
+
name = "anstyle"
|
58
|
+
version = "1.0.0"
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
60
|
+
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
|
61
|
+
|
62
|
+
[[package]]
|
63
|
+
name = "anstyle-parse"
|
64
|
+
version = "0.2.0"
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
+
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
|
67
|
+
dependencies = [
|
68
|
+
"utf8parse",
|
69
|
+
]
|
70
|
+
|
71
|
+
[[package]]
|
72
|
+
name = "anstyle-query"
|
73
|
+
version = "1.0.0"
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
75
|
+
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
|
76
|
+
dependencies = [
|
77
|
+
"windows-sys 0.48.0",
|
78
|
+
]
|
79
|
+
|
80
|
+
[[package]]
|
81
|
+
name = "anstyle-wincon"
|
82
|
+
version = "1.0.1"
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
84
|
+
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
|
85
|
+
dependencies = [
|
86
|
+
"anstyle",
|
87
|
+
"windows-sys 0.48.0",
|
88
|
+
]
|
89
|
+
|
41
90
|
[[package]]
|
42
91
|
name = "anyhow"
|
43
|
-
version = "1.0.
|
92
|
+
version = "1.0.70"
|
44
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
-
checksum = "
|
94
|
+
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
|
46
95
|
|
47
96
|
[[package]]
|
48
97
|
name = "arrayvec"
|
@@ -98,9 +147,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
98
147
|
|
99
148
|
[[package]]
|
100
149
|
name = "bytemuck"
|
101
|
-
version = "1.13.
|
150
|
+
version = "1.13.1"
|
102
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
103
|
-
checksum = "
|
152
|
+
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
|
104
153
|
|
105
154
|
[[package]]
|
106
155
|
name = "bytes"
|
@@ -131,9 +180,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
131
180
|
|
132
181
|
[[package]]
|
133
182
|
name = "cities-json"
|
134
|
-
version = "0.3.
|
183
|
+
version = "0.3.7"
|
135
184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
-
checksum = "
|
185
|
+
checksum = "4f7a89d9a7d1e2b980dc2fd22e818e8c37b102fe30976a95dc000267f10d79d2"
|
137
186
|
dependencies = [
|
138
187
|
"lazy_static",
|
139
188
|
"rand",
|
@@ -154,40 +203,51 @@ dependencies = [
|
|
154
203
|
|
155
204
|
[[package]]
|
156
205
|
name = "clap"
|
157
|
-
version = "4.
|
206
|
+
version = "4.3.0"
|
158
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
159
|
-
checksum = "
|
208
|
+
checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc"
|
160
209
|
dependencies = [
|
161
|
-
"
|
210
|
+
"clap_builder",
|
162
211
|
"clap_derive",
|
163
|
-
"clap_lex",
|
164
|
-
"is-terminal",
|
165
212
|
"once_cell",
|
213
|
+
]
|
214
|
+
|
215
|
+
[[package]]
|
216
|
+
name = "clap_builder"
|
217
|
+
version = "4.3.0"
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
219
|
+
checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990"
|
220
|
+
dependencies = [
|
221
|
+
"anstream",
|
222
|
+
"anstyle",
|
223
|
+
"bitflags",
|
224
|
+
"clap_lex",
|
166
225
|
"strsim",
|
167
|
-
"termcolor",
|
168
226
|
]
|
169
227
|
|
170
228
|
[[package]]
|
171
229
|
name = "clap_derive"
|
172
|
-
version = "4.
|
230
|
+
version = "4.3.0"
|
173
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
174
|
-
checksum = "
|
232
|
+
checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b"
|
175
233
|
dependencies = [
|
176
234
|
"heck",
|
177
|
-
"proc-macro-error",
|
178
235
|
"proc-macro2",
|
179
236
|
"quote",
|
180
|
-
"syn",
|
237
|
+
"syn 2.0.10",
|
181
238
|
]
|
182
239
|
|
183
240
|
[[package]]
|
184
241
|
name = "clap_lex"
|
185
|
-
version = "0.
|
242
|
+
version = "0.5.0"
|
186
243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
-
checksum = "
|
188
|
-
|
189
|
-
|
190
|
-
|
244
|
+
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
|
245
|
+
|
246
|
+
[[package]]
|
247
|
+
name = "colorchoice"
|
248
|
+
version = "1.0.0"
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
250
|
+
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
191
251
|
|
192
252
|
[[package]]
|
193
253
|
name = "cpp_demangle"
|
@@ -322,9 +382,9 @@ checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
|
322
382
|
|
323
383
|
[[package]]
|
324
384
|
name = "indexmap"
|
325
|
-
version = "1.9.
|
385
|
+
version = "1.9.3"
|
326
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
-
checksum = "
|
387
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
328
388
|
dependencies = [
|
329
389
|
"autocfg",
|
330
390
|
"hashbrown",
|
@@ -359,24 +419,25 @@ dependencies = [
|
|
359
419
|
|
360
420
|
[[package]]
|
361
421
|
name = "io-lifetimes"
|
362
|
-
version = "1.0.
|
422
|
+
version = "1.0.9"
|
363
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
-
checksum = "
|
424
|
+
checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb"
|
365
425
|
dependencies = [
|
426
|
+
"hermit-abi",
|
366
427
|
"libc",
|
367
|
-
"windows-sys",
|
428
|
+
"windows-sys 0.45.0",
|
368
429
|
]
|
369
430
|
|
370
431
|
[[package]]
|
371
432
|
name = "is-terminal"
|
372
|
-
version = "0.4.
|
433
|
+
version = "0.4.5"
|
373
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
-
checksum = "
|
435
|
+
checksum = "8687c819457e979cc940d09cb16e42a1bf70aa6b60a549de6d3a62a0ee90c69e"
|
375
436
|
dependencies = [
|
376
437
|
"hermit-abi",
|
377
438
|
"io-lifetimes",
|
378
439
|
"rustix",
|
379
|
-
"windows-sys",
|
440
|
+
"windows-sys 0.45.0",
|
380
441
|
]
|
381
442
|
|
382
443
|
[[package]]
|
@@ -390,9 +451,9 @@ dependencies = [
|
|
390
451
|
|
391
452
|
[[package]]
|
392
453
|
name = "itoa"
|
393
|
-
version = "1.0.
|
454
|
+
version = "1.0.6"
|
394
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
395
|
-
checksum = "
|
456
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
396
457
|
|
397
458
|
[[package]]
|
398
459
|
name = "lazy_static"
|
@@ -408,9 +469,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
408
469
|
|
409
470
|
[[package]]
|
410
471
|
name = "libc"
|
411
|
-
version = "0.2.
|
472
|
+
version = "0.2.140"
|
412
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
413
|
-
checksum = "
|
474
|
+
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
|
414
475
|
|
415
476
|
[[package]]
|
416
477
|
name = "libloading"
|
@@ -466,7 +527,7 @@ checksum = "206cb23bfeea05180c97522ef6a3e52a4eb17b0ed2f30ee3ca9c4f994d2378ae"
|
|
466
527
|
dependencies = [
|
467
528
|
"proc-macro2",
|
468
529
|
"quote",
|
469
|
-
"syn",
|
530
|
+
"syn 1.0.109",
|
470
531
|
]
|
471
532
|
|
472
533
|
[[package]]
|
@@ -477,9 +538,9 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
477
538
|
|
478
539
|
[[package]]
|
479
540
|
name = "memmap2"
|
480
|
-
version = "0.5.
|
541
|
+
version = "0.5.10"
|
481
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
482
|
-
checksum = "
|
543
|
+
checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
|
483
544
|
dependencies = [
|
484
545
|
"libc",
|
485
546
|
]
|
@@ -507,13 +568,14 @@ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
|
|
507
568
|
|
508
569
|
[[package]]
|
509
570
|
name = "nix"
|
510
|
-
version = "0.
|
571
|
+
version = "0.26.2"
|
511
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
-
checksum = "
|
573
|
+
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
|
513
574
|
dependencies = [
|
514
575
|
"bitflags",
|
515
576
|
"cfg-if",
|
516
577
|
"libc",
|
578
|
+
"static_assertions",
|
517
579
|
]
|
518
580
|
|
519
581
|
[[package]]
|
@@ -560,12 +622,6 @@ version = "1.17.1"
|
|
560
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
561
623
|
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
562
624
|
|
563
|
-
[[package]]
|
564
|
-
name = "os_str_bytes"
|
565
|
-
version = "6.4.1"
|
566
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
567
|
-
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
|
568
|
-
|
569
625
|
[[package]]
|
570
626
|
name = "parking_lot"
|
571
627
|
version = "0.12.1"
|
@@ -586,7 +642,7 @@ dependencies = [
|
|
586
642
|
"libc",
|
587
643
|
"redox_syscall",
|
588
644
|
"smallvec",
|
589
|
-
"windows-sys",
|
645
|
+
"windows-sys 0.45.0",
|
590
646
|
]
|
591
647
|
|
592
648
|
[[package]]
|
@@ -607,9 +663,9 @@ dependencies = [
|
|
607
663
|
|
608
664
|
[[package]]
|
609
665
|
name = "pprof"
|
610
|
-
version = "0.11.
|
666
|
+
version = "0.11.1"
|
611
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
612
|
-
checksum = "
|
668
|
+
checksum = "196ded5d4be535690899a4631cc9f18cdc41b7ebf24a79400f46f48e49a11059"
|
613
669
|
dependencies = [
|
614
670
|
"backtrace",
|
615
671
|
"cfg-if",
|
@@ -634,52 +690,28 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
634
690
|
|
635
691
|
[[package]]
|
636
692
|
name = "prettyplease"
|
637
|
-
version = "0.1.
|
638
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
-
checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78"
|
640
|
-
dependencies = [
|
641
|
-
"proc-macro2",
|
642
|
-
"syn",
|
643
|
-
]
|
644
|
-
|
645
|
-
[[package]]
|
646
|
-
name = "proc-macro-error"
|
647
|
-
version = "1.0.4"
|
648
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
649
|
-
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
650
|
-
dependencies = [
|
651
|
-
"proc-macro-error-attr",
|
652
|
-
"proc-macro2",
|
653
|
-
"quote",
|
654
|
-
"syn",
|
655
|
-
"version_check",
|
656
|
-
]
|
657
|
-
|
658
|
-
[[package]]
|
659
|
-
name = "proc-macro-error-attr"
|
660
|
-
version = "1.0.4"
|
693
|
+
version = "0.1.25"
|
661
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
662
|
-
checksum = "
|
695
|
+
checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
|
663
696
|
dependencies = [
|
664
697
|
"proc-macro2",
|
665
|
-
"
|
666
|
-
"version_check",
|
698
|
+
"syn 1.0.109",
|
667
699
|
]
|
668
700
|
|
669
701
|
[[package]]
|
670
702
|
name = "proc-macro2"
|
671
|
-
version = "1.0.
|
703
|
+
version = "1.0.54"
|
672
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
-
checksum = "
|
705
|
+
checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534"
|
674
706
|
dependencies = [
|
675
707
|
"unicode-ident",
|
676
708
|
]
|
677
709
|
|
678
710
|
[[package]]
|
679
711
|
name = "prost"
|
680
|
-
version = "0.11.
|
712
|
+
version = "0.11.8"
|
681
713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
682
|
-
checksum = "
|
714
|
+
checksum = "e48e50df39172a3e7eb17e14642445da64996989bc212b583015435d39a58537"
|
683
715
|
dependencies = [
|
684
716
|
"bytes",
|
685
717
|
"prost-derive",
|
@@ -687,9 +719,9 @@ dependencies = [
|
|
687
719
|
|
688
720
|
[[package]]
|
689
721
|
name = "prost-build"
|
690
|
-
version = "0.11.
|
722
|
+
version = "0.11.8"
|
691
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
692
|
-
checksum = "
|
724
|
+
checksum = "2c828f93f5ca4826f97fedcbd3f9a536c16b12cff3dbbb4a007f932bbad95b12"
|
693
725
|
dependencies = [
|
694
726
|
"bytes",
|
695
727
|
"heck",
|
@@ -702,31 +734,30 @@ dependencies = [
|
|
702
734
|
"prost",
|
703
735
|
"prost-types",
|
704
736
|
"regex",
|
705
|
-
"syn",
|
737
|
+
"syn 1.0.109",
|
706
738
|
"tempfile",
|
707
739
|
"which",
|
708
740
|
]
|
709
741
|
|
710
742
|
[[package]]
|
711
743
|
name = "prost-derive"
|
712
|
-
version = "0.11.
|
744
|
+
version = "0.11.8"
|
713
745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
714
|
-
checksum = "
|
746
|
+
checksum = "4ea9b0f8cbe5e15a8a042d030bd96668db28ecb567ec37d691971ff5731d2b1b"
|
715
747
|
dependencies = [
|
716
748
|
"anyhow",
|
717
749
|
"itertools",
|
718
750
|
"proc-macro2",
|
719
751
|
"quote",
|
720
|
-
"syn",
|
752
|
+
"syn 1.0.109",
|
721
753
|
]
|
722
754
|
|
723
755
|
[[package]]
|
724
756
|
name = "prost-types"
|
725
|
-
version = "0.11.
|
757
|
+
version = "0.11.8"
|
726
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
727
|
-
checksum = "
|
759
|
+
checksum = "379119666929a1afd7a043aa6cf96fa67a6dce9af60c88095a4686dbce4c9c88"
|
728
760
|
dependencies = [
|
729
|
-
"bytes",
|
730
761
|
"prost",
|
731
762
|
]
|
732
763
|
|
@@ -741,9 +772,9 @@ dependencies = [
|
|
741
772
|
|
742
773
|
[[package]]
|
743
774
|
name = "quote"
|
744
|
-
version = "1.0.
|
775
|
+
version = "1.0.26"
|
745
776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
-
checksum = "
|
777
|
+
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
|
747
778
|
dependencies = [
|
748
779
|
"proc-macro2",
|
749
780
|
]
|
@@ -780,25 +811,26 @@ dependencies = [
|
|
780
811
|
|
781
812
|
[[package]]
|
782
813
|
name = "rb-sys"
|
783
|
-
version = "0.9.
|
814
|
+
version = "0.9.70"
|
784
815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
-
checksum = "
|
816
|
+
checksum = "dd532ce4ab93abcabd4b92d0eb1df5c02f64d3624b713e2bcf6a4186847f2c65"
|
786
817
|
dependencies = [
|
787
818
|
"rb-sys-build",
|
788
819
|
]
|
789
820
|
|
790
821
|
[[package]]
|
791
822
|
name = "rb-sys-build"
|
792
|
-
version = "0.9.
|
823
|
+
version = "0.9.70"
|
793
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
794
|
-
checksum = "
|
825
|
+
checksum = "6959d6f87715ddb2854d833039aa22b06bbab3c3d63bb1df22e6da198e8390c5"
|
795
826
|
dependencies = [
|
796
827
|
"bindgen",
|
797
828
|
"lazy_static",
|
829
|
+
"proc-macro2",
|
798
830
|
"quote",
|
799
831
|
"regex",
|
800
832
|
"shell-words",
|
801
|
-
"syn",
|
833
|
+
"syn 1.0.109",
|
802
834
|
]
|
803
835
|
|
804
836
|
[[package]]
|
@@ -818,9 +850,9 @@ dependencies = [
|
|
818
850
|
|
819
851
|
[[package]]
|
820
852
|
name = "regex"
|
821
|
-
version = "1.7.
|
853
|
+
version = "1.7.3"
|
822
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
-
checksum = "
|
855
|
+
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
824
856
|
dependencies = [
|
825
857
|
"aho-corasick",
|
826
858
|
"memchr",
|
@@ -829,18 +861,9 @@ dependencies = [
|
|
829
861
|
|
830
862
|
[[package]]
|
831
863
|
name = "regex-syntax"
|
832
|
-
version = "0.6.
|
864
|
+
version = "0.6.29"
|
833
865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
-
checksum = "
|
835
|
-
|
836
|
-
[[package]]
|
837
|
-
name = "remove_dir_all"
|
838
|
-
version = "0.5.3"
|
839
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
-
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
841
|
-
dependencies = [
|
842
|
-
"winapi",
|
843
|
-
]
|
866
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
844
867
|
|
845
868
|
[[package]]
|
846
869
|
name = "rgb"
|
@@ -853,9 +876,9 @@ dependencies = [
|
|
853
876
|
|
854
877
|
[[package]]
|
855
878
|
name = "rustc-demangle"
|
856
|
-
version = "0.1.
|
879
|
+
version = "0.1.22"
|
857
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
-
checksum = "
|
881
|
+
checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b"
|
859
882
|
|
860
883
|
[[package]]
|
861
884
|
name = "rustc-hash"
|
@@ -865,23 +888,23 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
865
888
|
|
866
889
|
[[package]]
|
867
890
|
name = "rustix"
|
868
|
-
version = "0.36.
|
891
|
+
version = "0.36.11"
|
869
892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
870
|
-
checksum = "
|
893
|
+
checksum = "db4165c9963ab29e422d6c26fbc1d37f15bace6b2810221f9d925023480fcf0e"
|
871
894
|
dependencies = [
|
872
895
|
"bitflags",
|
873
896
|
"errno",
|
874
897
|
"io-lifetimes",
|
875
898
|
"libc",
|
876
899
|
"linux-raw-sys",
|
877
|
-
"windows-sys",
|
900
|
+
"windows-sys 0.45.0",
|
878
901
|
]
|
879
902
|
|
880
903
|
[[package]]
|
881
904
|
name = "ryu"
|
882
|
-
version = "1.0.
|
905
|
+
version = "1.0.13"
|
883
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
-
checksum = "
|
907
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
885
908
|
|
886
909
|
[[package]]
|
887
910
|
name = "scopeguard"
|
@@ -891,29 +914,29 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
891
914
|
|
892
915
|
[[package]]
|
893
916
|
name = "serde"
|
894
|
-
version = "1.0.
|
917
|
+
version = "1.0.158"
|
895
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
896
|
-
checksum = "
|
919
|
+
checksum = "771d4d9c4163ee138805e12c710dd365e4f44be8be0503cb1bb9eb989425d9c9"
|
897
920
|
dependencies = [
|
898
921
|
"serde_derive",
|
899
922
|
]
|
900
923
|
|
901
924
|
[[package]]
|
902
925
|
name = "serde_derive"
|
903
|
-
version = "1.0.
|
926
|
+
version = "1.0.158"
|
904
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
905
|
-
checksum = "
|
928
|
+
checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad"
|
906
929
|
dependencies = [
|
907
930
|
"proc-macro2",
|
908
931
|
"quote",
|
909
|
-
"syn",
|
932
|
+
"syn 2.0.10",
|
910
933
|
]
|
911
934
|
|
912
935
|
[[package]]
|
913
936
|
name = "serde_json"
|
914
|
-
version = "1.0.
|
937
|
+
version = "1.0.94"
|
915
938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
916
|
-
checksum = "
|
939
|
+
checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
|
917
940
|
dependencies = [
|
918
941
|
"itoa",
|
919
942
|
"ryu",
|
@@ -944,6 +967,12 @@ version = "1.2.0"
|
|
944
967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
968
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
946
969
|
|
970
|
+
[[package]]
|
971
|
+
name = "static_assertions"
|
972
|
+
version = "1.1.0"
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
974
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
975
|
+
|
947
976
|
[[package]]
|
948
977
|
name = "str_stack"
|
949
978
|
version = "0.1.0"
|
@@ -981,9 +1010,9 @@ dependencies = [
|
|
981
1010
|
|
982
1011
|
[[package]]
|
983
1012
|
name = "syn"
|
984
|
-
version = "1.0.
|
1013
|
+
version = "1.0.109"
|
985
1014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
-
checksum = "
|
1015
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
987
1016
|
dependencies = [
|
988
1017
|
"proc-macro2",
|
989
1018
|
"quote",
|
@@ -991,46 +1020,47 @@ dependencies = [
|
|
991
1020
|
]
|
992
1021
|
|
993
1022
|
[[package]]
|
994
|
-
name = "
|
995
|
-
version = "
|
1023
|
+
name = "syn"
|
1024
|
+
version = "2.0.10"
|
996
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
1026
|
+
checksum = "5aad1363ed6d37b84299588d62d3a7d95b5a5c2d9aad5c85609fda12afaa1f40"
|
998
1027
|
dependencies = [
|
999
|
-
"
|
1000
|
-
"
|
1001
|
-
"
|
1002
|
-
"redox_syscall",
|
1003
|
-
"remove_dir_all",
|
1004
|
-
"winapi",
|
1028
|
+
"proc-macro2",
|
1029
|
+
"quote",
|
1030
|
+
"unicode-ident",
|
1005
1031
|
]
|
1006
1032
|
|
1007
1033
|
[[package]]
|
1008
|
-
name = "
|
1009
|
-
version = "
|
1034
|
+
name = "tempfile"
|
1035
|
+
version = "3.4.0"
|
1010
1036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1011
|
-
checksum = "
|
1037
|
+
checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95"
|
1012
1038
|
dependencies = [
|
1013
|
-
"
|
1039
|
+
"cfg-if",
|
1040
|
+
"fastrand",
|
1041
|
+
"redox_syscall",
|
1042
|
+
"rustix",
|
1043
|
+
"windows-sys 0.42.0",
|
1014
1044
|
]
|
1015
1045
|
|
1016
1046
|
[[package]]
|
1017
1047
|
name = "thiserror"
|
1018
|
-
version = "1.0.
|
1048
|
+
version = "1.0.40"
|
1019
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
-
checksum = "
|
1050
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
1021
1051
|
dependencies = [
|
1022
1052
|
"thiserror-impl",
|
1023
1053
|
]
|
1024
1054
|
|
1025
1055
|
[[package]]
|
1026
1056
|
name = "thiserror-impl"
|
1027
|
-
version = "1.0.
|
1057
|
+
version = "1.0.40"
|
1028
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
-
checksum = "
|
1059
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
1030
1060
|
dependencies = [
|
1031
1061
|
"proc-macro2",
|
1032
1062
|
"quote",
|
1033
|
-
"syn",
|
1063
|
+
"syn 2.0.10",
|
1034
1064
|
]
|
1035
1065
|
|
1036
1066
|
[[package]]
|
@@ -1044,15 +1074,15 @@ dependencies = [
|
|
1044
1074
|
|
1045
1075
|
[[package]]
|
1046
1076
|
name = "tzf-rel"
|
1047
|
-
version = "0.0.
|
1077
|
+
version = "0.0.2023-b"
|
1048
1078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
|
-
checksum = "
|
1079
|
+
checksum = "e305448914389c394ef4d3285688b6fa0f69602122c4a446acb39ff3e9669c65"
|
1050
1080
|
|
1051
1081
|
[[package]]
|
1052
1082
|
name = "tzf-rs"
|
1053
|
-
version = "0.
|
1083
|
+
version = "0.4.1"
|
1054
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
-
checksum = "
|
1085
|
+
checksum = "72cc2c991c9d0e28104ea816f3092c355ecd3bf4160c58411d4dd4e0f58f97a9"
|
1056
1086
|
dependencies = [
|
1057
1087
|
"anyhow",
|
1058
1088
|
"bytes",
|
@@ -1069,9 +1099,15 @@ dependencies = [
|
|
1069
1099
|
|
1070
1100
|
[[package]]
|
1071
1101
|
name = "unicode-ident"
|
1072
|
-
version = "1.0.
|
1102
|
+
version = "1.0.8"
|
1073
1103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1074
|
-
checksum = "
|
1104
|
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
1105
|
+
|
1106
|
+
[[package]]
|
1107
|
+
name = "utf8parse"
|
1108
|
+
version = "0.2.1"
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1110
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
1075
1111
|
|
1076
1112
|
[[package]]
|
1077
1113
|
name = "uuid"
|
@@ -1118,83 +1154,155 @@ version = "0.4.0"
|
|
1118
1154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1119
1155
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1120
1156
|
|
1121
|
-
[[package]]
|
1122
|
-
name = "winapi-util"
|
1123
|
-
version = "0.1.5"
|
1124
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1125
|
-
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
1126
|
-
dependencies = [
|
1127
|
-
"winapi",
|
1128
|
-
]
|
1129
|
-
|
1130
1157
|
[[package]]
|
1131
1158
|
name = "winapi-x86_64-pc-windows-gnu"
|
1132
1159
|
version = "0.4.0"
|
1133
1160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
1161
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1135
1162
|
|
1163
|
+
[[package]]
|
1164
|
+
name = "windows-sys"
|
1165
|
+
version = "0.42.0"
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1167
|
+
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
1168
|
+
dependencies = [
|
1169
|
+
"windows_aarch64_gnullvm 0.42.2",
|
1170
|
+
"windows_aarch64_msvc 0.42.2",
|
1171
|
+
"windows_i686_gnu 0.42.2",
|
1172
|
+
"windows_i686_msvc 0.42.2",
|
1173
|
+
"windows_x86_64_gnu 0.42.2",
|
1174
|
+
"windows_x86_64_gnullvm 0.42.2",
|
1175
|
+
"windows_x86_64_msvc 0.42.2",
|
1176
|
+
]
|
1177
|
+
|
1136
1178
|
[[package]]
|
1137
1179
|
name = "windows-sys"
|
1138
1180
|
version = "0.45.0"
|
1139
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
1182
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
1141
1183
|
dependencies = [
|
1142
|
-
"windows-targets",
|
1184
|
+
"windows-targets 0.42.2",
|
1185
|
+
]
|
1186
|
+
|
1187
|
+
[[package]]
|
1188
|
+
name = "windows-sys"
|
1189
|
+
version = "0.48.0"
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1191
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
1192
|
+
dependencies = [
|
1193
|
+
"windows-targets 0.48.0",
|
1194
|
+
]
|
1195
|
+
|
1196
|
+
[[package]]
|
1197
|
+
name = "windows-targets"
|
1198
|
+
version = "0.42.2"
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1200
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
1201
|
+
dependencies = [
|
1202
|
+
"windows_aarch64_gnullvm 0.42.2",
|
1203
|
+
"windows_aarch64_msvc 0.42.2",
|
1204
|
+
"windows_i686_gnu 0.42.2",
|
1205
|
+
"windows_i686_msvc 0.42.2",
|
1206
|
+
"windows_x86_64_gnu 0.42.2",
|
1207
|
+
"windows_x86_64_gnullvm 0.42.2",
|
1208
|
+
"windows_x86_64_msvc 0.42.2",
|
1143
1209
|
]
|
1144
1210
|
|
1145
1211
|
[[package]]
|
1146
1212
|
name = "windows-targets"
|
1147
|
-
version = "0.
|
1213
|
+
version = "0.48.0"
|
1148
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1149
|
-
checksum = "
|
1215
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
1150
1216
|
dependencies = [
|
1151
|
-
"windows_aarch64_gnullvm",
|
1152
|
-
"windows_aarch64_msvc",
|
1153
|
-
"windows_i686_gnu",
|
1154
|
-
"windows_i686_msvc",
|
1155
|
-
"windows_x86_64_gnu",
|
1156
|
-
"windows_x86_64_gnullvm",
|
1157
|
-
"windows_x86_64_msvc",
|
1217
|
+
"windows_aarch64_gnullvm 0.48.0",
|
1218
|
+
"windows_aarch64_msvc 0.48.0",
|
1219
|
+
"windows_i686_gnu 0.48.0",
|
1220
|
+
"windows_i686_msvc 0.48.0",
|
1221
|
+
"windows_x86_64_gnu 0.48.0",
|
1222
|
+
"windows_x86_64_gnullvm 0.48.0",
|
1223
|
+
"windows_x86_64_msvc 0.48.0",
|
1158
1224
|
]
|
1159
1225
|
|
1160
1226
|
[[package]]
|
1161
1227
|
name = "windows_aarch64_gnullvm"
|
1162
|
-
version = "0.42.
|
1228
|
+
version = "0.42.2"
|
1163
1229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1164
|
-
checksum = "
|
1230
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
1231
|
+
|
1232
|
+
[[package]]
|
1233
|
+
name = "windows_aarch64_gnullvm"
|
1234
|
+
version = "0.48.0"
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1236
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
1165
1237
|
|
1166
1238
|
[[package]]
|
1167
1239
|
name = "windows_aarch64_msvc"
|
1168
|
-
version = "0.42.
|
1240
|
+
version = "0.42.2"
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1242
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
1243
|
+
|
1244
|
+
[[package]]
|
1245
|
+
name = "windows_aarch64_msvc"
|
1246
|
+
version = "0.48.0"
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1248
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
1249
|
+
|
1250
|
+
[[package]]
|
1251
|
+
name = "windows_i686_gnu"
|
1252
|
+
version = "0.42.2"
|
1169
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1170
|
-
checksum = "
|
1254
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
1171
1255
|
|
1172
1256
|
[[package]]
|
1173
1257
|
name = "windows_i686_gnu"
|
1174
|
-
version = "0.
|
1258
|
+
version = "0.48.0"
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1260
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
1261
|
+
|
1262
|
+
[[package]]
|
1263
|
+
name = "windows_i686_msvc"
|
1264
|
+
version = "0.42.2"
|
1175
1265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1176
|
-
checksum = "
|
1266
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
1177
1267
|
|
1178
1268
|
[[package]]
|
1179
1269
|
name = "windows_i686_msvc"
|
1180
|
-
version = "0.
|
1270
|
+
version = "0.48.0"
|
1181
1271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1182
|
-
checksum = "
|
1272
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
1183
1273
|
|
1184
1274
|
[[package]]
|
1185
1275
|
name = "windows_x86_64_gnu"
|
1186
|
-
version = "0.42.
|
1276
|
+
version = "0.42.2"
|
1187
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1188
|
-
checksum = "
|
1278
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
1279
|
+
|
1280
|
+
[[package]]
|
1281
|
+
name = "windows_x86_64_gnu"
|
1282
|
+
version = "0.48.0"
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1284
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
1285
|
+
|
1286
|
+
[[package]]
|
1287
|
+
name = "windows_x86_64_gnullvm"
|
1288
|
+
version = "0.42.2"
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1290
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
1189
1291
|
|
1190
1292
|
[[package]]
|
1191
1293
|
name = "windows_x86_64_gnullvm"
|
1192
|
-
version = "0.
|
1294
|
+
version = "0.48.0"
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1296
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
1297
|
+
|
1298
|
+
[[package]]
|
1299
|
+
name = "windows_x86_64_msvc"
|
1300
|
+
version = "0.42.2"
|
1193
1301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1194
|
-
checksum = "
|
1302
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
1195
1303
|
|
1196
1304
|
[[package]]
|
1197
1305
|
name = "windows_x86_64_msvc"
|
1198
|
-
version = "0.
|
1306
|
+
version = "0.48.0"
|
1199
1307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1200
|
-
checksum = "
|
1308
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
tzf (0.
|
4
|
+
tzf (0.4.1)
|
5
5
|
rb_sys (~> 0.9)
|
6
6
|
|
7
7
|
GEM
|
@@ -11,49 +11,49 @@ GEM
|
|
11
11
|
diff-lcs (1.5.0)
|
12
12
|
json (2.6.3)
|
13
13
|
parallel (1.22.1)
|
14
|
-
parser (3.2.
|
14
|
+
parser (3.2.1.1)
|
15
15
|
ast (~> 2.4.1)
|
16
16
|
rainbow (3.1.1)
|
17
17
|
rake (13.0.6)
|
18
18
|
rake-compiler (1.2.1)
|
19
19
|
rake
|
20
|
-
rb_sys (0.9.
|
21
|
-
regexp_parser (2.
|
20
|
+
rb_sys (0.9.70)
|
21
|
+
regexp_parser (2.7.0)
|
22
22
|
rexml (3.2.5)
|
23
23
|
rspec (3.12.0)
|
24
24
|
rspec-core (~> 3.12.0)
|
25
25
|
rspec-expectations (~> 3.12.0)
|
26
26
|
rspec-mocks (~> 3.12.0)
|
27
|
-
rspec-core (3.12.
|
27
|
+
rspec-core (3.12.1)
|
28
28
|
rspec-support (~> 3.12.0)
|
29
29
|
rspec-expectations (3.12.2)
|
30
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
31
31
|
rspec-support (~> 3.12.0)
|
32
|
-
rspec-mocks (3.12.
|
32
|
+
rspec-mocks (3.12.4)
|
33
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
34
|
rspec-support (~> 3.12.0)
|
35
35
|
rspec-support (3.12.0)
|
36
|
-
rubocop (1.
|
36
|
+
rubocop (1.48.1)
|
37
37
|
json (~> 2.3)
|
38
38
|
parallel (~> 1.10)
|
39
|
-
parser (>= 3.
|
39
|
+
parser (>= 3.2.0.0)
|
40
40
|
rainbow (>= 2.2.2, < 4.0)
|
41
41
|
regexp_parser (>= 1.8, < 3.0)
|
42
42
|
rexml (>= 3.2.5, < 4.0)
|
43
|
-
rubocop-ast (>= 1.
|
43
|
+
rubocop-ast (>= 1.26.0, < 2.0)
|
44
44
|
ruby-progressbar (~> 1.7)
|
45
|
-
unicode-display_width (>=
|
46
|
-
rubocop-ast (1.
|
47
|
-
parser (>= 3.
|
45
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
46
|
+
rubocop-ast (1.28.0)
|
47
|
+
parser (>= 3.2.1.0)
|
48
48
|
rubocop-capybara (2.17.1)
|
49
49
|
rubocop (~> 1.41)
|
50
50
|
rubocop-rake (0.6.0)
|
51
51
|
rubocop (~> 1.0)
|
52
|
-
rubocop-rspec (2.
|
52
|
+
rubocop-rspec (2.19.0)
|
53
53
|
rubocop (~> 1.33)
|
54
54
|
rubocop-capybara (~> 2.17)
|
55
|
-
ruby-progressbar (1.
|
56
|
-
unicode-display_width (2.
|
55
|
+
ruby-progressbar (1.13.0)
|
56
|
+
unicode-display_width (2.4.2)
|
57
57
|
|
58
58
|
PLATFORMS
|
59
59
|
x86_64-linux
|
data/ext/tzf/Cargo.lock
CHANGED
@@ -836,7 +836,7 @@ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
|
836
836
|
|
837
837
|
[[package]]
|
838
838
|
name = "remove_dir_all"
|
839
|
-
version = "0.
|
839
|
+
version = "0.8.0"
|
840
840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
841
841
|
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
842
842
|
dependencies = [
|
data/ext/tzf/Cargo.toml
CHANGED
data/lib/tzf/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tzf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin McCormack
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rb_sys
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
- !ruby/object:Gem::Version
|
104
104
|
version: 3.4.6
|
105
105
|
requirements: []
|
106
|
-
rubygems_version: 3.4.
|
106
|
+
rubygems_version: 3.4.10
|
107
107
|
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: Ruby time zone lookup interface using tzf-rs
|