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