gtfs-analyzer 0.14.0__tar.gz

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.
Files changed (97) hide show
  1. gtfs_analyzer-0.14.0/Cargo.lock +1265 -0
  2. gtfs_analyzer-0.14.0/Cargo.toml +22 -0
  3. gtfs_analyzer-0.14.0/LICENSE +21 -0
  4. gtfs_analyzer-0.14.0/PKG-INFO +833 -0
  5. gtfs_analyzer-0.14.0/README.md +811 -0
  6. gtfs_analyzer-0.14.0/crates/config/Cargo.toml +13 -0
  7. gtfs_analyzer-0.14.0/crates/config/src/lib.rs +1247 -0
  8. gtfs_analyzer-0.14.0/crates/core/Cargo.toml +13 -0
  9. gtfs_analyzer-0.14.0/crates/core/src/enums.rs +229 -0
  10. gtfs_analyzer-0.14.0/crates/core/src/lib.rs +18 -0
  11. gtfs_analyzer-0.14.0/crates/core/src/metrics.rs +80 -0
  12. gtfs_analyzer-0.14.0/crates/core/src/notice.rs +71 -0
  13. gtfs_analyzer-0.14.0/crates/core/src/reports.rs +112 -0
  14. gtfs_analyzer-0.14.0/crates/core/src/result.rs +184 -0
  15. gtfs_analyzer-0.14.0/crates/pipeline/Cargo.toml +47 -0
  16. gtfs_analyzer-0.14.0/crates/pipeline/examples/baseline.rs +127 -0
  17. gtfs_analyzer-0.14.0/crates/pipeline/examples/regress.rs +86 -0
  18. gtfs_analyzer-0.14.0/crates/pipeline/src/decompress_guard.rs +326 -0
  19. gtfs_analyzer-0.14.0/crates/pipeline/src/k1_html_elements.rs +149 -0
  20. gtfs_analyzer-0.14.0/crates/pipeline/src/k1_html_entities.rs +2158 -0
  21. gtfs_analyzer-0.14.0/crates/pipeline/src/k1_parse.rs +5422 -0
  22. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/agency.rs +562 -0
  23. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/agency_jp.rs +28 -0
  24. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/areas.rs +28 -0
  25. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/attributions.rs +283 -0
  26. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/bcp47_grandfathered.rs +44 -0
  27. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/booking_rules.rs +1114 -0
  28. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/calendar.rs +396 -0
  29. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/calendar_dates.rs +791 -0
  30. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/common.rs +1701 -0
  31. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/fare_attributes.rs +511 -0
  32. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/fare_leg_join_rules.rs +37 -0
  33. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/fare_leg_rules.rs +83 -0
  34. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/fare_media.rs +193 -0
  35. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/fare_products.rs +209 -0
  36. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/fare_rules.rs +40 -0
  37. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/fare_transfer_rules.rs +406 -0
  38. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/feed_info.rs +305 -0
  39. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/frequencies.rs +500 -0
  40. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/iso4217_generated.rs +195 -0
  41. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/levels.rs +141 -0
  42. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/location_groups.rs +50 -0
  43. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/mod.rs +885 -0
  44. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/networks.rs +30 -0
  45. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/office_jp.rs +32 -0
  46. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/pathways.rs +883 -0
  47. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/pattern_jp.rs +45 -0
  48. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/rider_categories.rs +198 -0
  49. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/route_networks.rs +30 -0
  50. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/routes.rs +1347 -0
  51. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/routes_jp.rs +45 -0
  52. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/shapes.rs +1009 -0
  53. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/stop_areas.rs +26 -0
  54. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/stop_times.rs +5132 -0
  55. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/stops.rs +1123 -0
  56. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/timeframes.rs +321 -0
  57. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/transfers.rs +342 -0
  58. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/translatable_fields_generated.rs +276 -0
  59. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/translations.rs +608 -0
  60. gtfs_analyzer-0.14.0/crates/pipeline/src/k2/trips.rs +1040 -0
  61. gtfs_analyzer-0.14.0/crates/pipeline/src/k3_entity_graph.rs +1043 -0
  62. gtfs_analyzer-0.14.0/crates/pipeline/src/k4_cross_ref.rs +11614 -0
  63. gtfs_analyzer-0.14.0/crates/pipeline/src/k5_derived.rs +1330 -0
  64. gtfs_analyzer-0.14.0/crates/pipeline/src/k6_analytics.rs +19325 -0
  65. gtfs_analyzer-0.14.0/crates/pipeline/src/k7_reporting.rs +2654 -0
  66. gtfs_analyzer-0.14.0/crates/pipeline/src/lib.rs +2334 -0
  67. gtfs_analyzer-0.14.0/crates/pipeline/src/notice_factory.rs +64 -0
  68. gtfs_analyzer-0.14.0/crates/pipeline/src/recovery.rs +91 -0
  69. gtfs_analyzer-0.14.0/crates/pipeline/src/timing.rs +96 -0
  70. gtfs_analyzer-0.14.0/crates/pipeline/src/whitespace_suppression.rs +47 -0
  71. gtfs_analyzer-0.14.0/crates/pipeline/tests/coverage_debt.txt +17 -0
  72. gtfs_analyzer-0.14.0/crates/pipeline/tests/emit_proof.rs +3801 -0
  73. gtfs_analyzer-0.14.0/crates/pipeline/tests/field_none_ledger.txt +51 -0
  74. gtfs_analyzer-0.14.0/crates/pipeline/tests/integration.rs +6006 -0
  75. gtfs_analyzer-0.14.0/crates/pipeline/tests/jp_followup.rs +602 -0
  76. gtfs_analyzer-0.14.0/crates/pipeline/tests/opr_calendar_override.rs +269 -0
  77. gtfs_analyzer-0.14.0/crates/pipeline/tests/real_feed_mutation.rs +1808 -0
  78. gtfs_analyzer-0.14.0/crates/pipeline/tests/sample_feed_report.rs +68 -0
  79. gtfs_analyzer-0.14.0/crates/pipeline/tests/shared_fixture_ledger.txt +29 -0
  80. gtfs_analyzer-0.14.0/crates/pipeline/tests/spec_claims_ledger.txt +25 -0
  81. gtfs_analyzer-0.14.0/crates/pipeline/tests/spec_conformance.rs +315 -0
  82. gtfs_analyzer-0.14.0/crates/pipeline/tests/spec_coverage_ledger.txt +56 -0
  83. gtfs_analyzer-0.14.0/crates/python/Cargo.toml +19 -0
  84. gtfs_analyzer-0.14.0/crates/python/src/lib.rs +37 -0
  85. gtfs_analyzer-0.14.0/crates/rules/Cargo.toml +12 -0
  86. gtfs_analyzer-0.14.0/crates/rules/examples/fix_cosmetics.rs +76 -0
  87. gtfs_analyzer-0.14.0/crates/rules/examples/gen_rules.rs +232 -0
  88. gtfs_analyzer-0.14.0/crates/rules/examples/sync_cards.rs +320 -0
  89. gtfs_analyzer-0.14.0/crates/rules/src/lib.rs +2 -0
  90. gtfs_analyzer-0.14.0/crates/rules/src/registry.rs +2909 -0
  91. gtfs_analyzer-0.14.0/crates/rules/tests/card_consistency.rs +608 -0
  92. gtfs_analyzer-0.14.0/crates/rules/tests/emit_coverage.rs +193 -0
  93. gtfs_analyzer-0.14.0/crates/rules/tests/emit_identity.rs +241 -0
  94. gtfs_analyzer-0.14.0/crates/rules/tests/emit_identity_ledger.txt +24 -0
  95. gtfs_analyzer-0.14.0/crates/rules/tests/rules_doc_drift.rs +297 -0
  96. gtfs_analyzer-0.14.0/pyproject.toml +32 -0
  97. gtfs_analyzer-0.14.0/python/gtfs_analyzer/__init__.py +74 -0
@@ -0,0 +1,1265 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "android_system_properties"
13
+ version = "0.1.5"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
16
+ dependencies = [
17
+ "libc",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "arbitrary"
72
+ version = "1.4.2"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
75
+ dependencies = [
76
+ "derive_arbitrary",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "autocfg"
81
+ version = "1.5.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
84
+
85
+ [[package]]
86
+ name = "bumpalo"
87
+ version = "3.20.2"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
90
+
91
+ [[package]]
92
+ name = "cc"
93
+ version = "1.2.66"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
96
+ dependencies = [
97
+ "find-msvc-tools",
98
+ "shlex",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "cfg-if"
103
+ version = "1.0.4"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
106
+
107
+ [[package]]
108
+ name = "chrono"
109
+ version = "0.4.44"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
112
+ dependencies = [
113
+ "iana-time-zone",
114
+ "js-sys",
115
+ "num-traits",
116
+ "wasm-bindgen",
117
+ "windows-link",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "chrono-tz"
122
+ version = "0.10.4"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
125
+ dependencies = [
126
+ "chrono",
127
+ "phf",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "clap"
132
+ version = "4.6.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
135
+ dependencies = [
136
+ "clap_builder",
137
+ "clap_derive",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "clap_builder"
142
+ version = "4.6.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
145
+ dependencies = [
146
+ "anstream",
147
+ "anstyle",
148
+ "clap_lex",
149
+ "strsim",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "clap_derive"
154
+ version = "4.6.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
157
+ dependencies = [
158
+ "heck",
159
+ "proc-macro2",
160
+ "quote",
161
+ "syn",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "clap_lex"
166
+ version = "1.1.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
169
+
170
+ [[package]]
171
+ name = "colorchoice"
172
+ version = "1.0.5"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
175
+
176
+ [[package]]
177
+ name = "core-foundation-sys"
178
+ version = "0.8.7"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
181
+
182
+ [[package]]
183
+ name = "crc32fast"
184
+ version = "1.5.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
187
+ dependencies = [
188
+ "cfg-if",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "crossbeam-channel"
193
+ version = "0.5.15"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
196
+ dependencies = [
197
+ "crossbeam-utils",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "crossbeam-deque"
202
+ version = "0.8.6"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
205
+ dependencies = [
206
+ "crossbeam-epoch",
207
+ "crossbeam-utils",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "crossbeam-epoch"
212
+ version = "0.9.20"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
215
+ dependencies = [
216
+ "crossbeam-utils",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "crossbeam-utils"
221
+ version = "0.8.21"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
224
+
225
+ [[package]]
226
+ name = "deranged"
227
+ version = "0.5.8"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
230
+ dependencies = [
231
+ "powerfmt",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "derive_arbitrary"
236
+ version = "1.4.2"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
239
+ dependencies = [
240
+ "proc-macro2",
241
+ "quote",
242
+ "syn",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "displaydoc"
247
+ version = "0.2.5"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
250
+ dependencies = [
251
+ "proc-macro2",
252
+ "quote",
253
+ "syn",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "either"
258
+ version = "1.16.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
261
+
262
+ [[package]]
263
+ name = "equivalent"
264
+ version = "1.0.2"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
267
+
268
+ [[package]]
269
+ name = "find-msvc-tools"
270
+ version = "0.1.9"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
273
+
274
+ [[package]]
275
+ name = "flate2"
276
+ version = "1.1.9"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
279
+ dependencies = [
280
+ "crc32fast",
281
+ "miniz_oxide",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "form_urlencoded"
286
+ version = "1.2.2"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
289
+ dependencies = [
290
+ "percent-encoding",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "futures-core"
295
+ version = "0.3.32"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
298
+
299
+ [[package]]
300
+ name = "futures-task"
301
+ version = "0.3.32"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
304
+
305
+ [[package]]
306
+ name = "futures-util"
307
+ version = "0.3.32"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
310
+ dependencies = [
311
+ "futures-core",
312
+ "futures-task",
313
+ "pin-project-lite",
314
+ "slab",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "gtfs-analyzer"
319
+ version = "0.14.0"
320
+ dependencies = [
321
+ "chrono",
322
+ "clap",
323
+ "gtfs-config",
324
+ "gtfs-core",
325
+ "gtfs-pipeline",
326
+ "gtfs-rules",
327
+ "serde",
328
+ "serde_json",
329
+ "zip",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "gtfs-analyzer-python"
334
+ version = "0.14.0"
335
+ dependencies = [
336
+ "gtfs-config",
337
+ "gtfs-core",
338
+ "gtfs-pipeline",
339
+ "pyo3",
340
+ "serde_json",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "gtfs-config"
345
+ version = "0.14.0"
346
+ dependencies = [
347
+ "serde",
348
+ "serde_json",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "gtfs-core"
353
+ version = "0.14.0"
354
+ dependencies = [
355
+ "serde",
356
+ "serde_json",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "gtfs-pipeline"
361
+ version = "0.14.0"
362
+ dependencies = [
363
+ "chrono-tz",
364
+ "gtfs-config",
365
+ "gtfs-core",
366
+ "gtfs-rules",
367
+ "rayon",
368
+ "robust",
369
+ "rustc-hash",
370
+ "serde",
371
+ "serde_json",
372
+ "smol_str",
373
+ "url",
374
+ "web-sys",
375
+ "zip",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "gtfs-rules"
380
+ version = "0.14.0"
381
+ dependencies = [
382
+ "gtfs-core",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "gtfs-wasm"
387
+ version = "0.14.0"
388
+ dependencies = [
389
+ "gtfs-config",
390
+ "gtfs-core",
391
+ "gtfs-pipeline",
392
+ "js-sys",
393
+ "serde",
394
+ "serde_json",
395
+ "wasm-bindgen",
396
+ "wasm-bindgen-rayon",
397
+ "web-sys",
398
+ "zip",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "hashbrown"
403
+ version = "0.17.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
406
+
407
+ [[package]]
408
+ name = "heck"
409
+ version = "0.5.0"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
412
+
413
+ [[package]]
414
+ name = "iana-time-zone"
415
+ version = "0.1.65"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
418
+ dependencies = [
419
+ "android_system_properties",
420
+ "core-foundation-sys",
421
+ "iana-time-zone-haiku",
422
+ "js-sys",
423
+ "log",
424
+ "wasm-bindgen",
425
+ "windows-core",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "iana-time-zone-haiku"
430
+ version = "0.1.2"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
433
+ dependencies = [
434
+ "cc",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "icu_collections"
439
+ version = "2.2.0"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
442
+ dependencies = [
443
+ "displaydoc",
444
+ "potential_utf",
445
+ "utf8_iter",
446
+ "yoke",
447
+ "zerofrom",
448
+ "zerovec",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "icu_locale_core"
453
+ version = "2.2.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
456
+ dependencies = [
457
+ "displaydoc",
458
+ "litemap",
459
+ "tinystr",
460
+ "writeable",
461
+ "zerovec",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "icu_normalizer"
466
+ version = "2.2.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
469
+ dependencies = [
470
+ "icu_collections",
471
+ "icu_normalizer_data",
472
+ "icu_properties",
473
+ "icu_provider",
474
+ "smallvec",
475
+ "zerovec",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "icu_normalizer_data"
480
+ version = "2.2.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
483
+
484
+ [[package]]
485
+ name = "icu_properties"
486
+ version = "2.2.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
489
+ dependencies = [
490
+ "icu_collections",
491
+ "icu_locale_core",
492
+ "icu_properties_data",
493
+ "icu_provider",
494
+ "zerotrie",
495
+ "zerovec",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "icu_properties_data"
500
+ version = "2.2.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
503
+
504
+ [[package]]
505
+ name = "icu_provider"
506
+ version = "2.2.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
509
+ dependencies = [
510
+ "displaydoc",
511
+ "icu_locale_core",
512
+ "writeable",
513
+ "yoke",
514
+ "zerofrom",
515
+ "zerotrie",
516
+ "zerovec",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "idna"
521
+ version = "1.1.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
524
+ dependencies = [
525
+ "idna_adapter",
526
+ "smallvec",
527
+ "utf8_iter",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "idna_adapter"
532
+ version = "1.2.2"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
535
+ dependencies = [
536
+ "icu_normalizer",
537
+ "icu_properties",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "indexmap"
542
+ version = "2.14.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
545
+ dependencies = [
546
+ "equivalent",
547
+ "hashbrown",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "is_terminal_polyfill"
552
+ version = "1.70.2"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
555
+
556
+ [[package]]
557
+ name = "itoa"
558
+ version = "1.0.18"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
561
+
562
+ [[package]]
563
+ name = "js-sys"
564
+ version = "0.3.98"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
567
+ dependencies = [
568
+ "cfg-if",
569
+ "futures-util",
570
+ "once_cell",
571
+ "wasm-bindgen",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "libc"
576
+ version = "0.2.186"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
579
+
580
+ [[package]]
581
+ name = "litemap"
582
+ version = "0.8.2"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
585
+
586
+ [[package]]
587
+ name = "log"
588
+ version = "0.4.29"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
591
+
592
+ [[package]]
593
+ name = "memchr"
594
+ version = "2.8.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
597
+
598
+ [[package]]
599
+ name = "miniz_oxide"
600
+ version = "0.8.9"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
603
+ dependencies = [
604
+ "adler2",
605
+ "simd-adler32",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "num-conv"
610
+ version = "0.2.1"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
613
+
614
+ [[package]]
615
+ name = "num-traits"
616
+ version = "0.2.19"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
619
+ dependencies = [
620
+ "autocfg",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "once_cell"
625
+ version = "1.21.4"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
628
+
629
+ [[package]]
630
+ name = "once_cell_polyfill"
631
+ version = "1.70.2"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
634
+
635
+ [[package]]
636
+ name = "percent-encoding"
637
+ version = "2.3.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
640
+
641
+ [[package]]
642
+ name = "phf"
643
+ version = "0.12.1"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
646
+ dependencies = [
647
+ "phf_shared",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "phf_shared"
652
+ version = "0.12.1"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
655
+ dependencies = [
656
+ "siphasher",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "pin-project-lite"
661
+ version = "0.2.17"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
664
+
665
+ [[package]]
666
+ name = "portable-atomic"
667
+ version = "1.15.0"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
670
+
671
+ [[package]]
672
+ name = "potential_utf"
673
+ version = "0.1.5"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
676
+ dependencies = [
677
+ "zerovec",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "powerfmt"
682
+ version = "0.2.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
685
+
686
+ [[package]]
687
+ name = "proc-macro2"
688
+ version = "1.0.106"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
691
+ dependencies = [
692
+ "unicode-ident",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "pyo3"
697
+ version = "0.29.2"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
700
+ dependencies = [
701
+ "libc",
702
+ "once_cell",
703
+ "portable-atomic",
704
+ "pyo3-build-config",
705
+ "pyo3-ffi",
706
+ "pyo3-macros",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "pyo3-build-config"
711
+ version = "0.29.2"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
714
+ dependencies = [
715
+ "target-lexicon",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "pyo3-ffi"
720
+ version = "0.29.2"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
723
+ dependencies = [
724
+ "libc",
725
+ "pyo3-build-config",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "pyo3-macros"
730
+ version = "0.29.2"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
733
+ dependencies = [
734
+ "proc-macro2",
735
+ "pyo3-macros-backend",
736
+ "quote",
737
+ "syn",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "pyo3-macros-backend"
742
+ version = "0.29.2"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
745
+ dependencies = [
746
+ "heck",
747
+ "proc-macro2",
748
+ "quote",
749
+ "syn",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "quote"
754
+ version = "1.0.45"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
757
+ dependencies = [
758
+ "proc-macro2",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "rayon"
763
+ version = "1.12.0"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
766
+ dependencies = [
767
+ "either",
768
+ "rayon-core",
769
+ "wasm_sync",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "rayon-core"
774
+ version = "1.13.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
777
+ dependencies = [
778
+ "crossbeam-deque",
779
+ "crossbeam-utils",
780
+ "wasm_sync",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "robust"
785
+ version = "1.2.0"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
788
+
789
+ [[package]]
790
+ name = "rustc-hash"
791
+ version = "2.1.2"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
794
+
795
+ [[package]]
796
+ name = "rustversion"
797
+ version = "1.0.22"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
800
+
801
+ [[package]]
802
+ name = "serde"
803
+ version = "1.0.228"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
806
+ dependencies = [
807
+ "serde_core",
808
+ "serde_derive",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "serde_core"
813
+ version = "1.0.228"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
816
+ dependencies = [
817
+ "serde_derive",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "serde_derive"
822
+ version = "1.0.228"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
825
+ dependencies = [
826
+ "proc-macro2",
827
+ "quote",
828
+ "syn",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "serde_json"
833
+ version = "1.0.149"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
836
+ dependencies = [
837
+ "itoa",
838
+ "memchr",
839
+ "serde",
840
+ "serde_core",
841
+ "zmij",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "shlex"
846
+ version = "2.0.1"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
849
+
850
+ [[package]]
851
+ name = "simd-adler32"
852
+ version = "0.3.9"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
855
+
856
+ [[package]]
857
+ name = "siphasher"
858
+ version = "1.0.3"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
861
+
862
+ [[package]]
863
+ name = "slab"
864
+ version = "0.4.12"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
867
+
868
+ [[package]]
869
+ name = "smallvec"
870
+ version = "1.15.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
873
+
874
+ [[package]]
875
+ name = "smol_str"
876
+ version = "0.2.2"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
879
+ dependencies = [
880
+ "serde",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "stable_deref_trait"
885
+ version = "1.2.1"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
888
+
889
+ [[package]]
890
+ name = "strsim"
891
+ version = "0.11.1"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
894
+
895
+ [[package]]
896
+ name = "syn"
897
+ version = "2.0.117"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
900
+ dependencies = [
901
+ "proc-macro2",
902
+ "quote",
903
+ "unicode-ident",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "synstructure"
908
+ version = "0.13.2"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
911
+ dependencies = [
912
+ "proc-macro2",
913
+ "quote",
914
+ "syn",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "target-lexicon"
919
+ version = "0.13.5"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
922
+
923
+ [[package]]
924
+ name = "thiserror"
925
+ version = "2.0.18"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
928
+ dependencies = [
929
+ "thiserror-impl",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "thiserror-impl"
934
+ version = "2.0.18"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
937
+ dependencies = [
938
+ "proc-macro2",
939
+ "quote",
940
+ "syn",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "time"
945
+ version = "0.3.47"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
948
+ dependencies = [
949
+ "deranged",
950
+ "num-conv",
951
+ "powerfmt",
952
+ "serde_core",
953
+ "time-core",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "time-core"
958
+ version = "0.1.8"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
961
+
962
+ [[package]]
963
+ name = "tinystr"
964
+ version = "0.8.3"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
967
+ dependencies = [
968
+ "displaydoc",
969
+ "zerovec",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "unicode-ident"
974
+ version = "1.0.24"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
977
+
978
+ [[package]]
979
+ name = "url"
980
+ version = "2.5.8"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
983
+ dependencies = [
984
+ "form_urlencoded",
985
+ "idna",
986
+ "percent-encoding",
987
+ "serde",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "utf8_iter"
992
+ version = "1.0.4"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
995
+
996
+ [[package]]
997
+ name = "utf8parse"
998
+ version = "0.2.2"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1001
+
1002
+ [[package]]
1003
+ name = "wasm-bindgen"
1004
+ version = "0.2.121"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1007
+ dependencies = [
1008
+ "cfg-if",
1009
+ "once_cell",
1010
+ "rustversion",
1011
+ "wasm-bindgen-macro",
1012
+ "wasm-bindgen-shared",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "wasm-bindgen-macro"
1017
+ version = "0.2.121"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1020
+ dependencies = [
1021
+ "quote",
1022
+ "wasm-bindgen-macro-support",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "wasm-bindgen-macro-support"
1027
+ version = "0.2.121"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1030
+ dependencies = [
1031
+ "bumpalo",
1032
+ "proc-macro2",
1033
+ "quote",
1034
+ "syn",
1035
+ "wasm-bindgen-shared",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "wasm-bindgen-rayon"
1040
+ version = "1.3.0"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "9a16c60a56c81e4dc3b9c43d76ba5633e1c0278211d59a9cb07d61b6cd1c6583"
1043
+ dependencies = [
1044
+ "crossbeam-channel",
1045
+ "js-sys",
1046
+ "rayon",
1047
+ "wasm-bindgen",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "wasm-bindgen-shared"
1052
+ version = "0.2.121"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1055
+ dependencies = [
1056
+ "unicode-ident",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "wasm_sync"
1061
+ version = "0.1.2"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "cff360cade7fec41ff0e9d2cda57fe58258c5f16def0e21302394659e6bbb0ea"
1064
+ dependencies = [
1065
+ "js-sys",
1066
+ "wasm-bindgen",
1067
+ "web-sys",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "web-sys"
1072
+ version = "0.3.98"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
1075
+ dependencies = [
1076
+ "js-sys",
1077
+ "wasm-bindgen",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "windows-core"
1082
+ version = "0.62.2"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1085
+ dependencies = [
1086
+ "windows-implement",
1087
+ "windows-interface",
1088
+ "windows-link",
1089
+ "windows-result",
1090
+ "windows-strings",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "windows-implement"
1095
+ version = "0.60.2"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1098
+ dependencies = [
1099
+ "proc-macro2",
1100
+ "quote",
1101
+ "syn",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "windows-interface"
1106
+ version = "0.59.3"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1109
+ dependencies = [
1110
+ "proc-macro2",
1111
+ "quote",
1112
+ "syn",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "windows-link"
1117
+ version = "0.2.1"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1120
+
1121
+ [[package]]
1122
+ name = "windows-result"
1123
+ version = "0.4.1"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1126
+ dependencies = [
1127
+ "windows-link",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "windows-strings"
1132
+ version = "0.5.1"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1135
+ dependencies = [
1136
+ "windows-link",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "windows-sys"
1141
+ version = "0.61.2"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1144
+ dependencies = [
1145
+ "windows-link",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "writeable"
1150
+ version = "0.6.3"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1153
+
1154
+ [[package]]
1155
+ name = "yoke"
1156
+ version = "0.8.2"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
1159
+ dependencies = [
1160
+ "stable_deref_trait",
1161
+ "yoke-derive",
1162
+ "zerofrom",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "yoke-derive"
1167
+ version = "0.8.2"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1170
+ dependencies = [
1171
+ "proc-macro2",
1172
+ "quote",
1173
+ "syn",
1174
+ "synstructure",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "zerofrom"
1179
+ version = "0.1.8"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1182
+ dependencies = [
1183
+ "zerofrom-derive",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "zerofrom-derive"
1188
+ version = "0.1.7"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1191
+ dependencies = [
1192
+ "proc-macro2",
1193
+ "quote",
1194
+ "syn",
1195
+ "synstructure",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "zerotrie"
1200
+ version = "0.2.4"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1203
+ dependencies = [
1204
+ "displaydoc",
1205
+ "yoke",
1206
+ "zerofrom",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "zerovec"
1211
+ version = "0.11.6"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1214
+ dependencies = [
1215
+ "yoke",
1216
+ "zerofrom",
1217
+ "zerovec-derive",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "zerovec-derive"
1222
+ version = "0.11.3"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1225
+ dependencies = [
1226
+ "proc-macro2",
1227
+ "quote",
1228
+ "syn",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "zip"
1233
+ version = "2.4.2"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
1236
+ dependencies = [
1237
+ "arbitrary",
1238
+ "crc32fast",
1239
+ "crossbeam-utils",
1240
+ "displaydoc",
1241
+ "flate2",
1242
+ "indexmap",
1243
+ "memchr",
1244
+ "thiserror",
1245
+ "time",
1246
+ "zopfli",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "zmij"
1251
+ version = "1.0.21"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1254
+
1255
+ [[package]]
1256
+ name = "zopfli"
1257
+ version = "0.8.3"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
1260
+ dependencies = [
1261
+ "bumpalo",
1262
+ "crc32fast",
1263
+ "log",
1264
+ "simd-adler32",
1265
+ ]