geodb-rs 0.1.2__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.
- geodb_rs-0.1.2/Cargo.lock +970 -0
- geodb_rs-0.1.2/Cargo.toml +31 -0
- geodb_rs-0.1.2/PKG-INFO +48 -0
- geodb_rs-0.1.2/README.md +30 -0
- geodb_rs-0.1.2/crates/geodb-core/Cargo.toml +41 -0
- geodb_rs-0.1.2/crates/geodb-core/README.md +297 -0
- geodb_rs-0.1.2/crates/geodb-core/benches/benchmarks.rs +11 -0
- geodb_rs-0.1.2/crates/geodb-core/data/city_meta.json +168 -0
- geodb_rs-0.1.2/crates/geodb-core/data/countries+states+cities.json.gz +0 -0
- geodb_rs-0.1.2/crates/geodb-core/src/alias.rs +158 -0
- geodb_rs-0.1.2/crates/geodb-core/src/api.rs +146 -0
- geodb_rs-0.1.2/crates/geodb-core/src/cache.rs +1 -0
- geodb_rs-0.1.2/crates/geodb-core/src/error.rs +27 -0
- geodb_rs-0.1.2/crates/geodb-core/src/filter.rs +1 -0
- geodb_rs-0.1.2/crates/geodb-core/src/lib.rs +75 -0
- geodb_rs-0.1.2/crates/geodb-core/src/loader.rs +160 -0
- geodb_rs-0.1.2/crates/geodb-core/src/model.rs +716 -0
- geodb_rs-0.1.2/crates/geodb-core/src/phone.rs +23 -0
- geodb_rs-0.1.2/crates/geodb-core/src/prelude.rs +12 -0
- geodb_rs-0.1.2/crates/geodb-core/src/region.rs +22 -0
- geodb_rs-0.1.2/crates/geodb-core/tests/basic.rs +64 -0
- geodb_rs-0.1.2/crates/geodb-py/Cargo.toml +34 -0
- geodb_rs-0.1.2/crates/geodb-py/README.md +30 -0
- geodb_rs-0.1.2/crates/geodb-py/example.py +38 -0
- geodb_rs-0.1.2/crates/geodb-py/geodb_rs_data/.DS_Store +0 -0
- geodb_rs-0.1.2/crates/geodb-py/geodb_rs_data/city_meta.json +168 -0
- geodb_rs-0.1.2/crates/geodb-py/geodb_rs_data/countries+states+cities.json.gz +0 -0
- geodb_rs-0.1.2/crates/geodb-py/src/lib.rs +251 -0
- geodb_rs-0.1.2/crates/geodb-py/tests/test_basic.py +27 -0
- geodb_rs-0.1.2/geodb_rs_data/countries+states+cities.json.gz +0 -0
- geodb_rs-0.1.2/pyproject.toml +31 -0
|
@@ -0,0 +1,970 @@
|
|
|
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",
|
|
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",
|
|
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 = "autocfg"
|
|
84
|
+
version = "1.5.0"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "bincode"
|
|
90
|
+
version = "1.3.3"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"serde",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "bumpalo"
|
|
99
|
+
version = "3.19.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "cast"
|
|
105
|
+
version = "0.3.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "cc"
|
|
111
|
+
version = "1.2.46"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "b97463e1064cb1b1c1384ad0a0b9c8abd0988e2a91f52606c80ef14aadb63e36"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"find-msvc-tools",
|
|
116
|
+
"shlex",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "cfg-if"
|
|
121
|
+
version = "1.0.4"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "ciborium"
|
|
127
|
+
version = "0.2.2"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"ciborium-io",
|
|
132
|
+
"ciborium-ll",
|
|
133
|
+
"serde",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "ciborium-io"
|
|
138
|
+
version = "0.2.2"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "ciborium-ll"
|
|
144
|
+
version = "0.2.2"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"ciborium-io",
|
|
149
|
+
"half",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "clap"
|
|
154
|
+
version = "4.5.51"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"clap_builder",
|
|
159
|
+
"clap_derive",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "clap_builder"
|
|
164
|
+
version = "4.5.51"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"anstream",
|
|
169
|
+
"anstyle",
|
|
170
|
+
"clap_lex",
|
|
171
|
+
"strsim",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "clap_derive"
|
|
176
|
+
version = "4.5.49"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"heck",
|
|
181
|
+
"proc-macro2",
|
|
182
|
+
"quote",
|
|
183
|
+
"syn",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "clap_lex"
|
|
188
|
+
version = "0.7.6"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "colorchoice"
|
|
194
|
+
version = "1.0.4"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "console_error_panic_hook"
|
|
200
|
+
version = "0.1.7"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"cfg-if",
|
|
205
|
+
"wasm-bindgen",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "crc32fast"
|
|
210
|
+
version = "1.5.0"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"cfg-if",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "criterion"
|
|
219
|
+
version = "0.5.1"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"anes",
|
|
224
|
+
"cast",
|
|
225
|
+
"ciborium",
|
|
226
|
+
"clap",
|
|
227
|
+
"criterion-plot",
|
|
228
|
+
"is-terminal",
|
|
229
|
+
"itertools",
|
|
230
|
+
"num-traits",
|
|
231
|
+
"once_cell",
|
|
232
|
+
"oorandom",
|
|
233
|
+
"plotters",
|
|
234
|
+
"rayon",
|
|
235
|
+
"regex",
|
|
236
|
+
"serde",
|
|
237
|
+
"serde_derive",
|
|
238
|
+
"serde_json",
|
|
239
|
+
"tinytemplate",
|
|
240
|
+
"walkdir",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "criterion-plot"
|
|
245
|
+
version = "0.5.0"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"cast",
|
|
250
|
+
"itertools",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "crossbeam-deque"
|
|
255
|
+
version = "0.8.6"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"crossbeam-epoch",
|
|
260
|
+
"crossbeam-utils",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "crossbeam-epoch"
|
|
265
|
+
version = "0.9.18"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"crossbeam-utils",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "crossbeam-utils"
|
|
274
|
+
version = "0.8.21"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "crunchy"
|
|
280
|
+
version = "0.2.4"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "either"
|
|
286
|
+
version = "1.15.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "find-msvc-tools"
|
|
292
|
+
version = "0.1.5"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "flate2"
|
|
298
|
+
version = "1.1.5"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"crc32fast",
|
|
303
|
+
"miniz_oxide",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "geodb-cli"
|
|
308
|
+
version = "0.1.2"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"anyhow",
|
|
311
|
+
"clap",
|
|
312
|
+
"geodb-core",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "geodb-core"
|
|
317
|
+
version = "0.1.2"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"bincode",
|
|
320
|
+
"criterion",
|
|
321
|
+
"flate2",
|
|
322
|
+
"once_cell",
|
|
323
|
+
"serde",
|
|
324
|
+
"serde_json",
|
|
325
|
+
"thiserror",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "geodb-py"
|
|
330
|
+
version = "0.1.2"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"geodb-core",
|
|
333
|
+
"pyo3",
|
|
334
|
+
"pyo3-build-config",
|
|
335
|
+
"serde",
|
|
336
|
+
"serde_json",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "geodb-rs"
|
|
341
|
+
version = "0.1.0"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"geodb-core",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "geodb-wasm"
|
|
348
|
+
version = "0.1.2"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"bincode",
|
|
351
|
+
"console_error_panic_hook",
|
|
352
|
+
"geodb-core",
|
|
353
|
+
"js-sys",
|
|
354
|
+
"serde",
|
|
355
|
+
"serde-wasm-bindgen",
|
|
356
|
+
"serde_json",
|
|
357
|
+
"wasm-bindgen",
|
|
358
|
+
"wasm-bindgen-test",
|
|
359
|
+
"web-sys",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "half"
|
|
364
|
+
version = "2.7.1"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"cfg-if",
|
|
369
|
+
"crunchy",
|
|
370
|
+
"zerocopy",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "heck"
|
|
375
|
+
version = "0.5.0"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "hermit-abi"
|
|
381
|
+
version = "0.5.2"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "indoc"
|
|
387
|
+
version = "2.0.7"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"rustversion",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "is-terminal"
|
|
396
|
+
version = "0.4.17"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"hermit-abi",
|
|
401
|
+
"libc",
|
|
402
|
+
"windows-sys",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "is_terminal_polyfill"
|
|
407
|
+
version = "1.70.2"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "itertools"
|
|
413
|
+
version = "0.10.5"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"either",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "itoa"
|
|
422
|
+
version = "1.0.15"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "js-sys"
|
|
428
|
+
version = "0.3.82"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"once_cell",
|
|
433
|
+
"wasm-bindgen",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "libc"
|
|
438
|
+
version = "0.2.177"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "memchr"
|
|
444
|
+
version = "2.7.6"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "memoffset"
|
|
450
|
+
version = "0.9.1"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"autocfg",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "minicov"
|
|
459
|
+
version = "0.3.7"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"cc",
|
|
464
|
+
"walkdir",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "miniz_oxide"
|
|
469
|
+
version = "0.8.9"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"adler2",
|
|
474
|
+
"simd-adler32",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "num-traits"
|
|
479
|
+
version = "0.2.19"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"autocfg",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "once_cell"
|
|
488
|
+
version = "1.21.3"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "once_cell_polyfill"
|
|
494
|
+
version = "1.70.2"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "oorandom"
|
|
500
|
+
version = "11.1.5"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "plotters"
|
|
506
|
+
version = "0.3.7"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"num-traits",
|
|
511
|
+
"plotters-backend",
|
|
512
|
+
"plotters-svg",
|
|
513
|
+
"wasm-bindgen",
|
|
514
|
+
"web-sys",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "plotters-backend"
|
|
519
|
+
version = "0.3.7"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "plotters-svg"
|
|
525
|
+
version = "0.3.7"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"plotters-backend",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "portable-atomic"
|
|
534
|
+
version = "1.11.1"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "proc-macro2"
|
|
540
|
+
version = "1.0.103"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"unicode-ident",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "pyo3"
|
|
549
|
+
version = "0.22.6"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"cfg-if",
|
|
554
|
+
"indoc",
|
|
555
|
+
"libc",
|
|
556
|
+
"memoffset",
|
|
557
|
+
"once_cell",
|
|
558
|
+
"portable-atomic",
|
|
559
|
+
"pyo3-build-config",
|
|
560
|
+
"pyo3-ffi",
|
|
561
|
+
"pyo3-macros",
|
|
562
|
+
"unindent",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "pyo3-build-config"
|
|
567
|
+
version = "0.22.6"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"once_cell",
|
|
572
|
+
"target-lexicon",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "pyo3-ffi"
|
|
577
|
+
version = "0.22.6"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"libc",
|
|
582
|
+
"pyo3-build-config",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "pyo3-macros"
|
|
587
|
+
version = "0.22.6"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"proc-macro2",
|
|
592
|
+
"pyo3-macros-backend",
|
|
593
|
+
"quote",
|
|
594
|
+
"syn",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "pyo3-macros-backend"
|
|
599
|
+
version = "0.22.6"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"heck",
|
|
604
|
+
"proc-macro2",
|
|
605
|
+
"pyo3-build-config",
|
|
606
|
+
"quote",
|
|
607
|
+
"syn",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "quote"
|
|
612
|
+
version = "1.0.42"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"proc-macro2",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "rayon"
|
|
621
|
+
version = "1.11.0"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"either",
|
|
626
|
+
"rayon-core",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "rayon-core"
|
|
631
|
+
version = "1.13.0"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"crossbeam-deque",
|
|
636
|
+
"crossbeam-utils",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "regex"
|
|
641
|
+
version = "1.12.2"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"aho-corasick",
|
|
646
|
+
"memchr",
|
|
647
|
+
"regex-automata",
|
|
648
|
+
"regex-syntax",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "regex-automata"
|
|
653
|
+
version = "0.4.13"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"aho-corasick",
|
|
658
|
+
"memchr",
|
|
659
|
+
"regex-syntax",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "regex-syntax"
|
|
664
|
+
version = "0.8.8"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "rustversion"
|
|
670
|
+
version = "1.0.22"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "ryu"
|
|
676
|
+
version = "1.0.20"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "same-file"
|
|
682
|
+
version = "1.0.6"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"winapi-util",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "serde"
|
|
691
|
+
version = "1.0.228"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"serde_core",
|
|
696
|
+
"serde_derive",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "serde-wasm-bindgen"
|
|
701
|
+
version = "0.6.5"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"js-sys",
|
|
706
|
+
"serde",
|
|
707
|
+
"wasm-bindgen",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "serde_core"
|
|
712
|
+
version = "1.0.228"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"serde_derive",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "serde_derive"
|
|
721
|
+
version = "1.0.228"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
724
|
+
dependencies = [
|
|
725
|
+
"proc-macro2",
|
|
726
|
+
"quote",
|
|
727
|
+
"syn",
|
|
728
|
+
]
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "serde_json"
|
|
732
|
+
version = "1.0.145"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
735
|
+
dependencies = [
|
|
736
|
+
"itoa",
|
|
737
|
+
"memchr",
|
|
738
|
+
"ryu",
|
|
739
|
+
"serde",
|
|
740
|
+
"serde_core",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "shlex"
|
|
745
|
+
version = "1.3.0"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "simd-adler32"
|
|
751
|
+
version = "0.3.7"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "strsim"
|
|
757
|
+
version = "0.11.1"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "syn"
|
|
763
|
+
version = "2.0.110"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"proc-macro2",
|
|
768
|
+
"quote",
|
|
769
|
+
"unicode-ident",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "target-lexicon"
|
|
774
|
+
version = "0.12.16"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "thiserror"
|
|
780
|
+
version = "2.0.17"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"thiserror-impl",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "thiserror-impl"
|
|
789
|
+
version = "2.0.17"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"proc-macro2",
|
|
794
|
+
"quote",
|
|
795
|
+
"syn",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "tinytemplate"
|
|
800
|
+
version = "1.2.1"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"serde",
|
|
805
|
+
"serde_json",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "unicode-ident"
|
|
810
|
+
version = "1.0.22"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "unindent"
|
|
816
|
+
version = "0.2.4"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "utf8parse"
|
|
822
|
+
version = "0.2.2"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "walkdir"
|
|
828
|
+
version = "2.5.0"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"same-file",
|
|
833
|
+
"winapi-util",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "wasm-bindgen"
|
|
838
|
+
version = "0.2.105"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"cfg-if",
|
|
843
|
+
"once_cell",
|
|
844
|
+
"rustversion",
|
|
845
|
+
"wasm-bindgen-macro",
|
|
846
|
+
"wasm-bindgen-shared",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "wasm-bindgen-futures"
|
|
851
|
+
version = "0.4.55"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"cfg-if",
|
|
856
|
+
"js-sys",
|
|
857
|
+
"once_cell",
|
|
858
|
+
"wasm-bindgen",
|
|
859
|
+
"web-sys",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "wasm-bindgen-macro"
|
|
864
|
+
version = "0.2.105"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"quote",
|
|
869
|
+
"wasm-bindgen-macro-support",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "wasm-bindgen-macro-support"
|
|
874
|
+
version = "0.2.105"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"bumpalo",
|
|
879
|
+
"proc-macro2",
|
|
880
|
+
"quote",
|
|
881
|
+
"syn",
|
|
882
|
+
"wasm-bindgen-shared",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "wasm-bindgen-shared"
|
|
887
|
+
version = "0.2.105"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"unicode-ident",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "wasm-bindgen-test"
|
|
896
|
+
version = "0.3.55"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"js-sys",
|
|
901
|
+
"minicov",
|
|
902
|
+
"wasm-bindgen",
|
|
903
|
+
"wasm-bindgen-futures",
|
|
904
|
+
"wasm-bindgen-test-macro",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "wasm-bindgen-test-macro"
|
|
909
|
+
version = "0.3.55"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"proc-macro2",
|
|
914
|
+
"quote",
|
|
915
|
+
"syn",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "web-sys"
|
|
920
|
+
version = "0.3.82"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"js-sys",
|
|
925
|
+
"wasm-bindgen",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "winapi-util"
|
|
930
|
+
version = "0.1.11"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
933
|
+
dependencies = [
|
|
934
|
+
"windows-sys",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "windows-link"
|
|
939
|
+
version = "0.2.1"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "windows-sys"
|
|
945
|
+
version = "0.61.2"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"windows-link",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "zerocopy"
|
|
954
|
+
version = "0.8.27"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"zerocopy-derive",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "zerocopy-derive"
|
|
963
|
+
version = "0.8.27"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"proc-macro2",
|
|
968
|
+
"quote",
|
|
969
|
+
"syn",
|
|
970
|
+
]
|