geodb-rs 0.1.3__tar.gz → 0.1.5__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 (65) hide show
  1. geodb_rs-0.1.5/Cargo.lock +2560 -0
  2. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/Cargo.toml +15 -6
  3. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/PKG-INFO +1 -1
  4. geodb_rs-0.1.5/crates/geodb-core/Cargo.toml +73 -0
  5. geodb_rs-0.1.5/crates/geodb-core/README.md +527 -0
  6. geodb_rs-0.1.5/crates/geodb-core/benches/benchmarks.rs +98 -0
  7. geodb_rs-0.1.5/crates/geodb-core/build.rs +13 -0
  8. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-core/data/city_meta.json +48 -17
  9. geodb_rs-0.1.5/crates/geodb-core/data/countries+states+cities.json.gz +0 -0
  10. geodb_rs-0.1.5/crates/geodb-core/data/geodb.flat.comp.blobs.bin +0 -0
  11. geodb_rs-0.1.5/crates/geodb-core/src/alias.rs +219 -0
  12. geodb_rs-0.1.5/crates/geodb-core/src/api.rs +145 -0
  13. geodb_rs-0.1.5/crates/geodb-core/src/bin/profile_search.rs +23 -0
  14. geodb_rs-0.1.5/crates/geodb-core/src/common/mod.rs +104 -0
  15. geodb_rs-0.1.5/crates/geodb-core/src/common/raw.rs +255 -0
  16. geodb_rs-0.1.5/crates/geodb-core/src/common/raw_normalize.rs +27 -0
  17. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-core/src/error.rs +4 -0
  18. geodb_rs-0.1.5/crates/geodb-core/src/legacy_model/convert.rs +183 -0
  19. geodb_rs-0.1.3/crates/geodb-core/src/lib.rs → geodb_rs-0.1.5/crates/geodb-core/src/legacy_model/mod.rs +12 -22
  20. geodb_rs-0.1.5/crates/geodb-core/src/legacy_model/nested.rs +193 -0
  21. geodb_rs-0.1.5/crates/geodb-core/src/legacy_model/search.rs +575 -0
  22. geodb_rs-0.1.5/crates/geodb-core/src/lib.rs +48 -0
  23. geodb_rs-0.1.5/crates/geodb-core/src/loader/binary_load.rs +26 -0
  24. geodb_rs-0.1.5/crates/geodb-core/src/loader/builder.rs +161 -0
  25. geodb_rs-0.1.5/crates/geodb-core/src/loader/common_io.rs +34 -0
  26. geodb_rs-0.1.5/crates/geodb-core/src/loader/mod.rs +98 -0
  27. geodb_rs-0.1.5/crates/geodb-core/src/model/convert.rs +255 -0
  28. geodb_rs-0.1.5/crates/geodb-core/src/model/flat.rs +244 -0
  29. geodb_rs-0.1.5/crates/geodb-core/src/model/mod.rs +69 -0
  30. geodb_rs-0.1.5/crates/geodb-core/src/model/search.rs +441 -0
  31. geodb_rs-0.1.5/crates/geodb-core/src/prelude.rs +29 -0
  32. geodb_rs-0.1.5/crates/geodb-core/src/spatial.rs +129 -0
  33. geodb_rs-0.1.5/crates/geodb-core/src/text.rs +157 -0
  34. geodb_rs-0.1.5/crates/geodb-core/src/traits.rs +182 -0
  35. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-core/tests/basic.rs +6 -6
  36. geodb_rs-0.1.5/crates/geodb-core/tests/city_meta_alias_search.rs +85 -0
  37. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-py/Cargo.toml +9 -7
  38. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-py/geodb_rs_data/city_meta.json +48 -17
  39. geodb_rs-0.1.5/crates/geodb-py/geodb_rs_data/countries+states+cities.json.gz +0 -0
  40. geodb_rs-0.1.5/crates/geodb-py/geodb_rs_data/geodb.flat.comp.blobs.bin +0 -0
  41. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-py/src/lib.rs +140 -45
  42. geodb_rs-0.1.5/geodb_rs_data/geodb.flat.comp.blobs.bin +0 -0
  43. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/pyproject.toml +2 -2
  44. geodb_rs-0.1.3/Cargo.lock +0 -970
  45. geodb_rs-0.1.3/crates/geodb-core/Cargo.toml +0 -41
  46. geodb_rs-0.1.3/crates/geodb-core/README.md +0 -369
  47. geodb_rs-0.1.3/crates/geodb-core/benches/benchmarks.rs +0 -11
  48. geodb_rs-0.1.3/crates/geodb-core/data/countries+states+cities.json.gz +0 -0
  49. geodb_rs-0.1.3/crates/geodb-core/data/countries+states+cities.json.gz.ALL.bin +0 -0
  50. geodb_rs-0.1.3/crates/geodb-core/src/alias.rs +0 -158
  51. geodb_rs-0.1.3/crates/geodb-core/src/api.rs +0 -146
  52. geodb_rs-0.1.3/crates/geodb-core/src/cache.rs +0 -1
  53. geodb_rs-0.1.3/crates/geodb-core/src/filter.rs +0 -1
  54. geodb_rs-0.1.3/crates/geodb-core/src/loader.rs +0 -160
  55. geodb_rs-0.1.3/crates/geodb-core/src/model.rs +0 -716
  56. geodb_rs-0.1.3/crates/geodb-core/src/phone.rs +0 -23
  57. geodb_rs-0.1.3/crates/geodb-core/src/prelude.rs +0 -12
  58. geodb_rs-0.1.3/crates/geodb-core/src/region.rs +0 -22
  59. geodb_rs-0.1.3/crates/geodb-py/geodb_rs_data/countries+states+cities.json.gz +0 -0
  60. geodb_rs-0.1.3/crates/geodb-py/geodb_rs_data/countries+states+cities.json.gz.ALL.bin +0 -0
  61. geodb_rs-0.1.3/geodb_rs_data/countries+states+cities.json.gz +0 -0
  62. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/README.md +0 -0
  63. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-py/README.md +0 -0
  64. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-py/example.py +0 -0
  65. {geodb_rs-0.1.3 → geodb_rs-0.1.5}/crates/geodb-py/tests/test_basic.py +0 -0
@@ -0,0 +1,2560 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "0.6.21"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.13"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "0.2.7"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys 0.61.2",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anyhow"
78
+ version = "1.0.100"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
81
+
82
+ [[package]]
83
+ name = "askama"
84
+ version = "0.13.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "5d4744ed2eef2645831b441d8f5459689ade2ab27c854488fbab1fbe94fce1a7"
87
+ dependencies = [
88
+ "askama_derive",
89
+ "itoa",
90
+ "percent-encoding",
91
+ "serde",
92
+ "serde_json",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "askama_derive"
97
+ version = "0.13.1"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "d661e0f57be36a5c14c48f78d09011e67e0cb618f269cca9f2fd8d15b68c46ac"
100
+ dependencies = [
101
+ "askama_parser",
102
+ "basic-toml",
103
+ "memchr",
104
+ "proc-macro2",
105
+ "quote",
106
+ "rustc-hash",
107
+ "serde",
108
+ "serde_derive",
109
+ "syn",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "askama_parser"
114
+ version = "0.13.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "cf315ce6524c857bb129ff794935cf6d42c82a6cff60526fe2a63593de4d0d4f"
117
+ dependencies = [
118
+ "memchr",
119
+ "serde",
120
+ "serde_derive",
121
+ "winnow",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "atomic-waker"
126
+ version = "1.1.2"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
129
+
130
+ [[package]]
131
+ name = "autocfg"
132
+ version = "1.5.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
135
+
136
+ [[package]]
137
+ name = "base64"
138
+ version = "0.22.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
141
+
142
+ [[package]]
143
+ name = "basic-toml"
144
+ version = "0.1.10"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
147
+ dependencies = [
148
+ "serde",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "bincode"
153
+ version = "1.3.3"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
156
+ dependencies = [
157
+ "serde",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "bitflags"
162
+ version = "2.10.0"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
165
+
166
+ [[package]]
167
+ name = "borsh"
168
+ version = "1.6.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
171
+ dependencies = [
172
+ "cfg_aliases",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "bumpalo"
177
+ version = "3.19.0"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
180
+
181
+ [[package]]
182
+ name = "bytes"
183
+ version = "1.11.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
186
+
187
+ [[package]]
188
+ name = "camino"
189
+ version = "1.2.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
192
+ dependencies = [
193
+ "serde_core",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "cargo-platform"
198
+ version = "0.1.9"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
201
+ dependencies = [
202
+ "serde",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "cargo_metadata"
207
+ version = "0.19.2"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
210
+ dependencies = [
211
+ "camino",
212
+ "cargo-platform",
213
+ "semver",
214
+ "serde",
215
+ "serde_json",
216
+ "thiserror 2.0.17",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "cast"
221
+ version = "0.3.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
224
+
225
+ [[package]]
226
+ name = "cc"
227
+ version = "1.2.49"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
230
+ dependencies = [
231
+ "find-msvc-tools",
232
+ "shlex",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "cfg-if"
237
+ version = "1.0.4"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
240
+
241
+ [[package]]
242
+ name = "cfg_aliases"
243
+ version = "0.2.1"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
246
+
247
+ [[package]]
248
+ name = "ciborium"
249
+ version = "0.2.2"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
252
+ dependencies = [
253
+ "ciborium-io",
254
+ "ciborium-ll",
255
+ "serde",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "ciborium-io"
260
+ version = "0.2.2"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
263
+
264
+ [[package]]
265
+ name = "ciborium-ll"
266
+ version = "0.2.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
269
+ dependencies = [
270
+ "ciborium-io",
271
+ "half",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "clap"
276
+ version = "4.5.53"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
279
+ dependencies = [
280
+ "clap_builder",
281
+ "clap_derive",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "clap_builder"
286
+ version = "4.5.53"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
289
+ dependencies = [
290
+ "anstream",
291
+ "anstyle",
292
+ "clap_lex",
293
+ "strsim",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "clap_derive"
298
+ version = "4.5.49"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
301
+ dependencies = [
302
+ "heck",
303
+ "proc-macro2",
304
+ "quote",
305
+ "syn",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "clap_lex"
310
+ version = "0.7.6"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
313
+
314
+ [[package]]
315
+ name = "colorchoice"
316
+ version = "1.0.4"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
319
+
320
+ [[package]]
321
+ name = "console_error_panic_hook"
322
+ version = "0.1.7"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
325
+ dependencies = [
326
+ "cfg-if",
327
+ "wasm-bindgen",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "crc32fast"
332
+ version = "1.5.0"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
335
+ dependencies = [
336
+ "cfg-if",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "criterion"
341
+ version = "0.7.0"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
344
+ dependencies = [
345
+ "anes",
346
+ "cast",
347
+ "ciborium",
348
+ "clap",
349
+ "criterion-plot",
350
+ "itertools",
351
+ "num-traits",
352
+ "oorandom",
353
+ "plotters",
354
+ "rayon",
355
+ "regex",
356
+ "serde",
357
+ "serde_json",
358
+ "tinytemplate",
359
+ "walkdir",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "criterion-plot"
364
+ version = "0.6.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
367
+ dependencies = [
368
+ "cast",
369
+ "itertools",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "crossbeam-deque"
374
+ version = "0.8.6"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
377
+ dependencies = [
378
+ "crossbeam-epoch",
379
+ "crossbeam-utils",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "crossbeam-epoch"
384
+ version = "0.9.18"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
387
+ dependencies = [
388
+ "crossbeam-utils",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "crossbeam-utils"
393
+ version = "0.8.21"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
396
+
397
+ [[package]]
398
+ name = "crunchy"
399
+ version = "0.2.4"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
402
+
403
+ [[package]]
404
+ name = "deunicode"
405
+ version = "1.6.2"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
408
+
409
+ [[package]]
410
+ name = "displaydoc"
411
+ version = "0.2.5"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
414
+ dependencies = [
415
+ "proc-macro2",
416
+ "quote",
417
+ "syn",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "either"
422
+ version = "1.15.0"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
425
+
426
+ [[package]]
427
+ name = "equivalent"
428
+ version = "1.0.2"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
431
+
432
+ [[package]]
433
+ name = "errno"
434
+ version = "0.3.14"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
437
+ dependencies = [
438
+ "libc",
439
+ "windows-sys 0.61.2",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "fastrand"
444
+ version = "2.3.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
447
+
448
+ [[package]]
449
+ name = "find-msvc-tools"
450
+ version = "0.1.5"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
453
+
454
+ [[package]]
455
+ name = "flate2"
456
+ version = "1.1.5"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
459
+ dependencies = [
460
+ "crc32fast",
461
+ "miniz_oxide",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "form_urlencoded"
466
+ version = "1.2.2"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
469
+ dependencies = [
470
+ "percent-encoding",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "fs-err"
475
+ version = "2.11.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
478
+ dependencies = [
479
+ "autocfg",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "futures-channel"
484
+ version = "0.3.31"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
487
+ dependencies = [
488
+ "futures-core",
489
+ "futures-sink",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "futures-core"
494
+ version = "0.3.31"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
497
+
498
+ [[package]]
499
+ name = "futures-io"
500
+ version = "0.3.31"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
503
+
504
+ [[package]]
505
+ name = "futures-sink"
506
+ version = "0.3.31"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
509
+
510
+ [[package]]
511
+ name = "futures-task"
512
+ version = "0.3.31"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
515
+
516
+ [[package]]
517
+ name = "futures-util"
518
+ version = "0.3.31"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
521
+ dependencies = [
522
+ "futures-core",
523
+ "futures-io",
524
+ "futures-sink",
525
+ "futures-task",
526
+ "memchr",
527
+ "pin-project-lite",
528
+ "pin-utils",
529
+ "slab",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "geodb-cli"
534
+ version = "0.1.5"
535
+ dependencies = [
536
+ "anyhow",
537
+ "clap",
538
+ "geodb-core",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "geodb-core"
543
+ version = "0.1.5"
544
+ dependencies = [
545
+ "bincode",
546
+ "criterion",
547
+ "deunicode",
548
+ "flate2",
549
+ "once_cell",
550
+ "reqwest",
551
+ "serde",
552
+ "serde_json",
553
+ "smol_str",
554
+ "thiserror 1.0.69",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "geodb-ffi"
559
+ version = "0.1.5"
560
+ dependencies = [
561
+ "bincode",
562
+ "flate2",
563
+ "geodb-core",
564
+ "once_cell",
565
+ "serde",
566
+ "uniffi",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "geodb-py"
571
+ version = "0.1.5"
572
+ dependencies = [
573
+ "geodb-core",
574
+ "pyo3",
575
+ "pyo3-build-config",
576
+ "serde",
577
+ "serde_json",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "geodb-rs"
582
+ version = "0.1.5"
583
+ dependencies = [
584
+ "geodb-core",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "geodb-wasm"
589
+ version = "0.1.5"
590
+ dependencies = [
591
+ "bincode",
592
+ "console_error_panic_hook",
593
+ "flate2",
594
+ "geodb-core",
595
+ "js-sys",
596
+ "serde",
597
+ "serde-wasm-bindgen",
598
+ "serde_json",
599
+ "wasm-bindgen",
600
+ "wasm-bindgen-test",
601
+ "web-sys",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "getrandom"
606
+ version = "0.2.16"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
609
+ dependencies = [
610
+ "cfg-if",
611
+ "js-sys",
612
+ "libc",
613
+ "wasi",
614
+ "wasm-bindgen",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "getrandom"
619
+ version = "0.3.4"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
622
+ dependencies = [
623
+ "cfg-if",
624
+ "js-sys",
625
+ "libc",
626
+ "r-efi",
627
+ "wasip2",
628
+ "wasm-bindgen",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "glob"
633
+ version = "0.3.3"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
636
+
637
+ [[package]]
638
+ name = "goblin"
639
+ version = "0.8.2"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
642
+ dependencies = [
643
+ "log",
644
+ "plain",
645
+ "scroll",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "half"
650
+ version = "2.7.1"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
653
+ dependencies = [
654
+ "cfg-if",
655
+ "crunchy",
656
+ "zerocopy",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "hashbrown"
661
+ version = "0.16.1"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
664
+
665
+ [[package]]
666
+ name = "heck"
667
+ version = "0.5.0"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
670
+
671
+ [[package]]
672
+ name = "http"
673
+ version = "1.4.0"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
676
+ dependencies = [
677
+ "bytes",
678
+ "itoa",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "http-body"
683
+ version = "1.0.1"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
686
+ dependencies = [
687
+ "bytes",
688
+ "http",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "http-body-util"
693
+ version = "0.1.3"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
696
+ dependencies = [
697
+ "bytes",
698
+ "futures-core",
699
+ "http",
700
+ "http-body",
701
+ "pin-project-lite",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "httparse"
706
+ version = "1.10.1"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
709
+
710
+ [[package]]
711
+ name = "hyper"
712
+ version = "1.8.1"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
715
+ dependencies = [
716
+ "atomic-waker",
717
+ "bytes",
718
+ "futures-channel",
719
+ "futures-core",
720
+ "http",
721
+ "http-body",
722
+ "httparse",
723
+ "itoa",
724
+ "pin-project-lite",
725
+ "pin-utils",
726
+ "smallvec",
727
+ "tokio",
728
+ "want",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "hyper-rustls"
733
+ version = "0.27.7"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
736
+ dependencies = [
737
+ "http",
738
+ "hyper",
739
+ "hyper-util",
740
+ "rustls",
741
+ "rustls-pki-types",
742
+ "tokio",
743
+ "tokio-rustls",
744
+ "tower-service",
745
+ "webpki-roots",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "hyper-util"
750
+ version = "0.1.19"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
753
+ dependencies = [
754
+ "base64",
755
+ "bytes",
756
+ "futures-channel",
757
+ "futures-core",
758
+ "futures-util",
759
+ "http",
760
+ "http-body",
761
+ "hyper",
762
+ "ipnet",
763
+ "libc",
764
+ "percent-encoding",
765
+ "pin-project-lite",
766
+ "socket2",
767
+ "tokio",
768
+ "tower-service",
769
+ "tracing",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "icu_collections"
774
+ version = "2.1.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
777
+ dependencies = [
778
+ "displaydoc",
779
+ "potential_utf",
780
+ "yoke",
781
+ "zerofrom",
782
+ "zerovec",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "icu_locale_core"
787
+ version = "2.1.1"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
790
+ dependencies = [
791
+ "displaydoc",
792
+ "litemap",
793
+ "tinystr",
794
+ "writeable",
795
+ "zerovec",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "icu_normalizer"
800
+ version = "2.1.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
803
+ dependencies = [
804
+ "icu_collections",
805
+ "icu_normalizer_data",
806
+ "icu_properties",
807
+ "icu_provider",
808
+ "smallvec",
809
+ "zerovec",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "icu_normalizer_data"
814
+ version = "2.1.1"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
817
+
818
+ [[package]]
819
+ name = "icu_properties"
820
+ version = "2.1.1"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
823
+ dependencies = [
824
+ "icu_collections",
825
+ "icu_locale_core",
826
+ "icu_properties_data",
827
+ "icu_provider",
828
+ "zerotrie",
829
+ "zerovec",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "icu_properties_data"
834
+ version = "2.1.1"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
837
+
838
+ [[package]]
839
+ name = "icu_provider"
840
+ version = "2.1.1"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
843
+ dependencies = [
844
+ "displaydoc",
845
+ "icu_locale_core",
846
+ "writeable",
847
+ "yoke",
848
+ "zerofrom",
849
+ "zerotrie",
850
+ "zerovec",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "idna"
855
+ version = "1.1.0"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
858
+ dependencies = [
859
+ "idna_adapter",
860
+ "smallvec",
861
+ "utf8_iter",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "idna_adapter"
866
+ version = "1.2.1"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
869
+ dependencies = [
870
+ "icu_normalizer",
871
+ "icu_properties",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "indexmap"
876
+ version = "2.12.1"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
879
+ dependencies = [
880
+ "equivalent",
881
+ "hashbrown",
882
+ "serde",
883
+ "serde_core",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "indoc"
888
+ version = "2.0.7"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
891
+ dependencies = [
892
+ "rustversion",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "ipnet"
897
+ version = "2.11.0"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
900
+
901
+ [[package]]
902
+ name = "iri-string"
903
+ version = "0.7.9"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
906
+ dependencies = [
907
+ "memchr",
908
+ "serde",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "is_terminal_polyfill"
913
+ version = "1.70.2"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
916
+
917
+ [[package]]
918
+ name = "itertools"
919
+ version = "0.13.0"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
922
+ dependencies = [
923
+ "either",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "itoa"
928
+ version = "1.0.15"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
931
+
932
+ [[package]]
933
+ name = "js-sys"
934
+ version = "0.3.82"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
937
+ dependencies = [
938
+ "once_cell",
939
+ "wasm-bindgen",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "libc"
944
+ version = "0.2.178"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
947
+
948
+ [[package]]
949
+ name = "linux-raw-sys"
950
+ version = "0.11.0"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
953
+
954
+ [[package]]
955
+ name = "litemap"
956
+ version = "0.8.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
959
+
960
+ [[package]]
961
+ name = "log"
962
+ version = "0.4.29"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
965
+
966
+ [[package]]
967
+ name = "lru-slab"
968
+ version = "0.1.2"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
971
+
972
+ [[package]]
973
+ name = "memchr"
974
+ version = "2.7.6"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
977
+
978
+ [[package]]
979
+ name = "memoffset"
980
+ version = "0.9.1"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
983
+ dependencies = [
984
+ "autocfg",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "minicov"
989
+ version = "0.3.8"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
992
+ dependencies = [
993
+ "cc",
994
+ "walkdir",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "minimal-lexical"
999
+ version = "0.2.1"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1002
+
1003
+ [[package]]
1004
+ name = "miniz_oxide"
1005
+ version = "0.8.9"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1008
+ dependencies = [
1009
+ "adler2",
1010
+ "simd-adler32",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "mio"
1015
+ version = "1.1.1"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1018
+ dependencies = [
1019
+ "libc",
1020
+ "wasi",
1021
+ "windows-sys 0.61.2",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "nom"
1026
+ version = "7.1.3"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1029
+ dependencies = [
1030
+ "memchr",
1031
+ "minimal-lexical",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "num-traits"
1036
+ version = "0.2.19"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1039
+ dependencies = [
1040
+ "autocfg",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "once_cell"
1045
+ version = "1.21.3"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1048
+
1049
+ [[package]]
1050
+ name = "once_cell_polyfill"
1051
+ version = "1.70.2"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1054
+
1055
+ [[package]]
1056
+ name = "oorandom"
1057
+ version = "11.1.5"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1060
+
1061
+ [[package]]
1062
+ name = "percent-encoding"
1063
+ version = "2.3.2"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1066
+
1067
+ [[package]]
1068
+ name = "pin-project-lite"
1069
+ version = "0.2.16"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1072
+
1073
+ [[package]]
1074
+ name = "pin-utils"
1075
+ version = "0.1.0"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1078
+
1079
+ [[package]]
1080
+ name = "plain"
1081
+ version = "0.2.3"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1084
+
1085
+ [[package]]
1086
+ name = "plotters"
1087
+ version = "0.3.7"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1090
+ dependencies = [
1091
+ "num-traits",
1092
+ "plotters-backend",
1093
+ "plotters-svg",
1094
+ "wasm-bindgen",
1095
+ "web-sys",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "plotters-backend"
1100
+ version = "0.3.7"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1103
+
1104
+ [[package]]
1105
+ name = "plotters-svg"
1106
+ version = "0.3.7"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1109
+ dependencies = [
1110
+ "plotters-backend",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "portable-atomic"
1115
+ version = "1.11.1"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1118
+
1119
+ [[package]]
1120
+ name = "potential_utf"
1121
+ version = "0.1.4"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1124
+ dependencies = [
1125
+ "zerovec",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "ppv-lite86"
1130
+ version = "0.2.21"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1133
+ dependencies = [
1134
+ "zerocopy",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "proc-macro2"
1139
+ version = "1.0.103"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1142
+ dependencies = [
1143
+ "unicode-ident",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "pyo3"
1148
+ version = "0.22.6"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1151
+ dependencies = [
1152
+ "cfg-if",
1153
+ "indoc",
1154
+ "libc",
1155
+ "memoffset",
1156
+ "once_cell",
1157
+ "portable-atomic",
1158
+ "pyo3-build-config",
1159
+ "pyo3-ffi",
1160
+ "pyo3-macros",
1161
+ "unindent",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "pyo3-build-config"
1166
+ version = "0.22.6"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1169
+ dependencies = [
1170
+ "once_cell",
1171
+ "target-lexicon",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "pyo3-ffi"
1176
+ version = "0.22.6"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1179
+ dependencies = [
1180
+ "libc",
1181
+ "pyo3-build-config",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "pyo3-macros"
1186
+ version = "0.22.6"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1189
+ dependencies = [
1190
+ "proc-macro2",
1191
+ "pyo3-macros-backend",
1192
+ "quote",
1193
+ "syn",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "pyo3-macros-backend"
1198
+ version = "0.22.6"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1201
+ dependencies = [
1202
+ "heck",
1203
+ "proc-macro2",
1204
+ "pyo3-build-config",
1205
+ "quote",
1206
+ "syn",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "quinn"
1211
+ version = "0.11.9"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1214
+ dependencies = [
1215
+ "bytes",
1216
+ "cfg_aliases",
1217
+ "pin-project-lite",
1218
+ "quinn-proto",
1219
+ "quinn-udp",
1220
+ "rustc-hash",
1221
+ "rustls",
1222
+ "socket2",
1223
+ "thiserror 2.0.17",
1224
+ "tokio",
1225
+ "tracing",
1226
+ "web-time",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "quinn-proto"
1231
+ version = "0.11.13"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
1234
+ dependencies = [
1235
+ "bytes",
1236
+ "getrandom 0.3.4",
1237
+ "lru-slab",
1238
+ "rand",
1239
+ "ring",
1240
+ "rustc-hash",
1241
+ "rustls",
1242
+ "rustls-pki-types",
1243
+ "slab",
1244
+ "thiserror 2.0.17",
1245
+ "tinyvec",
1246
+ "tracing",
1247
+ "web-time",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "quinn-udp"
1252
+ version = "0.5.14"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1255
+ dependencies = [
1256
+ "cfg_aliases",
1257
+ "libc",
1258
+ "once_cell",
1259
+ "socket2",
1260
+ "tracing",
1261
+ "windows-sys 0.60.2",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "quote"
1266
+ version = "1.0.42"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1269
+ dependencies = [
1270
+ "proc-macro2",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "r-efi"
1275
+ version = "5.3.0"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1278
+
1279
+ [[package]]
1280
+ name = "rand"
1281
+ version = "0.9.2"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1284
+ dependencies = [
1285
+ "rand_chacha",
1286
+ "rand_core",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "rand_chacha"
1291
+ version = "0.9.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1294
+ dependencies = [
1295
+ "ppv-lite86",
1296
+ "rand_core",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "rand_core"
1301
+ version = "0.9.3"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1304
+ dependencies = [
1305
+ "getrandom 0.3.4",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "rayon"
1310
+ version = "1.11.0"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1313
+ dependencies = [
1314
+ "either",
1315
+ "rayon-core",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "rayon-core"
1320
+ version = "1.13.0"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1323
+ dependencies = [
1324
+ "crossbeam-deque",
1325
+ "crossbeam-utils",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "regex"
1330
+ version = "1.12.2"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1333
+ dependencies = [
1334
+ "aho-corasick",
1335
+ "memchr",
1336
+ "regex-automata",
1337
+ "regex-syntax",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "regex-automata"
1342
+ version = "0.4.13"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1345
+ dependencies = [
1346
+ "aho-corasick",
1347
+ "memchr",
1348
+ "regex-syntax",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "regex-syntax"
1353
+ version = "0.8.8"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1356
+
1357
+ [[package]]
1358
+ name = "reqwest"
1359
+ version = "0.12.24"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
1362
+ dependencies = [
1363
+ "base64",
1364
+ "bytes",
1365
+ "futures-channel",
1366
+ "futures-core",
1367
+ "futures-util",
1368
+ "http",
1369
+ "http-body",
1370
+ "http-body-util",
1371
+ "hyper",
1372
+ "hyper-rustls",
1373
+ "hyper-util",
1374
+ "js-sys",
1375
+ "log",
1376
+ "percent-encoding",
1377
+ "pin-project-lite",
1378
+ "quinn",
1379
+ "rustls",
1380
+ "rustls-pki-types",
1381
+ "serde",
1382
+ "serde_json",
1383
+ "serde_urlencoded",
1384
+ "sync_wrapper",
1385
+ "tokio",
1386
+ "tokio-rustls",
1387
+ "tower",
1388
+ "tower-http",
1389
+ "tower-service",
1390
+ "url",
1391
+ "wasm-bindgen",
1392
+ "wasm-bindgen-futures",
1393
+ "web-sys",
1394
+ "webpki-roots",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "ring"
1399
+ version = "0.17.14"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1402
+ dependencies = [
1403
+ "cc",
1404
+ "cfg-if",
1405
+ "getrandom 0.2.16",
1406
+ "libc",
1407
+ "untrusted",
1408
+ "windows-sys 0.52.0",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "rustc-hash"
1413
+ version = "2.1.1"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1416
+
1417
+ [[package]]
1418
+ name = "rustix"
1419
+ version = "1.1.2"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1422
+ dependencies = [
1423
+ "bitflags",
1424
+ "errno",
1425
+ "libc",
1426
+ "linux-raw-sys",
1427
+ "windows-sys 0.61.2",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "rustls"
1432
+ version = "0.23.35"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
1435
+ dependencies = [
1436
+ "once_cell",
1437
+ "ring",
1438
+ "rustls-pki-types",
1439
+ "rustls-webpki",
1440
+ "subtle",
1441
+ "zeroize",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "rustls-pki-types"
1446
+ version = "1.13.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
1449
+ dependencies = [
1450
+ "web-time",
1451
+ "zeroize",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "rustls-webpki"
1456
+ version = "0.103.8"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1459
+ dependencies = [
1460
+ "ring",
1461
+ "rustls-pki-types",
1462
+ "untrusted",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "rustversion"
1467
+ version = "1.0.22"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1470
+
1471
+ [[package]]
1472
+ name = "ryu"
1473
+ version = "1.0.20"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1476
+
1477
+ [[package]]
1478
+ name = "same-file"
1479
+ version = "1.0.6"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1482
+ dependencies = [
1483
+ "winapi-util",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "scroll"
1488
+ version = "0.12.0"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
1491
+ dependencies = [
1492
+ "scroll_derive",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "scroll_derive"
1497
+ version = "0.12.1"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
1500
+ dependencies = [
1501
+ "proc-macro2",
1502
+ "quote",
1503
+ "syn",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "semver"
1508
+ version = "1.0.27"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1511
+ dependencies = [
1512
+ "serde",
1513
+ "serde_core",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "serde"
1518
+ version = "1.0.228"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1521
+ dependencies = [
1522
+ "serde_core",
1523
+ "serde_derive",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "serde-wasm-bindgen"
1528
+ version = "0.6.5"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1531
+ dependencies = [
1532
+ "js-sys",
1533
+ "serde",
1534
+ "wasm-bindgen",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "serde_core"
1539
+ version = "1.0.228"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1542
+ dependencies = [
1543
+ "serde_derive",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "serde_derive"
1548
+ version = "1.0.228"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1551
+ dependencies = [
1552
+ "proc-macro2",
1553
+ "quote",
1554
+ "syn",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "serde_json"
1559
+ version = "1.0.145"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1562
+ dependencies = [
1563
+ "itoa",
1564
+ "memchr",
1565
+ "ryu",
1566
+ "serde",
1567
+ "serde_core",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "serde_spanned"
1572
+ version = "1.0.3"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
1575
+ dependencies = [
1576
+ "serde_core",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "serde_urlencoded"
1581
+ version = "0.7.1"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1584
+ dependencies = [
1585
+ "form_urlencoded",
1586
+ "itoa",
1587
+ "ryu",
1588
+ "serde",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "shlex"
1593
+ version = "1.3.0"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1596
+
1597
+ [[package]]
1598
+ name = "simd-adler32"
1599
+ version = "0.3.8"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1602
+
1603
+ [[package]]
1604
+ name = "siphasher"
1605
+ version = "0.3.11"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1608
+
1609
+ [[package]]
1610
+ name = "slab"
1611
+ version = "0.4.11"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1614
+
1615
+ [[package]]
1616
+ name = "smallvec"
1617
+ version = "1.15.1"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1620
+
1621
+ [[package]]
1622
+ name = "smawk"
1623
+ version = "0.3.2"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1626
+
1627
+ [[package]]
1628
+ name = "smol_str"
1629
+ version = "0.3.4"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "3498b0a27f93ef1402f20eefacfaa1691272ac4eca1cdc8c596cb0a245d6cbf5"
1632
+ dependencies = [
1633
+ "borsh",
1634
+ "serde_core",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "socket2"
1639
+ version = "0.6.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1642
+ dependencies = [
1643
+ "libc",
1644
+ "windows-sys 0.60.2",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "stable_deref_trait"
1649
+ version = "1.2.1"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1652
+
1653
+ [[package]]
1654
+ name = "static_assertions"
1655
+ version = "1.1.0"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1658
+
1659
+ [[package]]
1660
+ name = "strsim"
1661
+ version = "0.11.1"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1664
+
1665
+ [[package]]
1666
+ name = "subtle"
1667
+ version = "2.6.1"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1670
+
1671
+ [[package]]
1672
+ name = "syn"
1673
+ version = "2.0.111"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1676
+ dependencies = [
1677
+ "proc-macro2",
1678
+ "quote",
1679
+ "unicode-ident",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "sync_wrapper"
1684
+ version = "1.0.2"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1687
+ dependencies = [
1688
+ "futures-core",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "synstructure"
1693
+ version = "0.13.2"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1696
+ dependencies = [
1697
+ "proc-macro2",
1698
+ "quote",
1699
+ "syn",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "target-lexicon"
1704
+ version = "0.12.16"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1707
+
1708
+ [[package]]
1709
+ name = "tempfile"
1710
+ version = "3.23.0"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1713
+ dependencies = [
1714
+ "fastrand",
1715
+ "getrandom 0.3.4",
1716
+ "once_cell",
1717
+ "rustix",
1718
+ "windows-sys 0.61.2",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "textwrap"
1723
+ version = "0.16.2"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1726
+ dependencies = [
1727
+ "smawk",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "thiserror"
1732
+ version = "1.0.69"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1735
+ dependencies = [
1736
+ "thiserror-impl 1.0.69",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "thiserror"
1741
+ version = "2.0.17"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1744
+ dependencies = [
1745
+ "thiserror-impl 2.0.17",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "thiserror-impl"
1750
+ version = "1.0.69"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1753
+ dependencies = [
1754
+ "proc-macro2",
1755
+ "quote",
1756
+ "syn",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "thiserror-impl"
1761
+ version = "2.0.17"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1764
+ dependencies = [
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "syn",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "tinystr"
1772
+ version = "0.8.2"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1775
+ dependencies = [
1776
+ "displaydoc",
1777
+ "zerovec",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "tinytemplate"
1782
+ version = "1.2.1"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1785
+ dependencies = [
1786
+ "serde",
1787
+ "serde_json",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "tinyvec"
1792
+ version = "1.10.0"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1795
+ dependencies = [
1796
+ "tinyvec_macros",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "tinyvec_macros"
1801
+ version = "0.1.1"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1804
+
1805
+ [[package]]
1806
+ name = "tokio"
1807
+ version = "1.48.0"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1810
+ dependencies = [
1811
+ "bytes",
1812
+ "libc",
1813
+ "mio",
1814
+ "pin-project-lite",
1815
+ "socket2",
1816
+ "windows-sys 0.61.2",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "tokio-rustls"
1821
+ version = "0.26.4"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1824
+ dependencies = [
1825
+ "rustls",
1826
+ "tokio",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "toml"
1831
+ version = "0.9.8"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
1834
+ dependencies = [
1835
+ "indexmap",
1836
+ "serde_core",
1837
+ "serde_spanned",
1838
+ "toml_datetime",
1839
+ "toml_parser",
1840
+ "toml_writer",
1841
+ "winnow",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "toml_datetime"
1846
+ version = "0.7.3"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
1849
+ dependencies = [
1850
+ "serde_core",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "toml_parser"
1855
+ version = "1.0.4"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
1858
+ dependencies = [
1859
+ "winnow",
1860
+ ]
1861
+
1862
+ [[package]]
1863
+ name = "toml_writer"
1864
+ version = "1.0.4"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
1867
+
1868
+ [[package]]
1869
+ name = "tower"
1870
+ version = "0.5.2"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
1873
+ dependencies = [
1874
+ "futures-core",
1875
+ "futures-util",
1876
+ "pin-project-lite",
1877
+ "sync_wrapper",
1878
+ "tokio",
1879
+ "tower-layer",
1880
+ "tower-service",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "tower-http"
1885
+ version = "0.6.8"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1888
+ dependencies = [
1889
+ "bitflags",
1890
+ "bytes",
1891
+ "futures-util",
1892
+ "http",
1893
+ "http-body",
1894
+ "iri-string",
1895
+ "pin-project-lite",
1896
+ "tower",
1897
+ "tower-layer",
1898
+ "tower-service",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "tower-layer"
1903
+ version = "0.3.3"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1906
+
1907
+ [[package]]
1908
+ name = "tower-service"
1909
+ version = "0.3.3"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1912
+
1913
+ [[package]]
1914
+ name = "tracing"
1915
+ version = "0.1.43"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
1918
+ dependencies = [
1919
+ "pin-project-lite",
1920
+ "tracing-core",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "tracing-core"
1925
+ version = "0.1.35"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
1928
+ dependencies = [
1929
+ "once_cell",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "try-lock"
1934
+ version = "0.2.5"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1937
+
1938
+ [[package]]
1939
+ name = "unicode-ident"
1940
+ version = "1.0.22"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1943
+
1944
+ [[package]]
1945
+ name = "uniffi"
1946
+ version = "0.30.0"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "c866f627c3f04c3df068b68bb2d725492caaa539dd313e2a9d26bb85b1a32f4e"
1949
+ dependencies = [
1950
+ "anyhow",
1951
+ "camino",
1952
+ "cargo_metadata",
1953
+ "clap",
1954
+ "uniffi_bindgen",
1955
+ "uniffi_build",
1956
+ "uniffi_core",
1957
+ "uniffi_macros",
1958
+ "uniffi_pipeline",
1959
+ ]
1960
+
1961
+ [[package]]
1962
+ name = "uniffi_bindgen"
1963
+ version = "0.30.0"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "7c8ca600167641ebe7c8ba9254af40492dda3397c528cc3b2f511bd23e8541a5"
1966
+ dependencies = [
1967
+ "anyhow",
1968
+ "askama",
1969
+ "camino",
1970
+ "cargo_metadata",
1971
+ "fs-err",
1972
+ "glob",
1973
+ "goblin",
1974
+ "heck",
1975
+ "indexmap",
1976
+ "once_cell",
1977
+ "serde",
1978
+ "tempfile",
1979
+ "textwrap",
1980
+ "toml",
1981
+ "uniffi_internal_macros",
1982
+ "uniffi_meta",
1983
+ "uniffi_pipeline",
1984
+ "uniffi_udl",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "uniffi_build"
1989
+ version = "0.30.0"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "3e55c05228f4858bb258f651d21d743fcc1fe5a2ec20d3c0f9daefddb105ee4d"
1992
+ dependencies = [
1993
+ "anyhow",
1994
+ "camino",
1995
+ "uniffi_bindgen",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "uniffi_core"
2000
+ version = "0.30.0"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "7e7a5a038ebffe8f4cf91416b154ef3c2468b18e828b7009e01b1b99938089f9"
2003
+ dependencies = [
2004
+ "anyhow",
2005
+ "bytes",
2006
+ "once_cell",
2007
+ "static_assertions",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "uniffi_internal_macros"
2012
+ version = "0.30.0"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "e3c2a6f93e7b73726e2015696ece25ca0ac5a5f1cf8d6a7ab5214dd0a01d2edf"
2015
+ dependencies = [
2016
+ "anyhow",
2017
+ "indexmap",
2018
+ "proc-macro2",
2019
+ "quote",
2020
+ "syn",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "uniffi_macros"
2025
+ version = "0.30.0"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "64c6309fc36c7992afc03bc0c5b059c656bccbef3f2a4bc362980017f8936141"
2028
+ dependencies = [
2029
+ "camino",
2030
+ "fs-err",
2031
+ "once_cell",
2032
+ "proc-macro2",
2033
+ "quote",
2034
+ "serde",
2035
+ "syn",
2036
+ "toml",
2037
+ "uniffi_meta",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "uniffi_meta"
2042
+ version = "0.30.0"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "0a138823392dba19b0aa494872689f97d0ee157de5852e2bec157ce6de9cdc22"
2045
+ dependencies = [
2046
+ "anyhow",
2047
+ "siphasher",
2048
+ "uniffi_internal_macros",
2049
+ "uniffi_pipeline",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "uniffi_pipeline"
2054
+ version = "0.30.0"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "8c27c4b515d25f8e53cc918e238c39a79c3144a40eaf2e51c4a7958973422c29"
2057
+ dependencies = [
2058
+ "anyhow",
2059
+ "heck",
2060
+ "indexmap",
2061
+ "tempfile",
2062
+ "uniffi_internal_macros",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "uniffi_udl"
2067
+ version = "0.30.0"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "d0adacdd848aeed7af4f5af7d2f621d5e82531325d405e29463482becfdeafca"
2070
+ dependencies = [
2071
+ "anyhow",
2072
+ "textwrap",
2073
+ "uniffi_meta",
2074
+ "weedle2",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "unindent"
2079
+ version = "0.2.4"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2082
+
2083
+ [[package]]
2084
+ name = "untrusted"
2085
+ version = "0.9.0"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2088
+
2089
+ [[package]]
2090
+ name = "url"
2091
+ version = "2.5.7"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2094
+ dependencies = [
2095
+ "form_urlencoded",
2096
+ "idna",
2097
+ "percent-encoding",
2098
+ "serde",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "utf8_iter"
2103
+ version = "1.0.4"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2106
+
2107
+ [[package]]
2108
+ name = "utf8parse"
2109
+ version = "0.2.2"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2112
+
2113
+ [[package]]
2114
+ name = "walkdir"
2115
+ version = "2.5.0"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2118
+ dependencies = [
2119
+ "same-file",
2120
+ "winapi-util",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "want"
2125
+ version = "0.3.1"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2128
+ dependencies = [
2129
+ "try-lock",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "wasi"
2134
+ version = "0.11.1+wasi-snapshot-preview1"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2137
+
2138
+ [[package]]
2139
+ name = "wasip2"
2140
+ version = "1.0.1+wasi-0.2.4"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2143
+ dependencies = [
2144
+ "wit-bindgen",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "wasm-bindgen"
2149
+ version = "0.2.105"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
2152
+ dependencies = [
2153
+ "cfg-if",
2154
+ "once_cell",
2155
+ "rustversion",
2156
+ "wasm-bindgen-macro",
2157
+ "wasm-bindgen-shared",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "wasm-bindgen-futures"
2162
+ version = "0.4.55"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
2165
+ dependencies = [
2166
+ "cfg-if",
2167
+ "js-sys",
2168
+ "once_cell",
2169
+ "wasm-bindgen",
2170
+ "web-sys",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "wasm-bindgen-macro"
2175
+ version = "0.2.105"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
2178
+ dependencies = [
2179
+ "quote",
2180
+ "wasm-bindgen-macro-support",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "wasm-bindgen-macro-support"
2185
+ version = "0.2.105"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
2188
+ dependencies = [
2189
+ "bumpalo",
2190
+ "proc-macro2",
2191
+ "quote",
2192
+ "syn",
2193
+ "wasm-bindgen-shared",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "wasm-bindgen-shared"
2198
+ version = "0.2.105"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
2201
+ dependencies = [
2202
+ "unicode-ident",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "wasm-bindgen-test"
2207
+ version = "0.3.55"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
2210
+ dependencies = [
2211
+ "js-sys",
2212
+ "minicov",
2213
+ "wasm-bindgen",
2214
+ "wasm-bindgen-futures",
2215
+ "wasm-bindgen-test-macro",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "wasm-bindgen-test-macro"
2220
+ version = "0.3.55"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
2223
+ dependencies = [
2224
+ "proc-macro2",
2225
+ "quote",
2226
+ "syn",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "web-sys"
2231
+ version = "0.3.82"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
2234
+ dependencies = [
2235
+ "js-sys",
2236
+ "wasm-bindgen",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "web-time"
2241
+ version = "1.1.0"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2244
+ dependencies = [
2245
+ "js-sys",
2246
+ "wasm-bindgen",
2247
+ ]
2248
+
2249
+ [[package]]
2250
+ name = "webpki-roots"
2251
+ version = "1.0.4"
2252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2253
+ checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
2254
+ dependencies = [
2255
+ "rustls-pki-types",
2256
+ ]
2257
+
2258
+ [[package]]
2259
+ name = "weedle2"
2260
+ version = "5.0.0"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
2263
+ dependencies = [
2264
+ "nom",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "winapi-util"
2269
+ version = "0.1.11"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2272
+ dependencies = [
2273
+ "windows-sys 0.61.2",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "windows-link"
2278
+ version = "0.2.1"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2281
+
2282
+ [[package]]
2283
+ name = "windows-sys"
2284
+ version = "0.52.0"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2287
+ dependencies = [
2288
+ "windows-targets 0.52.6",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "windows-sys"
2293
+ version = "0.60.2"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2296
+ dependencies = [
2297
+ "windows-targets 0.53.5",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "windows-sys"
2302
+ version = "0.61.2"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2305
+ dependencies = [
2306
+ "windows-link",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "windows-targets"
2311
+ version = "0.52.6"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2314
+ dependencies = [
2315
+ "windows_aarch64_gnullvm 0.52.6",
2316
+ "windows_aarch64_msvc 0.52.6",
2317
+ "windows_i686_gnu 0.52.6",
2318
+ "windows_i686_gnullvm 0.52.6",
2319
+ "windows_i686_msvc 0.52.6",
2320
+ "windows_x86_64_gnu 0.52.6",
2321
+ "windows_x86_64_gnullvm 0.52.6",
2322
+ "windows_x86_64_msvc 0.52.6",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "windows-targets"
2327
+ version = "0.53.5"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2330
+ dependencies = [
2331
+ "windows-link",
2332
+ "windows_aarch64_gnullvm 0.53.1",
2333
+ "windows_aarch64_msvc 0.53.1",
2334
+ "windows_i686_gnu 0.53.1",
2335
+ "windows_i686_gnullvm 0.53.1",
2336
+ "windows_i686_msvc 0.53.1",
2337
+ "windows_x86_64_gnu 0.53.1",
2338
+ "windows_x86_64_gnullvm 0.53.1",
2339
+ "windows_x86_64_msvc 0.53.1",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "windows_aarch64_gnullvm"
2344
+ version = "0.52.6"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2347
+
2348
+ [[package]]
2349
+ name = "windows_aarch64_gnullvm"
2350
+ version = "0.53.1"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2353
+
2354
+ [[package]]
2355
+ name = "windows_aarch64_msvc"
2356
+ version = "0.52.6"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2359
+
2360
+ [[package]]
2361
+ name = "windows_aarch64_msvc"
2362
+ version = "0.53.1"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2365
+
2366
+ [[package]]
2367
+ name = "windows_i686_gnu"
2368
+ version = "0.52.6"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2371
+
2372
+ [[package]]
2373
+ name = "windows_i686_gnu"
2374
+ version = "0.53.1"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2377
+
2378
+ [[package]]
2379
+ name = "windows_i686_gnullvm"
2380
+ version = "0.52.6"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2383
+
2384
+ [[package]]
2385
+ name = "windows_i686_gnullvm"
2386
+ version = "0.53.1"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2389
+
2390
+ [[package]]
2391
+ name = "windows_i686_msvc"
2392
+ version = "0.52.6"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2395
+
2396
+ [[package]]
2397
+ name = "windows_i686_msvc"
2398
+ version = "0.53.1"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2401
+
2402
+ [[package]]
2403
+ name = "windows_x86_64_gnu"
2404
+ version = "0.52.6"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2407
+
2408
+ [[package]]
2409
+ name = "windows_x86_64_gnu"
2410
+ version = "0.53.1"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2413
+
2414
+ [[package]]
2415
+ name = "windows_x86_64_gnullvm"
2416
+ version = "0.52.6"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2419
+
2420
+ [[package]]
2421
+ name = "windows_x86_64_gnullvm"
2422
+ version = "0.53.1"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2425
+
2426
+ [[package]]
2427
+ name = "windows_x86_64_msvc"
2428
+ version = "0.52.6"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2431
+
2432
+ [[package]]
2433
+ name = "windows_x86_64_msvc"
2434
+ version = "0.53.1"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2437
+
2438
+ [[package]]
2439
+ name = "winnow"
2440
+ version = "0.7.14"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
2443
+ dependencies = [
2444
+ "memchr",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "wit-bindgen"
2449
+ version = "0.46.0"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2452
+
2453
+ [[package]]
2454
+ name = "writeable"
2455
+ version = "0.6.2"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2458
+
2459
+ [[package]]
2460
+ name = "yoke"
2461
+ version = "0.8.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2464
+ dependencies = [
2465
+ "stable_deref_trait",
2466
+ "yoke-derive",
2467
+ "zerofrom",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "yoke-derive"
2472
+ version = "0.8.1"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2475
+ dependencies = [
2476
+ "proc-macro2",
2477
+ "quote",
2478
+ "syn",
2479
+ "synstructure",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "zerocopy"
2484
+ version = "0.8.31"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
2487
+ dependencies = [
2488
+ "zerocopy-derive",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "zerocopy-derive"
2493
+ version = "0.8.31"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
2496
+ dependencies = [
2497
+ "proc-macro2",
2498
+ "quote",
2499
+ "syn",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "zerofrom"
2504
+ version = "0.1.6"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2507
+ dependencies = [
2508
+ "zerofrom-derive",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "zerofrom-derive"
2513
+ version = "0.1.6"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2516
+ dependencies = [
2517
+ "proc-macro2",
2518
+ "quote",
2519
+ "syn",
2520
+ "synstructure",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "zeroize"
2525
+ version = "1.8.2"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2528
+
2529
+ [[package]]
2530
+ name = "zerotrie"
2531
+ version = "0.2.3"
2532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2534
+ dependencies = [
2535
+ "displaydoc",
2536
+ "yoke",
2537
+ "zerofrom",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "zerovec"
2542
+ version = "0.11.5"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2545
+ dependencies = [
2546
+ "yoke",
2547
+ "zerofrom",
2548
+ "zerovec-derive",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "zerovec-derive"
2553
+ version = "0.11.2"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2556
+ dependencies = [
2557
+ "proc-macro2",
2558
+ "quote",
2559
+ "syn",
2560
+ ]