kglite-visual 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kglite_visual-0.1.0/Cargo.lock +3505 -0
- kglite_visual-0.1.0/Cargo.toml +38 -0
- kglite_visual-0.1.0/LICENSE +21 -0
- kglite_visual-0.1.0/PKG-INFO +95 -0
- kglite_visual-0.1.0/README.md +68 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/Cargo.toml +64 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/build.rs +26 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/api.rs +295 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/assets.rs +114 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/broadcast.rs +221 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/cli.rs +307 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/lib.rs +27 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/main.rs +12 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/mcp.rs +821 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/render_cmd.rs +410 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/server.rs +228 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/src/ws.rs +184 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/tests/render_cli.rs +219 -0
- kglite_visual-0.1.0/crates/kglite-visual-cli/tests/shutdown.rs +153 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/Cargo.toml +66 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/examples/bench_server.rs +360 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/examples/make_fixture.rs +334 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/bound.rs +141 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/control.rs +253 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/error.rs +42 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/expand.rs +740 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/launch.rs +78 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/layout.rs +210 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/lib.rs +52 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/loader.rs +64 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/meta_graph.rs +426 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/protocol.rs +631 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/query.rs +644 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/render/encoding.rs +552 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/render/labels.rs +563 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/render/layout.rs +2780 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/render/mod.rs +1659 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/render/raster.rs +156 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/render/structure.rs +603 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/render/svg.rs +831 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/request.rs +192 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/session.rs +880 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/slots.rs +78 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/stats.rs +317 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/values.rs +67 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/src/view.rs +548 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/baselines/framing.golden +82 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/cacheless_kgl_counts.rs +117 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/drill_in_fixture.rs +790 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/fixtures/meta.kgl +0 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/fixtures/meta.positions.json +11 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/goldens/fixture-cypher-dark.svg +109 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/goldens/fixture-meta-dark.svg +41 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/goldens/fixture-meta-light.svg +41 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/kglite_smoke.rs +79 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/meta_graph_fixture.rs +275 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/protocol_baseline.rs +220 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/render_golden.rs +570 -0
- kglite_visual-0.1.0/crates/kglite-visual-core/tests/render_png.rs +114 -0
- kglite_visual-0.1.0/crates/kglite-visual-py/Cargo.toml +66 -0
- kglite_visual-0.1.0/crates/kglite-visual-py/src/lib.rs +348 -0
- kglite_visual-0.1.0/frontend/dist/assets/index-C3Vcxezq.css +1 -0
- kglite_visual-0.1.0/frontend/dist/assets/index-_v8qPIIO.js +3266 -0
- kglite_visual-0.1.0/frontend/dist/assets/index-_v8qPIIO.js.map +1 -0
- kglite_visual-0.1.0/frontend/dist/assets/webgl-device-P6b_AAsx.js +2 -0
- kglite_visual-0.1.0/frontend/dist/assets/webgl-device-P6b_AAsx.js.map +1 -0
- kglite_visual-0.1.0/frontend/dist/index.html +19 -0
- kglite_visual-0.1.0/pyproject.toml +100 -0
- kglite_visual-0.1.0/python/kglite_visual/__init__.py +36 -0
- kglite_visual-0.1.0/python/kglite_visual/_notebook.py +159 -0
- kglite_visual-0.1.0/python/kglite_visual/_server.py +237 -0
|
@@ -0,0 +1,3505 @@
|
|
|
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.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "allocator-api2"
|
|
22
|
+
version = "0.2.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "android_system_properties"
|
|
28
|
+
version = "0.1.6"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"libc",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstream"
|
|
37
|
+
version = "1.0.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"anstyle",
|
|
42
|
+
"anstyle-parse",
|
|
43
|
+
"anstyle-query",
|
|
44
|
+
"anstyle-wincon",
|
|
45
|
+
"colorchoice",
|
|
46
|
+
"is_terminal_polyfill",
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle"
|
|
52
|
+
version = "1.0.14"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle-parse"
|
|
58
|
+
version = "1.0.0"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"utf8parse",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-query"
|
|
67
|
+
version = "1.1.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"windows-sys",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-wincon"
|
|
76
|
+
version = "3.0.11"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"anstyle",
|
|
81
|
+
"once_cell_polyfill",
|
|
82
|
+
"windows-sys",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "approx"
|
|
87
|
+
version = "0.5.1"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"num-traits",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "ar_archive_writer"
|
|
96
|
+
version = "0.5.3"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "73cd58deff2140a0a8eae87e417bd01db68a33e148aa93d1e8cd837e55e312b6"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"object",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "arrayref"
|
|
105
|
+
version = "0.3.9"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "arrayvec"
|
|
111
|
+
version = "0.7.8"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "as-slice"
|
|
117
|
+
version = "0.1.5"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "45403b49e3954a4b8428a0ac21a4b7afadccf92bfd96273f1a58cd4812496ae0"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"generic-array 0.12.4",
|
|
122
|
+
"generic-array 0.13.3",
|
|
123
|
+
"generic-array 0.14.9",
|
|
124
|
+
"stable_deref_trait",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "async-trait"
|
|
129
|
+
version = "0.1.92"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"proc-macro2",
|
|
134
|
+
"quote",
|
|
135
|
+
"syn 3.0.4",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "atomic-polyfill"
|
|
140
|
+
version = "1.0.3"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"critical-section",
|
|
145
|
+
]
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "atomic-waker"
|
|
149
|
+
version = "1.1.2"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "autocfg"
|
|
155
|
+
version = "1.5.1"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "axum"
|
|
161
|
+
version = "0.8.9"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"axum-core",
|
|
166
|
+
"base64 0.22.1",
|
|
167
|
+
"bytes",
|
|
168
|
+
"form_urlencoded",
|
|
169
|
+
"futures-util",
|
|
170
|
+
"http",
|
|
171
|
+
"http-body",
|
|
172
|
+
"http-body-util",
|
|
173
|
+
"hyper",
|
|
174
|
+
"hyper-util",
|
|
175
|
+
"itoa",
|
|
176
|
+
"matchit",
|
|
177
|
+
"memchr",
|
|
178
|
+
"mime",
|
|
179
|
+
"percent-encoding",
|
|
180
|
+
"pin-project-lite",
|
|
181
|
+
"serde_core",
|
|
182
|
+
"serde_json",
|
|
183
|
+
"serde_path_to_error",
|
|
184
|
+
"serde_urlencoded",
|
|
185
|
+
"sha1",
|
|
186
|
+
"sync_wrapper",
|
|
187
|
+
"tokio",
|
|
188
|
+
"tokio-tungstenite",
|
|
189
|
+
"tower",
|
|
190
|
+
"tower-layer",
|
|
191
|
+
"tower-service",
|
|
192
|
+
"tracing",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "axum-core"
|
|
197
|
+
version = "0.5.6"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"bytes",
|
|
202
|
+
"futures-core",
|
|
203
|
+
"http",
|
|
204
|
+
"http-body",
|
|
205
|
+
"http-body-util",
|
|
206
|
+
"mime",
|
|
207
|
+
"pin-project-lite",
|
|
208
|
+
"sync_wrapper",
|
|
209
|
+
"tower-layer",
|
|
210
|
+
"tower-service",
|
|
211
|
+
"tracing",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "base64"
|
|
216
|
+
version = "0.22.1"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "base64"
|
|
222
|
+
version = "0.23.1"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "bitflags"
|
|
228
|
+
version = "2.13.1"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "block-buffer"
|
|
234
|
+
version = "0.10.4"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"generic-array 0.14.9",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "block-buffer"
|
|
243
|
+
version = "0.12.1"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"hybrid-array",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "bumpalo"
|
|
252
|
+
version = "3.20.3"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "bytemuck"
|
|
258
|
+
version = "1.25.2"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"bytemuck_derive",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "bytemuck_derive"
|
|
267
|
+
version = "1.12.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"proc-macro2",
|
|
272
|
+
"quote",
|
|
273
|
+
"syn 3.0.4",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "byteorder"
|
|
278
|
+
version = "1.5.0"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "bytes"
|
|
284
|
+
version = "1.12.1"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "bzip2"
|
|
290
|
+
version = "0.6.1"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
293
|
+
dependencies = [
|
|
294
|
+
"libbz2-rs-sys",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "cc"
|
|
299
|
+
version = "1.4.4"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"find-msvc-tools",
|
|
304
|
+
"jobserver",
|
|
305
|
+
"libc",
|
|
306
|
+
"shlex",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "cfg-if"
|
|
311
|
+
version = "1.0.4"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "chacha20"
|
|
317
|
+
version = "0.10.2"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"cfg-if",
|
|
322
|
+
"cpufeatures 0.3.1",
|
|
323
|
+
"rand_core 0.10.1",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "chrono"
|
|
328
|
+
version = "0.4.45"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"iana-time-zone",
|
|
333
|
+
"js-sys",
|
|
334
|
+
"num-traits",
|
|
335
|
+
"serde",
|
|
336
|
+
"wasm-bindgen",
|
|
337
|
+
"windows-link",
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "clap"
|
|
342
|
+
version = "4.6.6"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"clap_builder",
|
|
347
|
+
"clap_derive",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "clap_builder"
|
|
352
|
+
version = "4.6.6"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
355
|
+
dependencies = [
|
|
356
|
+
"anstream",
|
|
357
|
+
"anstyle",
|
|
358
|
+
"clap_lex",
|
|
359
|
+
"strsim",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "clap_derive"
|
|
364
|
+
version = "4.6.4"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"heck",
|
|
369
|
+
"proc-macro2",
|
|
370
|
+
"quote",
|
|
371
|
+
"syn 3.0.4",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "clap_lex"
|
|
376
|
+
version = "1.1.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "cobs"
|
|
382
|
+
version = "0.3.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"thiserror 2.0.20",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "colorchoice"
|
|
391
|
+
version = "1.0.5"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "combine"
|
|
397
|
+
version = "4.6.8"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"bytes",
|
|
402
|
+
"memchr",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "const-oid"
|
|
407
|
+
version = "0.10.2"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "core-foundation-sys"
|
|
413
|
+
version = "0.8.7"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "cpufeatures"
|
|
419
|
+
version = "0.2.17"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"libc",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "cpufeatures"
|
|
428
|
+
version = "0.3.1"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"libc",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "crc32fast"
|
|
437
|
+
version = "1.5.1"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"cfg-if",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "critical-section"
|
|
446
|
+
version = "1.2.0"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "crossbeam-deque"
|
|
452
|
+
version = "0.8.7"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"crossbeam-epoch",
|
|
457
|
+
"crossbeam-utils",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "crossbeam-epoch"
|
|
462
|
+
version = "0.9.20"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"crossbeam-utils",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "crossbeam-utils"
|
|
471
|
+
version = "0.8.22"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "crypto-common"
|
|
477
|
+
version = "0.1.6"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"generic-array 0.14.9",
|
|
482
|
+
"typenum",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "crypto-common"
|
|
487
|
+
version = "0.2.2"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
490
|
+
dependencies = [
|
|
491
|
+
"hybrid-array",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "csv"
|
|
496
|
+
version = "1.4.0"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"csv-core",
|
|
501
|
+
"itoa",
|
|
502
|
+
"ryu",
|
|
503
|
+
"serde_core",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "csv-core"
|
|
508
|
+
version = "0.1.13"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"memchr",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "darling"
|
|
517
|
+
version = "0.24.1"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "ed17f5901b6630b993ca003def43f2f8ef4014fc13b047b57aad617ff32bc2ec"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"darling_core",
|
|
522
|
+
"darling_macro",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "darling_core"
|
|
527
|
+
version = "0.24.1"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "6837e2cf7485aaae18f86181d2f0e9a7ed297a025e220aeabf63fdebd3a2ddff"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"ident_case",
|
|
532
|
+
"proc-macro2",
|
|
533
|
+
"quote",
|
|
534
|
+
"strsim",
|
|
535
|
+
"syn 3.0.4",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "darling_macro"
|
|
540
|
+
version = "0.24.1"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "2ac7135c3ef02b2f7833bbeb1be5ba7f966dcde8a87c6b87f65a778d71a02785"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"darling_core",
|
|
545
|
+
"quote",
|
|
546
|
+
"syn 3.0.4",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "data-encoding"
|
|
551
|
+
version = "2.11.1"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "data-url"
|
|
557
|
+
version = "0.3.2"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "digest"
|
|
563
|
+
version = "0.10.7"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"block-buffer 0.10.4",
|
|
568
|
+
"crypto-common 0.1.6",
|
|
569
|
+
]
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "digest"
|
|
573
|
+
version = "0.11.3"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"block-buffer 0.12.1",
|
|
578
|
+
"const-oid",
|
|
579
|
+
"crypto-common 0.2.2",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "dirs"
|
|
584
|
+
version = "6.0.0"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"dirs-sys",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "dirs-sys"
|
|
593
|
+
version = "0.5.0"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"libc",
|
|
598
|
+
"option-ext",
|
|
599
|
+
"redox_users",
|
|
600
|
+
"windows-sys",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "dispatch2"
|
|
605
|
+
version = "0.3.1"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"bitflags",
|
|
610
|
+
"objc2",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "displaydoc"
|
|
615
|
+
version = "0.2.7"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"proc-macro2",
|
|
620
|
+
"quote",
|
|
621
|
+
"syn 3.0.4",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "dyn-clone"
|
|
626
|
+
version = "1.0.20"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "earcut"
|
|
632
|
+
version = "0.4.5"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "88459a2a8e3a514b6e6de38cf3aaa9250a894cb098f74a932db77fcc8341b6d0"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"num-traits",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "either"
|
|
641
|
+
version = "1.18.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "embedded-io"
|
|
647
|
+
version = "0.4.0"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "embedded-io"
|
|
653
|
+
version = "0.6.1"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "equivalent"
|
|
659
|
+
version = "1.0.2"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "errno"
|
|
665
|
+
version = "0.3.14"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"libc",
|
|
670
|
+
"windows-sys",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "euclid"
|
|
675
|
+
version = "0.22.14"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"num-traits",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "fastrand"
|
|
684
|
+
version = "2.5.0"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "fdeflate"
|
|
690
|
+
version = "0.3.7"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"simd-adler32",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "find-msvc-tools"
|
|
699
|
+
version = "0.1.11"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "fixedbitset"
|
|
705
|
+
version = "0.5.7"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "flate2"
|
|
711
|
+
version = "1.1.10"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"crc32fast",
|
|
716
|
+
"miniz_oxide 0.9.1",
|
|
717
|
+
"zlib-rs",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "float-cmp"
|
|
722
|
+
version = "0.9.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "float_next_after"
|
|
728
|
+
version = "2.0.0"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "37007738a80ea34f969af54a3390dd72cacdef654974cfd449c9f6f72dbaac10"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "foldhash"
|
|
734
|
+
version = "0.1.5"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "foldhash"
|
|
740
|
+
version = "0.2.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "font-types"
|
|
746
|
+
version = "0.12.4"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "e64eb721ca85a34323425f4041adc5d82704d3782d5f8f03793bc012419dce23"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"bytemuck",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "fontconfig-parser"
|
|
755
|
+
version = "0.5.8"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"roxmltree 0.20.0",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "fontdb"
|
|
764
|
+
version = "0.24.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "2660c5e9157bf76d2db1294e4a9feba604ef610819a3b591088d0d8392a3290f"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"fontconfig-parser",
|
|
769
|
+
"log",
|
|
770
|
+
"memmap2",
|
|
771
|
+
"slotmap",
|
|
772
|
+
"tinyvec",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "form_urlencoded"
|
|
777
|
+
version = "1.2.2"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"percent-encoding",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "fs2"
|
|
786
|
+
version = "0.4.3"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"libc",
|
|
791
|
+
"winapi",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "futures"
|
|
796
|
+
version = "0.3.34"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
|
|
799
|
+
dependencies = [
|
|
800
|
+
"futures-channel",
|
|
801
|
+
"futures-core",
|
|
802
|
+
"futures-executor",
|
|
803
|
+
"futures-io",
|
|
804
|
+
"futures-sink",
|
|
805
|
+
"futures-task",
|
|
806
|
+
"futures-util",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "futures-channel"
|
|
811
|
+
version = "0.3.34"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"futures-core",
|
|
816
|
+
"futures-sink",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "futures-core"
|
|
821
|
+
version = "0.3.34"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "futures-executor"
|
|
827
|
+
version = "0.3.34"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"futures-core",
|
|
832
|
+
"futures-task",
|
|
833
|
+
"futures-util",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "futures-io"
|
|
838
|
+
version = "0.3.34"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "futures-macro"
|
|
844
|
+
version = "0.3.34"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"proc-macro2",
|
|
849
|
+
"quote",
|
|
850
|
+
"syn 3.0.4",
|
|
851
|
+
]
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "futures-sink"
|
|
855
|
+
version = "0.3.34"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "futures-task"
|
|
861
|
+
version = "0.3.34"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "futures-util"
|
|
867
|
+
version = "0.3.34"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"futures-channel",
|
|
872
|
+
"futures-core",
|
|
873
|
+
"futures-io",
|
|
874
|
+
"futures-macro",
|
|
875
|
+
"futures-sink",
|
|
876
|
+
"futures-task",
|
|
877
|
+
"memchr",
|
|
878
|
+
"pin-project-lite",
|
|
879
|
+
"slab",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "generic-array"
|
|
884
|
+
version = "0.12.4"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"typenum",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "generic-array"
|
|
893
|
+
version = "0.13.3"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "f797e67af32588215eaaab8327027ee8e71b9dd0b2b26996aedf20c030fce309"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"typenum",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "generic-array"
|
|
902
|
+
version = "0.14.9"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"typenum",
|
|
907
|
+
"version_check",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "geo"
|
|
912
|
+
version = "0.33.1"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "30eb1fdc57c1e5cfd11826fe0caec4b9dc7901f3758263bb506228d88c8d9e9a"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"earcut",
|
|
917
|
+
"float_next_after",
|
|
918
|
+
"geo-types",
|
|
919
|
+
"geographiclib-rs",
|
|
920
|
+
"i_overlay",
|
|
921
|
+
"log",
|
|
922
|
+
"num-traits",
|
|
923
|
+
"rand 0.10.2",
|
|
924
|
+
"rand_pcg",
|
|
925
|
+
"robust",
|
|
926
|
+
"rstar 0.12.2",
|
|
927
|
+
"sif-itree",
|
|
928
|
+
"spade",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "geo-traits"
|
|
933
|
+
version = "0.3.0"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "2e7c353d12a704ccfab1ba8bfb1a7fe6cb18b665bf89d37f4f7890edcd260206"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"geo-types",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "geo-types"
|
|
942
|
+
version = "0.7.20"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "777d18aa0f12f8b285331cd867133ee14422b3f023f6d388034c47d43e28786a"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"approx",
|
|
947
|
+
"num-traits",
|
|
948
|
+
"rayon",
|
|
949
|
+
"rstar 0.10.0",
|
|
950
|
+
"rstar 0.11.0",
|
|
951
|
+
"rstar 0.12.2",
|
|
952
|
+
"rstar 0.13.0",
|
|
953
|
+
"rstar 0.8.4",
|
|
954
|
+
"rstar 0.9.3",
|
|
955
|
+
"serde",
|
|
956
|
+
"spade",
|
|
957
|
+
"thiserror 2.0.20",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "geographiclib-rs"
|
|
962
|
+
version = "0.2.7"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "c5a7f08910fd98737a6eda7568e7c5e645093e073328eeef49758cfe8b0489c7"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"libm",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "geojson"
|
|
971
|
+
version = "1.0.0"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "510c094bfc76ea34d02eee00833254945b70491d79a9c0b050abed6eaa799ffb"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"geo-types",
|
|
976
|
+
"log",
|
|
977
|
+
"serde",
|
|
978
|
+
"serde_json",
|
|
979
|
+
"thiserror 2.0.20",
|
|
980
|
+
"tinyvec",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "getrandom"
|
|
985
|
+
version = "0.2.17"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"cfg-if",
|
|
990
|
+
"libc",
|
|
991
|
+
"wasi",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "getrandom"
|
|
996
|
+
version = "0.3.4"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"cfg-if",
|
|
1001
|
+
"libc",
|
|
1002
|
+
"r-efi 5.3.0",
|
|
1003
|
+
"wasip2",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "getrandom"
|
|
1008
|
+
version = "0.4.3"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"cfg-if",
|
|
1013
|
+
"libc",
|
|
1014
|
+
"r-efi 6.0.0",
|
|
1015
|
+
"rand_core 0.10.1",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "harfrust"
|
|
1020
|
+
version = "0.12.0"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "c03d949a14aa089bbb282f7dd76a498a7f684428e4257202efc119ec010376f9"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"bitflags",
|
|
1025
|
+
"bytemuck",
|
|
1026
|
+
"read-fonts",
|
|
1027
|
+
"smallvec",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "hash32"
|
|
1032
|
+
version = "0.1.1"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "d4041af86e63ac4298ce40e5cca669066e75b6f1aa3390fe2561ffa5e1d9f4cc"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"byteorder",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "hash32"
|
|
1041
|
+
version = "0.2.1"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"byteorder",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "hash32"
|
|
1050
|
+
version = "0.3.1"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"byteorder",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "hashbrown"
|
|
1059
|
+
version = "0.15.5"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"foldhash 0.1.5",
|
|
1064
|
+
]
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "hashbrown"
|
|
1068
|
+
version = "0.16.1"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"allocator-api2",
|
|
1073
|
+
"equivalent",
|
|
1074
|
+
"foldhash 0.2.0",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "hashbrown"
|
|
1079
|
+
version = "0.17.1"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "heapless"
|
|
1085
|
+
version = "0.6.1"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "634bd4d29cbf24424d0a4bfcbf80c6960129dc24424752a7d1d1390607023422"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"as-slice",
|
|
1090
|
+
"generic-array 0.14.9",
|
|
1091
|
+
"hash32 0.1.1",
|
|
1092
|
+
"stable_deref_trait",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "heapless"
|
|
1097
|
+
version = "0.7.17"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"atomic-polyfill",
|
|
1102
|
+
"hash32 0.2.1",
|
|
1103
|
+
"rustc_version",
|
|
1104
|
+
"spin",
|
|
1105
|
+
"stable_deref_trait",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "heapless"
|
|
1110
|
+
version = "0.8.0"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"hash32 0.3.1",
|
|
1115
|
+
"stable_deref_trait",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "heck"
|
|
1120
|
+
version = "0.5.0"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "http"
|
|
1126
|
+
version = "1.5.0"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
|
|
1129
|
+
dependencies = [
|
|
1130
|
+
"bytes",
|
|
1131
|
+
"itoa",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "http-body"
|
|
1136
|
+
version = "1.1.0"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"bytes",
|
|
1141
|
+
"http",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "http-body-util"
|
|
1146
|
+
version = "0.1.5"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"bytes",
|
|
1151
|
+
"futures-core",
|
|
1152
|
+
"http",
|
|
1153
|
+
"http-body",
|
|
1154
|
+
"pin-project-lite",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "httparse"
|
|
1159
|
+
version = "1.10.1"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "httpdate"
|
|
1165
|
+
version = "1.0.3"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "hybrid-array"
|
|
1171
|
+
version = "0.4.14"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"typenum",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "hyper"
|
|
1180
|
+
version = "1.11.1"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"atomic-waker",
|
|
1185
|
+
"bytes",
|
|
1186
|
+
"futures-channel",
|
|
1187
|
+
"futures-core",
|
|
1188
|
+
"http",
|
|
1189
|
+
"http-body",
|
|
1190
|
+
"httparse",
|
|
1191
|
+
"httpdate",
|
|
1192
|
+
"itoa",
|
|
1193
|
+
"pin-project-lite",
|
|
1194
|
+
"smallvec",
|
|
1195
|
+
"tokio",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "hyper-util"
|
|
1200
|
+
version = "0.1.20"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"bytes",
|
|
1205
|
+
"http",
|
|
1206
|
+
"http-body",
|
|
1207
|
+
"hyper",
|
|
1208
|
+
"pin-project-lite",
|
|
1209
|
+
"tokio",
|
|
1210
|
+
"tower-service",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "i_float"
|
|
1215
|
+
version = "1.16.0"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "813145bb0ad5b60f55cbbf3c74cdceda1c0a9d253b35c4cc36ae0df7887cb78f"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"libm",
|
|
1220
|
+
]
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "i_key_sort"
|
|
1224
|
+
version = "0.10.3"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "d73d122b937fca067feb0ad74f62388920272b27c356d4df2d0cfdd59e044cf0"
|
|
1227
|
+
dependencies = [
|
|
1228
|
+
"rayon",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "i_overlay"
|
|
1233
|
+
version = "4.5.2"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "8dd314b4668e2b3a12508f2e125558c82a6c0a8636fa5107a900f79ce414e450"
|
|
1236
|
+
dependencies = [
|
|
1237
|
+
"i_float",
|
|
1238
|
+
"i_key_sort",
|
|
1239
|
+
"i_shape",
|
|
1240
|
+
"i_tree",
|
|
1241
|
+
"rayon",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "i_shape"
|
|
1246
|
+
version = "1.18.0"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "bfa9eac533d7509a8ab87672b60ac610c17240f9ea4851d26227689fdfe349c8"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"i_float",
|
|
1251
|
+
]
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "i_tree"
|
|
1255
|
+
version = "0.18.0"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "4804bdc1dc124eb7e1aa9e144ecc04096bcf787a10a15fa44af682b51f0f6cce"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "iana-time-zone"
|
|
1261
|
+
version = "0.1.65"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"android_system_properties",
|
|
1266
|
+
"core-foundation-sys",
|
|
1267
|
+
"iana-time-zone-haiku",
|
|
1268
|
+
"js-sys",
|
|
1269
|
+
"log",
|
|
1270
|
+
"wasm-bindgen",
|
|
1271
|
+
"windows-core",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "iana-time-zone-haiku"
|
|
1276
|
+
version = "0.1.2"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"cc",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "icu_collections"
|
|
1285
|
+
version = "2.3.0"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"displaydoc",
|
|
1290
|
+
"potential_utf",
|
|
1291
|
+
"utf8_iter",
|
|
1292
|
+
"yoke",
|
|
1293
|
+
"zerofrom",
|
|
1294
|
+
"zerovec",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "icu_locale_core"
|
|
1299
|
+
version = "2.3.0"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"displaydoc",
|
|
1304
|
+
"litemap",
|
|
1305
|
+
"tinystr",
|
|
1306
|
+
"writeable",
|
|
1307
|
+
"zerovec",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "icu_normalizer"
|
|
1312
|
+
version = "2.3.0"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"icu_collections",
|
|
1317
|
+
"icu_normalizer_data",
|
|
1318
|
+
"icu_properties",
|
|
1319
|
+
"icu_provider",
|
|
1320
|
+
"smallvec",
|
|
1321
|
+
"zerovec",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "icu_normalizer_data"
|
|
1326
|
+
version = "2.3.0"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "icu_properties"
|
|
1332
|
+
version = "2.3.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"displaydoc",
|
|
1337
|
+
"icu_collections",
|
|
1338
|
+
"icu_locale_core",
|
|
1339
|
+
"icu_properties_data",
|
|
1340
|
+
"icu_provider",
|
|
1341
|
+
"zerotrie",
|
|
1342
|
+
"zerovec",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "icu_properties_data"
|
|
1347
|
+
version = "2.3.0"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "icu_provider"
|
|
1353
|
+
version = "2.3.1"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"displaydoc",
|
|
1358
|
+
"icu_locale_core",
|
|
1359
|
+
"writeable",
|
|
1360
|
+
"yoke",
|
|
1361
|
+
"zerofrom",
|
|
1362
|
+
"zerotrie",
|
|
1363
|
+
"zerovec",
|
|
1364
|
+
]
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "ident_case"
|
|
1368
|
+
version = "1.0.1"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "idna"
|
|
1374
|
+
version = "1.1.0"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"idna_adapter",
|
|
1379
|
+
"smallvec",
|
|
1380
|
+
"utf8_iter",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "idna_adapter"
|
|
1385
|
+
version = "1.2.2"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"icu_normalizer",
|
|
1390
|
+
"icu_properties",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "imagesize"
|
|
1395
|
+
version = "0.15.0"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "65b27460c2c92b037f3f94c538ed9a3342f3fdf923606781629ccb35f82d042a"
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "indexmap"
|
|
1401
|
+
version = "2.14.1"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb"
|
|
1404
|
+
dependencies = [
|
|
1405
|
+
"equivalent",
|
|
1406
|
+
"hashbrown 0.17.1",
|
|
1407
|
+
"serde",
|
|
1408
|
+
"serde_core",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "is_terminal_polyfill"
|
|
1413
|
+
version = "1.70.2"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "itoa"
|
|
1419
|
+
version = "1.0.18"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "jni"
|
|
1425
|
+
version = "0.22.4"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1428
|
+
dependencies = [
|
|
1429
|
+
"cfg-if",
|
|
1430
|
+
"combine",
|
|
1431
|
+
"jni-macros",
|
|
1432
|
+
"jni-sys",
|
|
1433
|
+
"log",
|
|
1434
|
+
"simd_cesu8",
|
|
1435
|
+
"thiserror 2.0.20",
|
|
1436
|
+
"walkdir",
|
|
1437
|
+
"windows-link",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "jni-macros"
|
|
1442
|
+
version = "0.22.4"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"proc-macro2",
|
|
1447
|
+
"quote",
|
|
1448
|
+
"rustc_version",
|
|
1449
|
+
"simd_cesu8",
|
|
1450
|
+
"syn 2.0.119",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "jni-sys"
|
|
1455
|
+
version = "0.4.1"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"jni-sys-macros",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "jni-sys-macros"
|
|
1464
|
+
version = "0.4.1"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"quote",
|
|
1469
|
+
"syn 2.0.119",
|
|
1470
|
+
]
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "jobserver"
|
|
1474
|
+
version = "0.1.35"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
1477
|
+
dependencies = [
|
|
1478
|
+
"getrandom 0.4.3",
|
|
1479
|
+
"libc",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "js-sys"
|
|
1484
|
+
version = "0.3.104"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"cfg-if",
|
|
1489
|
+
"futures-util",
|
|
1490
|
+
"wasm-bindgen",
|
|
1491
|
+
]
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "kglite"
|
|
1495
|
+
version = "0.16.14"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "4aa8cc1fcf4e13fbe659369f2d9564f5b033a5e3f73ae0dd6943b0fdcdd8567a"
|
|
1498
|
+
dependencies = [
|
|
1499
|
+
"bzip2",
|
|
1500
|
+
"chrono",
|
|
1501
|
+
"crc32fast",
|
|
1502
|
+
"csv",
|
|
1503
|
+
"flate2",
|
|
1504
|
+
"fs2",
|
|
1505
|
+
"geo",
|
|
1506
|
+
"geojson",
|
|
1507
|
+
"indexmap",
|
|
1508
|
+
"libc",
|
|
1509
|
+
"memchr",
|
|
1510
|
+
"memmap2",
|
|
1511
|
+
"petgraph",
|
|
1512
|
+
"postcard",
|
|
1513
|
+
"rayon",
|
|
1514
|
+
"regex",
|
|
1515
|
+
"rstar 0.13.0",
|
|
1516
|
+
"rustc-hash",
|
|
1517
|
+
"same-file",
|
|
1518
|
+
"serde",
|
|
1519
|
+
"serde_json",
|
|
1520
|
+
"sha2",
|
|
1521
|
+
"stacker",
|
|
1522
|
+
"tempfile",
|
|
1523
|
+
"walkdir",
|
|
1524
|
+
"wkt",
|
|
1525
|
+
"zstd",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "kglite-visual-cli"
|
|
1530
|
+
version = "0.1.0"
|
|
1531
|
+
dependencies = [
|
|
1532
|
+
"axum",
|
|
1533
|
+
"base64 0.22.1",
|
|
1534
|
+
"clap",
|
|
1535
|
+
"futures-util",
|
|
1536
|
+
"kglite-visual-core",
|
|
1537
|
+
"mime_guess",
|
|
1538
|
+
"rmcp",
|
|
1539
|
+
"rust-embed",
|
|
1540
|
+
"schemars",
|
|
1541
|
+
"serde",
|
|
1542
|
+
"serde_json",
|
|
1543
|
+
"tempfile",
|
|
1544
|
+
"tokio",
|
|
1545
|
+
"webbrowser",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "kglite-visual-core"
|
|
1550
|
+
version = "0.1.0"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"kglite",
|
|
1553
|
+
"png",
|
|
1554
|
+
"resvg",
|
|
1555
|
+
"serde",
|
|
1556
|
+
"serde_json",
|
|
1557
|
+
"tempfile",
|
|
1558
|
+
"thiserror 2.0.20",
|
|
1559
|
+
"ts-rs",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "kglite-visual-py"
|
|
1564
|
+
version = "0.1.0"
|
|
1565
|
+
dependencies = [
|
|
1566
|
+
"kglite-visual-cli",
|
|
1567
|
+
"kglite-visual-core",
|
|
1568
|
+
"pyo3",
|
|
1569
|
+
"tokio",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "kurbo"
|
|
1574
|
+
version = "0.13.1"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "4b60dfc32f652b926df6192e55525b16d186c69d47876c3ead4da5cc9f8450e2"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"arrayvec",
|
|
1579
|
+
"euclid",
|
|
1580
|
+
"polycool",
|
|
1581
|
+
"smallvec",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "libbz2-rs-sys"
|
|
1586
|
+
version = "0.2.5"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "34b357333733e8260735ba5894eb928c02ecc69c78715f01a8019e7fa7f2db4c"
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "libc"
|
|
1592
|
+
version = "0.2.189"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "libm"
|
|
1598
|
+
version = "0.2.16"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "libredox"
|
|
1604
|
+
version = "0.1.21"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "d7955dfc218a8afb29dfeffd540e3a6e96baeb94fe7138228dd7cc6937fbbf96"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"libc",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "linux-raw-sys"
|
|
1613
|
+
version = "0.12.1"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "litemap"
|
|
1619
|
+
version = "0.8.3"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "lock_api"
|
|
1625
|
+
version = "0.4.14"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1628
|
+
dependencies = [
|
|
1629
|
+
"scopeguard",
|
|
1630
|
+
]
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "log"
|
|
1634
|
+
version = "0.4.34"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "matchit"
|
|
1640
|
+
version = "0.8.4"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "memchr"
|
|
1646
|
+
version = "2.8.3"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "memmap2"
|
|
1652
|
+
version = "0.9.11"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"libc",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "mime"
|
|
1661
|
+
version = "0.3.17"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "mime_guess"
|
|
1667
|
+
version = "2.0.5"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"mime",
|
|
1672
|
+
"unicase",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "miniz_oxide"
|
|
1677
|
+
version = "0.8.9"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"adler2",
|
|
1682
|
+
"simd-adler32",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "miniz_oxide"
|
|
1687
|
+
version = "0.9.1"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"adler2",
|
|
1692
|
+
"simd-adler32",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "mio"
|
|
1697
|
+
version = "1.2.2"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
1700
|
+
dependencies = [
|
|
1701
|
+
"libc",
|
|
1702
|
+
"wasi",
|
|
1703
|
+
"windows-sys",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "ndk-context"
|
|
1708
|
+
version = "0.1.1"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "num-traits"
|
|
1714
|
+
version = "0.2.19"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"autocfg",
|
|
1719
|
+
"libm",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "objc2"
|
|
1724
|
+
version = "0.6.4"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"objc2-encode",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "objc2-app-kit"
|
|
1733
|
+
version = "0.3.2"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"bitflags",
|
|
1738
|
+
"objc2",
|
|
1739
|
+
"objc2-foundation",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "objc2-core-foundation"
|
|
1744
|
+
version = "0.3.2"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1747
|
+
dependencies = [
|
|
1748
|
+
"bitflags",
|
|
1749
|
+
"dispatch2",
|
|
1750
|
+
"objc2",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "objc2-encode"
|
|
1755
|
+
version = "4.1.0"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "objc2-foundation"
|
|
1761
|
+
version = "0.3.2"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"bitflags",
|
|
1766
|
+
"objc2",
|
|
1767
|
+
"objc2-core-foundation",
|
|
1768
|
+
]
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "object"
|
|
1772
|
+
version = "0.39.1"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"memchr",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "once_cell"
|
|
1781
|
+
version = "1.21.4"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "once_cell_polyfill"
|
|
1787
|
+
version = "1.70.2"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "option-ext"
|
|
1793
|
+
version = "0.2.0"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "pastey"
|
|
1799
|
+
version = "0.2.3"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
1802
|
+
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "pdqselect"
|
|
1805
|
+
version = "0.1.0"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27"
|
|
1808
|
+
|
|
1809
|
+
[[package]]
|
|
1810
|
+
name = "percent-encoding"
|
|
1811
|
+
version = "2.3.2"
|
|
1812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "petgraph"
|
|
1817
|
+
version = "0.8.3"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
1820
|
+
dependencies = [
|
|
1821
|
+
"fixedbitset",
|
|
1822
|
+
"hashbrown 0.15.5",
|
|
1823
|
+
"indexmap",
|
|
1824
|
+
"serde",
|
|
1825
|
+
"serde_derive",
|
|
1826
|
+
]
|
|
1827
|
+
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "pico-args"
|
|
1830
|
+
version = "0.5.0"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "pin-project-lite"
|
|
1836
|
+
version = "0.2.17"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "pkg-config"
|
|
1842
|
+
version = "0.3.34"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "png"
|
|
1848
|
+
version = "0.18.1"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
1851
|
+
dependencies = [
|
|
1852
|
+
"bitflags",
|
|
1853
|
+
"crc32fast",
|
|
1854
|
+
"fdeflate",
|
|
1855
|
+
"flate2",
|
|
1856
|
+
"miniz_oxide 0.8.9",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "polycool"
|
|
1861
|
+
version = "0.4.0"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "50596ddc09eb5ad5f75cacd40209568e66df71baf86e1499a0e99c4cff12a5a6"
|
|
1864
|
+
dependencies = [
|
|
1865
|
+
"arrayvec",
|
|
1866
|
+
]
|
|
1867
|
+
|
|
1868
|
+
[[package]]
|
|
1869
|
+
name = "portable-atomic"
|
|
1870
|
+
version = "1.15.0"
|
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "postcard"
|
|
1876
|
+
version = "1.1.3"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1879
|
+
dependencies = [
|
|
1880
|
+
"cobs",
|
|
1881
|
+
"embedded-io 0.4.0",
|
|
1882
|
+
"embedded-io 0.6.1",
|
|
1883
|
+
"serde",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "potential_utf"
|
|
1888
|
+
version = "0.1.6"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"zerovec",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "ppv-lite86"
|
|
1897
|
+
version = "0.2.21"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"zerocopy",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "proc-macro2"
|
|
1906
|
+
version = "1.0.107"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"unicode-ident",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "psm"
|
|
1915
|
+
version = "0.1.32"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "4dcd034599e63b970727f70d79e02d62390a4a84f7c6b827c27c46d5ac3fa622"
|
|
1918
|
+
dependencies = [
|
|
1919
|
+
"ar_archive_writer",
|
|
1920
|
+
"cc",
|
|
1921
|
+
]
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "pyo3"
|
|
1925
|
+
version = "0.29.2"
|
|
1926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
1928
|
+
dependencies = [
|
|
1929
|
+
"libc",
|
|
1930
|
+
"once_cell",
|
|
1931
|
+
"portable-atomic",
|
|
1932
|
+
"pyo3-build-config",
|
|
1933
|
+
"pyo3-ffi",
|
|
1934
|
+
"pyo3-macros",
|
|
1935
|
+
]
|
|
1936
|
+
|
|
1937
|
+
[[package]]
|
|
1938
|
+
name = "pyo3-build-config"
|
|
1939
|
+
version = "0.29.2"
|
|
1940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
1942
|
+
dependencies = [
|
|
1943
|
+
"target-lexicon",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "pyo3-ffi"
|
|
1948
|
+
version = "0.29.2"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"libc",
|
|
1953
|
+
"pyo3-build-config",
|
|
1954
|
+
]
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "pyo3-macros"
|
|
1958
|
+
version = "0.29.2"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"proc-macro2",
|
|
1963
|
+
"pyo3-macros-backend",
|
|
1964
|
+
"quote",
|
|
1965
|
+
"syn 2.0.119",
|
|
1966
|
+
]
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "pyo3-macros-backend"
|
|
1970
|
+
version = "0.29.2"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"heck",
|
|
1975
|
+
"proc-macro2",
|
|
1976
|
+
"quote",
|
|
1977
|
+
"syn 2.0.119",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "quote"
|
|
1982
|
+
version = "1.0.47"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1985
|
+
dependencies = [
|
|
1986
|
+
"proc-macro2",
|
|
1987
|
+
]
|
|
1988
|
+
|
|
1989
|
+
[[package]]
|
|
1990
|
+
name = "r-efi"
|
|
1991
|
+
version = "5.3.0"
|
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1994
|
+
|
|
1995
|
+
[[package]]
|
|
1996
|
+
name = "r-efi"
|
|
1997
|
+
version = "6.0.0"
|
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1999
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2000
|
+
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "rand"
|
|
2003
|
+
version = "0.9.5"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
2006
|
+
dependencies = [
|
|
2007
|
+
"rand_chacha",
|
|
2008
|
+
"rand_core 0.9.5",
|
|
2009
|
+
]
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "rand"
|
|
2013
|
+
version = "0.10.2"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
2016
|
+
dependencies = [
|
|
2017
|
+
"chacha20",
|
|
2018
|
+
"getrandom 0.4.3",
|
|
2019
|
+
"rand_core 0.10.1",
|
|
2020
|
+
]
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "rand_chacha"
|
|
2024
|
+
version = "0.9.0"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"ppv-lite86",
|
|
2029
|
+
"rand_core 0.9.5",
|
|
2030
|
+
]
|
|
2031
|
+
|
|
2032
|
+
[[package]]
|
|
2033
|
+
name = "rand_core"
|
|
2034
|
+
version = "0.9.5"
|
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2037
|
+
dependencies = [
|
|
2038
|
+
"getrandom 0.3.4",
|
|
2039
|
+
]
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "rand_core"
|
|
2043
|
+
version = "0.10.1"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "rand_pcg"
|
|
2049
|
+
version = "0.10.2"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"rand_core 0.10.1",
|
|
2054
|
+
]
|
|
2055
|
+
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "rayon"
|
|
2058
|
+
version = "1.12.0"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2061
|
+
dependencies = [
|
|
2062
|
+
"either",
|
|
2063
|
+
"rayon-core",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "rayon-core"
|
|
2068
|
+
version = "1.13.0"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2071
|
+
dependencies = [
|
|
2072
|
+
"crossbeam-deque",
|
|
2073
|
+
"crossbeam-utils",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "read-fonts"
|
|
2078
|
+
version = "0.41.0"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "046a7d674daf459825b32f5062056d6882db0d2f5a479fbd76ccfc870ac18709"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"bytemuck",
|
|
2083
|
+
"font-types",
|
|
2084
|
+
"once_cell",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "redox_users"
|
|
2089
|
+
version = "0.5.2"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"getrandom 0.2.17",
|
|
2094
|
+
"libredox",
|
|
2095
|
+
"thiserror 2.0.20",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "ref-cast"
|
|
2100
|
+
version = "1.0.27"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
|
|
2103
|
+
dependencies = [
|
|
2104
|
+
"ref-cast-impl",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "ref-cast-impl"
|
|
2109
|
+
version = "1.0.27"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
|
|
2112
|
+
dependencies = [
|
|
2113
|
+
"proc-macro2",
|
|
2114
|
+
"quote",
|
|
2115
|
+
"syn 3.0.4",
|
|
2116
|
+
]
|
|
2117
|
+
|
|
2118
|
+
[[package]]
|
|
2119
|
+
name = "regex"
|
|
2120
|
+
version = "1.13.1"
|
|
2121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
2123
|
+
dependencies = [
|
|
2124
|
+
"aho-corasick",
|
|
2125
|
+
"memchr",
|
|
2126
|
+
"regex-automata",
|
|
2127
|
+
"regex-syntax",
|
|
2128
|
+
]
|
|
2129
|
+
|
|
2130
|
+
[[package]]
|
|
2131
|
+
name = "regex-automata"
|
|
2132
|
+
version = "0.4.18"
|
|
2133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2134
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
2135
|
+
dependencies = [
|
|
2136
|
+
"aho-corasick",
|
|
2137
|
+
"memchr",
|
|
2138
|
+
"regex-syntax",
|
|
2139
|
+
]
|
|
2140
|
+
|
|
2141
|
+
[[package]]
|
|
2142
|
+
name = "regex-syntax"
|
|
2143
|
+
version = "0.8.11"
|
|
2144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "resvg"
|
|
2149
|
+
version = "0.48.1"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "67e3803f97b999e80cbf7c6ecdd07a8102204d92e1633cf48783720c521196bd"
|
|
2152
|
+
dependencies = [
|
|
2153
|
+
"bytemuck",
|
|
2154
|
+
"log",
|
|
2155
|
+
"pico-args",
|
|
2156
|
+
"rgb",
|
|
2157
|
+
"svgtypes",
|
|
2158
|
+
"tiny-skia",
|
|
2159
|
+
"usvg",
|
|
2160
|
+
]
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "rgb"
|
|
2164
|
+
version = "0.8.53"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
2167
|
+
dependencies = [
|
|
2168
|
+
"bytemuck",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "rmcp"
|
|
2173
|
+
version = "3.1.4"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "1a15bc53261a9dc37e105df006e4656c598379a8f9581f8950debb130f27a7cf"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"async-trait",
|
|
2178
|
+
"base64 0.23.1",
|
|
2179
|
+
"bytes",
|
|
2180
|
+
"chrono",
|
|
2181
|
+
"futures",
|
|
2182
|
+
"http",
|
|
2183
|
+
"http-body",
|
|
2184
|
+
"http-body-util",
|
|
2185
|
+
"indexmap",
|
|
2186
|
+
"pastey",
|
|
2187
|
+
"pin-project-lite",
|
|
2188
|
+
"rand 0.10.2",
|
|
2189
|
+
"rmcp-macros",
|
|
2190
|
+
"schemars",
|
|
2191
|
+
"serde",
|
|
2192
|
+
"serde_json",
|
|
2193
|
+
"sse-stream",
|
|
2194
|
+
"thiserror 2.0.20",
|
|
2195
|
+
"tokio",
|
|
2196
|
+
"tokio-stream",
|
|
2197
|
+
"tokio-util",
|
|
2198
|
+
"tower-service",
|
|
2199
|
+
"tracing",
|
|
2200
|
+
"uuid",
|
|
2201
|
+
]
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "rmcp-macros"
|
|
2205
|
+
version = "3.1.4"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "a85d45508e9b4ba024fe996c2638799635d75b6dd0ba8f32ccf08f8026f0c780"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"darling",
|
|
2210
|
+
"proc-macro2",
|
|
2211
|
+
"quote",
|
|
2212
|
+
"serde_json",
|
|
2213
|
+
"syn 3.0.4",
|
|
2214
|
+
]
|
|
2215
|
+
|
|
2216
|
+
[[package]]
|
|
2217
|
+
name = "robust"
|
|
2218
|
+
version = "1.2.0"
|
|
2219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2220
|
+
checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "roxmltree"
|
|
2224
|
+
version = "0.20.0"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "roxmltree"
|
|
2230
|
+
version = "0.21.1"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"memchr",
|
|
2235
|
+
]
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "rstar"
|
|
2239
|
+
version = "0.8.4"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "3a45c0e8804d37e4d97e55c6f258bc9ad9c5ee7b07437009dd152d764949a27c"
|
|
2242
|
+
dependencies = [
|
|
2243
|
+
"heapless 0.6.1",
|
|
2244
|
+
"num-traits",
|
|
2245
|
+
"pdqselect",
|
|
2246
|
+
"serde",
|
|
2247
|
+
"smallvec",
|
|
2248
|
+
]
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "rstar"
|
|
2252
|
+
version = "0.9.3"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "b40f1bfe5acdab44bc63e6699c28b74f75ec43afb59f3eda01e145aff86a25fa"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"heapless 0.7.17",
|
|
2257
|
+
"num-traits",
|
|
2258
|
+
"serde",
|
|
2259
|
+
"smallvec",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "rstar"
|
|
2264
|
+
version = "0.10.0"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "1f39465655a1e3d8ae79c6d9e007f4953bfc5d55297602df9dc38f9ae9f1359a"
|
|
2267
|
+
dependencies = [
|
|
2268
|
+
"heapless 0.7.17",
|
|
2269
|
+
"num-traits",
|
|
2270
|
+
"serde",
|
|
2271
|
+
"smallvec",
|
|
2272
|
+
]
|
|
2273
|
+
|
|
2274
|
+
[[package]]
|
|
2275
|
+
name = "rstar"
|
|
2276
|
+
version = "0.11.0"
|
|
2277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2278
|
+
checksum = "73111312eb7a2287d229f06c00ff35b51ddee180f017ab6dec1f69d62ac098d6"
|
|
2279
|
+
dependencies = [
|
|
2280
|
+
"heapless 0.7.17",
|
|
2281
|
+
"num-traits",
|
|
2282
|
+
"serde",
|
|
2283
|
+
"smallvec",
|
|
2284
|
+
]
|
|
2285
|
+
|
|
2286
|
+
[[package]]
|
|
2287
|
+
name = "rstar"
|
|
2288
|
+
version = "0.12.2"
|
|
2289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
|
+
checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
|
|
2291
|
+
dependencies = [
|
|
2292
|
+
"heapless 0.8.0",
|
|
2293
|
+
"num-traits",
|
|
2294
|
+
"serde",
|
|
2295
|
+
"smallvec",
|
|
2296
|
+
]
|
|
2297
|
+
|
|
2298
|
+
[[package]]
|
|
2299
|
+
name = "rstar"
|
|
2300
|
+
version = "0.13.0"
|
|
2301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2302
|
+
checksum = "5912b862fa5ffb462607bfd1e35036c458c537921f508c8235a83d5f3987edfe"
|
|
2303
|
+
dependencies = [
|
|
2304
|
+
"heapless 0.8.0",
|
|
2305
|
+
"num-traits",
|
|
2306
|
+
"serde",
|
|
2307
|
+
"smallvec",
|
|
2308
|
+
]
|
|
2309
|
+
|
|
2310
|
+
[[package]]
|
|
2311
|
+
name = "rust-embed"
|
|
2312
|
+
version = "8.12.0"
|
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
+
checksum = "e9e7760e252aaba7b09f4be00e36476cf585bdb68a53552ac954cdf504ab4bc9"
|
|
2315
|
+
dependencies = [
|
|
2316
|
+
"rust-embed-impl",
|
|
2317
|
+
"rust-embed-utils",
|
|
2318
|
+
"walkdir",
|
|
2319
|
+
]
|
|
2320
|
+
|
|
2321
|
+
[[package]]
|
|
2322
|
+
name = "rust-embed-impl"
|
|
2323
|
+
version = "8.12.0"
|
|
2324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
+
checksum = "3bcfc4d6f53af43755f7a723e4b6b8794fcce052a178dd8c6c1dadc5f5343097"
|
|
2326
|
+
dependencies = [
|
|
2327
|
+
"mime_guess",
|
|
2328
|
+
"proc-macro2",
|
|
2329
|
+
"quote",
|
|
2330
|
+
"rust-embed-utils",
|
|
2331
|
+
"shellexpand",
|
|
2332
|
+
"syn 2.0.119",
|
|
2333
|
+
"walkdir",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "rust-embed-utils"
|
|
2338
|
+
version = "8.12.0"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "42ffa149f6aa81b58a5b3011d01a857c4ed12c7a732d2c51947a4c7c692185f0"
|
|
2341
|
+
dependencies = [
|
|
2342
|
+
"sha2",
|
|
2343
|
+
"walkdir",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "rustc-hash"
|
|
2348
|
+
version = "2.1.3"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
2351
|
+
|
|
2352
|
+
[[package]]
|
|
2353
|
+
name = "rustc_version"
|
|
2354
|
+
version = "0.4.1"
|
|
2355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2356
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2357
|
+
dependencies = [
|
|
2358
|
+
"semver",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "rustix"
|
|
2363
|
+
version = "1.1.4"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"bitflags",
|
|
2368
|
+
"errno",
|
|
2369
|
+
"libc",
|
|
2370
|
+
"linux-raw-sys",
|
|
2371
|
+
"windows-sys",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "rustversion"
|
|
2376
|
+
version = "1.0.23"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
2379
|
+
|
|
2380
|
+
[[package]]
|
|
2381
|
+
name = "ryu"
|
|
2382
|
+
version = "1.0.23"
|
|
2383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2385
|
+
|
|
2386
|
+
[[package]]
|
|
2387
|
+
name = "same-file"
|
|
2388
|
+
version = "1.0.6"
|
|
2389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2390
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2391
|
+
dependencies = [
|
|
2392
|
+
"winapi-util",
|
|
2393
|
+
]
|
|
2394
|
+
|
|
2395
|
+
[[package]]
|
|
2396
|
+
name = "schemars"
|
|
2397
|
+
version = "1.2.2"
|
|
2398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
+
checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
|
|
2400
|
+
dependencies = [
|
|
2401
|
+
"chrono",
|
|
2402
|
+
"dyn-clone",
|
|
2403
|
+
"ref-cast",
|
|
2404
|
+
"schemars_derive",
|
|
2405
|
+
"serde",
|
|
2406
|
+
"serde_json",
|
|
2407
|
+
]
|
|
2408
|
+
|
|
2409
|
+
[[package]]
|
|
2410
|
+
name = "schemars_derive"
|
|
2411
|
+
version = "1.2.2"
|
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
+
checksum = "d98c67716b46af2f0b8cf752abc930f6f9aecfbf671ecfb531db8a31dbe4e2ba"
|
|
2414
|
+
dependencies = [
|
|
2415
|
+
"proc-macro2",
|
|
2416
|
+
"quote",
|
|
2417
|
+
"serde_derive_internals",
|
|
2418
|
+
"syn 3.0.4",
|
|
2419
|
+
]
|
|
2420
|
+
|
|
2421
|
+
[[package]]
|
|
2422
|
+
name = "scopeguard"
|
|
2423
|
+
version = "1.2.0"
|
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "semver"
|
|
2429
|
+
version = "1.0.28"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "serde"
|
|
2435
|
+
version = "1.0.229"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"serde_core",
|
|
2440
|
+
"serde_derive",
|
|
2441
|
+
]
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "serde_core"
|
|
2445
|
+
version = "1.0.229"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"serde_derive",
|
|
2450
|
+
]
|
|
2451
|
+
|
|
2452
|
+
[[package]]
|
|
2453
|
+
name = "serde_derive"
|
|
2454
|
+
version = "1.0.229"
|
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
2457
|
+
dependencies = [
|
|
2458
|
+
"proc-macro2",
|
|
2459
|
+
"quote",
|
|
2460
|
+
"syn 3.0.4",
|
|
2461
|
+
]
|
|
2462
|
+
|
|
2463
|
+
[[package]]
|
|
2464
|
+
name = "serde_derive_internals"
|
|
2465
|
+
version = "0.30.0"
|
|
2466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2467
|
+
checksum = "f852137cce035d6a4df67ccce505ff6b3e9fd3a10e3e52b24dc71e650bb1a9bd"
|
|
2468
|
+
dependencies = [
|
|
2469
|
+
"proc-macro2",
|
|
2470
|
+
"quote",
|
|
2471
|
+
"syn 3.0.4",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "serde_json"
|
|
2476
|
+
version = "1.0.151"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"itoa",
|
|
2481
|
+
"memchr",
|
|
2482
|
+
"serde",
|
|
2483
|
+
"serde_core",
|
|
2484
|
+
"zmij",
|
|
2485
|
+
]
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "serde_path_to_error"
|
|
2489
|
+
version = "0.1.20"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
2492
|
+
dependencies = [
|
|
2493
|
+
"itoa",
|
|
2494
|
+
"serde",
|
|
2495
|
+
"serde_core",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "serde_urlencoded"
|
|
2500
|
+
version = "0.7.1"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"form_urlencoded",
|
|
2505
|
+
"itoa",
|
|
2506
|
+
"ryu",
|
|
2507
|
+
"serde",
|
|
2508
|
+
]
|
|
2509
|
+
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "sha1"
|
|
2512
|
+
version = "0.10.7"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
2515
|
+
dependencies = [
|
|
2516
|
+
"cfg-if",
|
|
2517
|
+
"cpufeatures 0.2.17",
|
|
2518
|
+
"digest 0.10.7",
|
|
2519
|
+
]
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "sha2"
|
|
2523
|
+
version = "0.11.0"
|
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
2526
|
+
dependencies = [
|
|
2527
|
+
"cfg-if",
|
|
2528
|
+
"cpufeatures 0.3.1",
|
|
2529
|
+
"digest 0.11.3",
|
|
2530
|
+
]
|
|
2531
|
+
|
|
2532
|
+
[[package]]
|
|
2533
|
+
name = "shellexpand"
|
|
2534
|
+
version = "3.1.2"
|
|
2535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
+
checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8"
|
|
2537
|
+
dependencies = [
|
|
2538
|
+
"dirs",
|
|
2539
|
+
]
|
|
2540
|
+
|
|
2541
|
+
[[package]]
|
|
2542
|
+
name = "shlex"
|
|
2543
|
+
version = "2.0.1"
|
|
2544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2545
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2546
|
+
|
|
2547
|
+
[[package]]
|
|
2548
|
+
name = "sif-itree"
|
|
2549
|
+
version = "0.4.1"
|
|
2550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2551
|
+
checksum = "d7f45b8998ced5134fb1d75732c77842a3e888f19c1ff98481822e8fbfbf930b"
|
|
2552
|
+
|
|
2553
|
+
[[package]]
|
|
2554
|
+
name = "signal-hook-registry"
|
|
2555
|
+
version = "1.4.8"
|
|
2556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2558
|
+
dependencies = [
|
|
2559
|
+
"errno",
|
|
2560
|
+
"libc",
|
|
2561
|
+
]
|
|
2562
|
+
|
|
2563
|
+
[[package]]
|
|
2564
|
+
name = "simd-adler32"
|
|
2565
|
+
version = "0.3.10"
|
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "simd_cesu8"
|
|
2571
|
+
version = "1.2.0"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"rustc_version",
|
|
2576
|
+
"simdutf8",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "simdutf8"
|
|
2581
|
+
version = "0.1.5"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2584
|
+
|
|
2585
|
+
[[package]]
|
|
2586
|
+
name = "simplecss"
|
|
2587
|
+
version = "0.2.2"
|
|
2588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2589
|
+
checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
|
|
2590
|
+
dependencies = [
|
|
2591
|
+
"log",
|
|
2592
|
+
]
|
|
2593
|
+
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "siphasher"
|
|
2596
|
+
version = "1.0.3"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
2599
|
+
|
|
2600
|
+
[[package]]
|
|
2601
|
+
name = "skrifa"
|
|
2602
|
+
version = "0.44.0"
|
|
2603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
+
checksum = "819ab7d62b1d3e72d9d9dea5650bac30424f9111364bb94928dbf5ecad1baa68"
|
|
2605
|
+
dependencies = [
|
|
2606
|
+
"bytemuck",
|
|
2607
|
+
"read-fonts",
|
|
2608
|
+
]
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "slab"
|
|
2612
|
+
version = "0.4.12"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2615
|
+
|
|
2616
|
+
[[package]]
|
|
2617
|
+
name = "slotmap"
|
|
2618
|
+
version = "1.1.1"
|
|
2619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2620
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
2621
|
+
dependencies = [
|
|
2622
|
+
"version_check",
|
|
2623
|
+
]
|
|
2624
|
+
|
|
2625
|
+
[[package]]
|
|
2626
|
+
name = "smallvec"
|
|
2627
|
+
version = "1.15.2"
|
|
2628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2629
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "socket2"
|
|
2633
|
+
version = "0.6.5"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
2636
|
+
dependencies = [
|
|
2637
|
+
"libc",
|
|
2638
|
+
"windows-sys",
|
|
2639
|
+
]
|
|
2640
|
+
|
|
2641
|
+
[[package]]
|
|
2642
|
+
name = "spade"
|
|
2643
|
+
version = "2.15.1"
|
|
2644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
+
checksum = "9699399fd9349b00b184f5635b074f9ec93afffef30c853f8c875b32c0f8c7fa"
|
|
2646
|
+
dependencies = [
|
|
2647
|
+
"hashbrown 0.16.1",
|
|
2648
|
+
"num-traits",
|
|
2649
|
+
"robust",
|
|
2650
|
+
"smallvec",
|
|
2651
|
+
]
|
|
2652
|
+
|
|
2653
|
+
[[package]]
|
|
2654
|
+
name = "spin"
|
|
2655
|
+
version = "0.9.9"
|
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2657
|
+
checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
|
|
2658
|
+
dependencies = [
|
|
2659
|
+
"lock_api",
|
|
2660
|
+
]
|
|
2661
|
+
|
|
2662
|
+
[[package]]
|
|
2663
|
+
name = "sse-stream"
|
|
2664
|
+
version = "0.2.5"
|
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
+
checksum = "c123f296ade4ec4b8b0f6162116e6629f5146922ca5ab40ca9d3c2e73ab4761e"
|
|
2667
|
+
dependencies = [
|
|
2668
|
+
"bytes",
|
|
2669
|
+
"futures-util",
|
|
2670
|
+
"http-body",
|
|
2671
|
+
"http-body-util",
|
|
2672
|
+
"pin-project-lite",
|
|
2673
|
+
]
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "stable_deref_trait"
|
|
2677
|
+
version = "1.2.1"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2680
|
+
|
|
2681
|
+
[[package]]
|
|
2682
|
+
name = "stacker"
|
|
2683
|
+
version = "0.1.25"
|
|
2684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2685
|
+
checksum = "707f49d46706bacf8a2b00d51dace3f9de527c13eec3778f570c411f89e69967"
|
|
2686
|
+
dependencies = [
|
|
2687
|
+
"cc",
|
|
2688
|
+
"cfg-if",
|
|
2689
|
+
"libc",
|
|
2690
|
+
"psm",
|
|
2691
|
+
"windows-sys",
|
|
2692
|
+
]
|
|
2693
|
+
|
|
2694
|
+
[[package]]
|
|
2695
|
+
name = "strict-num"
|
|
2696
|
+
version = "0.1.1"
|
|
2697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2698
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
2699
|
+
dependencies = [
|
|
2700
|
+
"float-cmp",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "strsim"
|
|
2705
|
+
version = "0.11.1"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2708
|
+
|
|
2709
|
+
[[package]]
|
|
2710
|
+
name = "svgtypes"
|
|
2711
|
+
version = "0.16.1"
|
|
2712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
+
checksum = "695b5790b3131dafa99b3bbfd25a216edb3d216dad9ca208d4657bfb8f2abc3d"
|
|
2714
|
+
dependencies = [
|
|
2715
|
+
"kurbo",
|
|
2716
|
+
"siphasher",
|
|
2717
|
+
]
|
|
2718
|
+
|
|
2719
|
+
[[package]]
|
|
2720
|
+
name = "syn"
|
|
2721
|
+
version = "2.0.119"
|
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
2724
|
+
dependencies = [
|
|
2725
|
+
"proc-macro2",
|
|
2726
|
+
"quote",
|
|
2727
|
+
"unicode-ident",
|
|
2728
|
+
]
|
|
2729
|
+
|
|
2730
|
+
[[package]]
|
|
2731
|
+
name = "syn"
|
|
2732
|
+
version = "3.0.4"
|
|
2733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2734
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
2735
|
+
dependencies = [
|
|
2736
|
+
"proc-macro2",
|
|
2737
|
+
"quote",
|
|
2738
|
+
"unicode-ident",
|
|
2739
|
+
]
|
|
2740
|
+
|
|
2741
|
+
[[package]]
|
|
2742
|
+
name = "sync_wrapper"
|
|
2743
|
+
version = "1.0.2"
|
|
2744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2746
|
+
|
|
2747
|
+
[[package]]
|
|
2748
|
+
name = "synstructure"
|
|
2749
|
+
version = "0.13.2"
|
|
2750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2751
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2752
|
+
dependencies = [
|
|
2753
|
+
"proc-macro2",
|
|
2754
|
+
"quote",
|
|
2755
|
+
"syn 2.0.119",
|
|
2756
|
+
]
|
|
2757
|
+
|
|
2758
|
+
[[package]]
|
|
2759
|
+
name = "target-lexicon"
|
|
2760
|
+
version = "0.13.5"
|
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
2763
|
+
|
|
2764
|
+
[[package]]
|
|
2765
|
+
name = "tempfile"
|
|
2766
|
+
version = "3.27.0"
|
|
2767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2769
|
+
dependencies = [
|
|
2770
|
+
"fastrand",
|
|
2771
|
+
"getrandom 0.4.3",
|
|
2772
|
+
"once_cell",
|
|
2773
|
+
"rustix",
|
|
2774
|
+
"windows-sys",
|
|
2775
|
+
]
|
|
2776
|
+
|
|
2777
|
+
[[package]]
|
|
2778
|
+
name = "termcolor"
|
|
2779
|
+
version = "1.4.1"
|
|
2780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2782
|
+
dependencies = [
|
|
2783
|
+
"winapi-util",
|
|
2784
|
+
]
|
|
2785
|
+
|
|
2786
|
+
[[package]]
|
|
2787
|
+
name = "thiserror"
|
|
2788
|
+
version = "1.0.69"
|
|
2789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2790
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2791
|
+
dependencies = [
|
|
2792
|
+
"thiserror-impl 1.0.69",
|
|
2793
|
+
]
|
|
2794
|
+
|
|
2795
|
+
[[package]]
|
|
2796
|
+
name = "thiserror"
|
|
2797
|
+
version = "2.0.20"
|
|
2798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
2800
|
+
dependencies = [
|
|
2801
|
+
"thiserror-impl 2.0.20",
|
|
2802
|
+
]
|
|
2803
|
+
|
|
2804
|
+
[[package]]
|
|
2805
|
+
name = "thiserror-impl"
|
|
2806
|
+
version = "1.0.69"
|
|
2807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2809
|
+
dependencies = [
|
|
2810
|
+
"proc-macro2",
|
|
2811
|
+
"quote",
|
|
2812
|
+
"syn 2.0.119",
|
|
2813
|
+
]
|
|
2814
|
+
|
|
2815
|
+
[[package]]
|
|
2816
|
+
name = "thiserror-impl"
|
|
2817
|
+
version = "2.0.20"
|
|
2818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
2820
|
+
dependencies = [
|
|
2821
|
+
"proc-macro2",
|
|
2822
|
+
"quote",
|
|
2823
|
+
"syn 3.0.4",
|
|
2824
|
+
]
|
|
2825
|
+
|
|
2826
|
+
[[package]]
|
|
2827
|
+
name = "tiny-skia"
|
|
2828
|
+
version = "0.12.0"
|
|
2829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
+
checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
|
|
2831
|
+
dependencies = [
|
|
2832
|
+
"arrayref",
|
|
2833
|
+
"arrayvec",
|
|
2834
|
+
"bytemuck",
|
|
2835
|
+
"cfg-if",
|
|
2836
|
+
"log",
|
|
2837
|
+
"png",
|
|
2838
|
+
"tiny-skia-path",
|
|
2839
|
+
]
|
|
2840
|
+
|
|
2841
|
+
[[package]]
|
|
2842
|
+
name = "tiny-skia-path"
|
|
2843
|
+
version = "0.12.0"
|
|
2844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
+
checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
|
|
2846
|
+
dependencies = [
|
|
2847
|
+
"arrayref",
|
|
2848
|
+
"bytemuck",
|
|
2849
|
+
"strict-num",
|
|
2850
|
+
]
|
|
2851
|
+
|
|
2852
|
+
[[package]]
|
|
2853
|
+
name = "tinystr"
|
|
2854
|
+
version = "0.8.4"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
|
|
2857
|
+
dependencies = [
|
|
2858
|
+
"displaydoc",
|
|
2859
|
+
"zerovec",
|
|
2860
|
+
]
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "tinyvec"
|
|
2864
|
+
version = "1.12.0"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
2867
|
+
dependencies = [
|
|
2868
|
+
"serde_core",
|
|
2869
|
+
"tinyvec_macros",
|
|
2870
|
+
]
|
|
2871
|
+
|
|
2872
|
+
[[package]]
|
|
2873
|
+
name = "tinyvec_macros"
|
|
2874
|
+
version = "0.1.1"
|
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2877
|
+
|
|
2878
|
+
[[package]]
|
|
2879
|
+
name = "tokio"
|
|
2880
|
+
version = "1.53.1"
|
|
2881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2882
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
2883
|
+
dependencies = [
|
|
2884
|
+
"bytes",
|
|
2885
|
+
"libc",
|
|
2886
|
+
"mio",
|
|
2887
|
+
"pin-project-lite",
|
|
2888
|
+
"signal-hook-registry",
|
|
2889
|
+
"socket2",
|
|
2890
|
+
"tokio-macros",
|
|
2891
|
+
"windows-sys",
|
|
2892
|
+
]
|
|
2893
|
+
|
|
2894
|
+
[[package]]
|
|
2895
|
+
name = "tokio-macros"
|
|
2896
|
+
version = "2.7.2"
|
|
2897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
+
checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
|
|
2899
|
+
dependencies = [
|
|
2900
|
+
"proc-macro2",
|
|
2901
|
+
"quote",
|
|
2902
|
+
"syn 3.0.4",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "tokio-stream"
|
|
2907
|
+
version = "0.1.19"
|
|
2908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
+
checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
|
|
2910
|
+
dependencies = [
|
|
2911
|
+
"futures-core",
|
|
2912
|
+
"pin-project-lite",
|
|
2913
|
+
"tokio",
|
|
2914
|
+
]
|
|
2915
|
+
|
|
2916
|
+
[[package]]
|
|
2917
|
+
name = "tokio-tungstenite"
|
|
2918
|
+
version = "0.29.0"
|
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
+
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
|
|
2921
|
+
dependencies = [
|
|
2922
|
+
"futures-util",
|
|
2923
|
+
"log",
|
|
2924
|
+
"tokio",
|
|
2925
|
+
"tungstenite",
|
|
2926
|
+
]
|
|
2927
|
+
|
|
2928
|
+
[[package]]
|
|
2929
|
+
name = "tokio-util"
|
|
2930
|
+
version = "0.7.19"
|
|
2931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
2933
|
+
dependencies = [
|
|
2934
|
+
"bytes",
|
|
2935
|
+
"futures-core",
|
|
2936
|
+
"futures-sink",
|
|
2937
|
+
"libc",
|
|
2938
|
+
"pin-project-lite",
|
|
2939
|
+
"tokio",
|
|
2940
|
+
]
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "tower"
|
|
2944
|
+
version = "0.5.3"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2947
|
+
dependencies = [
|
|
2948
|
+
"futures-core",
|
|
2949
|
+
"futures-util",
|
|
2950
|
+
"pin-project-lite",
|
|
2951
|
+
"sync_wrapper",
|
|
2952
|
+
"tokio",
|
|
2953
|
+
"tower-layer",
|
|
2954
|
+
"tower-service",
|
|
2955
|
+
"tracing",
|
|
2956
|
+
]
|
|
2957
|
+
|
|
2958
|
+
[[package]]
|
|
2959
|
+
name = "tower-layer"
|
|
2960
|
+
version = "0.3.3"
|
|
2961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2963
|
+
|
|
2964
|
+
[[package]]
|
|
2965
|
+
name = "tower-service"
|
|
2966
|
+
version = "0.3.3"
|
|
2967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2969
|
+
|
|
2970
|
+
[[package]]
|
|
2971
|
+
name = "tracing"
|
|
2972
|
+
version = "0.1.44"
|
|
2973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2975
|
+
dependencies = [
|
|
2976
|
+
"log",
|
|
2977
|
+
"pin-project-lite",
|
|
2978
|
+
"tracing-attributes",
|
|
2979
|
+
"tracing-core",
|
|
2980
|
+
]
|
|
2981
|
+
|
|
2982
|
+
[[package]]
|
|
2983
|
+
name = "tracing-attributes"
|
|
2984
|
+
version = "0.1.31"
|
|
2985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2987
|
+
dependencies = [
|
|
2988
|
+
"proc-macro2",
|
|
2989
|
+
"quote",
|
|
2990
|
+
"syn 2.0.119",
|
|
2991
|
+
]
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "tracing-core"
|
|
2995
|
+
version = "0.1.36"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2998
|
+
dependencies = [
|
|
2999
|
+
"once_cell",
|
|
3000
|
+
]
|
|
3001
|
+
|
|
3002
|
+
[[package]]
|
|
3003
|
+
name = "ts-rs"
|
|
3004
|
+
version = "12.0.1"
|
|
3005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3006
|
+
checksum = "756050066659291d47a554a9f558125db17428b073c5ffce1daf5dcb0f7231d8"
|
|
3007
|
+
dependencies = [
|
|
3008
|
+
"thiserror 2.0.20",
|
|
3009
|
+
"ts-rs-macros",
|
|
3010
|
+
]
|
|
3011
|
+
|
|
3012
|
+
[[package]]
|
|
3013
|
+
name = "ts-rs-macros"
|
|
3014
|
+
version = "12.0.1"
|
|
3015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
|
+
checksum = "38d90eea51bc7988ef9e674bf80a85ba6804739e535e9cab48e4bb34a8b652aa"
|
|
3017
|
+
dependencies = [
|
|
3018
|
+
"proc-macro2",
|
|
3019
|
+
"quote",
|
|
3020
|
+
"syn 2.0.119",
|
|
3021
|
+
"termcolor",
|
|
3022
|
+
]
|
|
3023
|
+
|
|
3024
|
+
[[package]]
|
|
3025
|
+
name = "tungstenite"
|
|
3026
|
+
version = "0.29.0"
|
|
3027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3028
|
+
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
|
|
3029
|
+
dependencies = [
|
|
3030
|
+
"bytes",
|
|
3031
|
+
"data-encoding",
|
|
3032
|
+
"http",
|
|
3033
|
+
"httparse",
|
|
3034
|
+
"log",
|
|
3035
|
+
"rand 0.9.5",
|
|
3036
|
+
"sha1",
|
|
3037
|
+
"thiserror 2.0.20",
|
|
3038
|
+
]
|
|
3039
|
+
|
|
3040
|
+
[[package]]
|
|
3041
|
+
name = "typenum"
|
|
3042
|
+
version = "1.20.1"
|
|
3043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3044
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
3045
|
+
|
|
3046
|
+
[[package]]
|
|
3047
|
+
name = "unicase"
|
|
3048
|
+
version = "2.9.0"
|
|
3049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3050
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
3051
|
+
|
|
3052
|
+
[[package]]
|
|
3053
|
+
name = "unicode-bidi"
|
|
3054
|
+
version = "0.3.18"
|
|
3055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3056
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
3057
|
+
|
|
3058
|
+
[[package]]
|
|
3059
|
+
name = "unicode-ident"
|
|
3060
|
+
version = "1.0.24"
|
|
3061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3062
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3063
|
+
|
|
3064
|
+
[[package]]
|
|
3065
|
+
name = "unicode-script"
|
|
3066
|
+
version = "0.5.8"
|
|
3067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3068
|
+
checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
|
|
3069
|
+
|
|
3070
|
+
[[package]]
|
|
3071
|
+
name = "unicode-vo"
|
|
3072
|
+
version = "0.1.0"
|
|
3073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
|
+
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
|
|
3075
|
+
|
|
3076
|
+
[[package]]
|
|
3077
|
+
name = "url"
|
|
3078
|
+
version = "2.5.8"
|
|
3079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3080
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3081
|
+
dependencies = [
|
|
3082
|
+
"form_urlencoded",
|
|
3083
|
+
"idna",
|
|
3084
|
+
"percent-encoding",
|
|
3085
|
+
"serde",
|
|
3086
|
+
]
|
|
3087
|
+
|
|
3088
|
+
[[package]]
|
|
3089
|
+
name = "usvg"
|
|
3090
|
+
version = "0.48.1"
|
|
3091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3092
|
+
checksum = "977d0a4abdef933f424a99fe09f95576e089b90aebc6f016a3bc813762493e91"
|
|
3093
|
+
dependencies = [
|
|
3094
|
+
"base64 0.23.1",
|
|
3095
|
+
"data-url",
|
|
3096
|
+
"fontdb",
|
|
3097
|
+
"harfrust",
|
|
3098
|
+
"imagesize",
|
|
3099
|
+
"kurbo",
|
|
3100
|
+
"log",
|
|
3101
|
+
"pico-args",
|
|
3102
|
+
"roxmltree 0.21.1",
|
|
3103
|
+
"simplecss",
|
|
3104
|
+
"siphasher",
|
|
3105
|
+
"skrifa",
|
|
3106
|
+
"strict-num",
|
|
3107
|
+
"svgtypes",
|
|
3108
|
+
"tiny-skia-path",
|
|
3109
|
+
"unicode-bidi",
|
|
3110
|
+
"unicode-script",
|
|
3111
|
+
"unicode-vo",
|
|
3112
|
+
"xmlwriter",
|
|
3113
|
+
]
|
|
3114
|
+
|
|
3115
|
+
[[package]]
|
|
3116
|
+
name = "utf8_iter"
|
|
3117
|
+
version = "1.0.4"
|
|
3118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3120
|
+
|
|
3121
|
+
[[package]]
|
|
3122
|
+
name = "utf8parse"
|
|
3123
|
+
version = "0.2.2"
|
|
3124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3126
|
+
|
|
3127
|
+
[[package]]
|
|
3128
|
+
name = "uuid"
|
|
3129
|
+
version = "1.26.0"
|
|
3130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
+
checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"
|
|
3132
|
+
dependencies = [
|
|
3133
|
+
"getrandom 0.4.3",
|
|
3134
|
+
"js-sys",
|
|
3135
|
+
"wasm-bindgen",
|
|
3136
|
+
]
|
|
3137
|
+
|
|
3138
|
+
[[package]]
|
|
3139
|
+
name = "version_check"
|
|
3140
|
+
version = "0.9.5"
|
|
3141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3143
|
+
|
|
3144
|
+
[[package]]
|
|
3145
|
+
name = "walkdir"
|
|
3146
|
+
version = "2.5.0"
|
|
3147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3149
|
+
dependencies = [
|
|
3150
|
+
"same-file",
|
|
3151
|
+
"winapi-util",
|
|
3152
|
+
]
|
|
3153
|
+
|
|
3154
|
+
[[package]]
|
|
3155
|
+
name = "wasi"
|
|
3156
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3158
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3159
|
+
|
|
3160
|
+
[[package]]
|
|
3161
|
+
name = "wasip2"
|
|
3162
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3164
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3165
|
+
dependencies = [
|
|
3166
|
+
"wit-bindgen",
|
|
3167
|
+
]
|
|
3168
|
+
|
|
3169
|
+
[[package]]
|
|
3170
|
+
name = "wasm-bindgen"
|
|
3171
|
+
version = "0.2.127"
|
|
3172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
3174
|
+
dependencies = [
|
|
3175
|
+
"cfg-if",
|
|
3176
|
+
"once_cell",
|
|
3177
|
+
"rustversion",
|
|
3178
|
+
"wasm-bindgen-macro",
|
|
3179
|
+
"wasm-bindgen-shared",
|
|
3180
|
+
]
|
|
3181
|
+
|
|
3182
|
+
[[package]]
|
|
3183
|
+
name = "wasm-bindgen-macro"
|
|
3184
|
+
version = "0.2.127"
|
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
3187
|
+
dependencies = [
|
|
3188
|
+
"quote",
|
|
3189
|
+
"wasm-bindgen-macro-support",
|
|
3190
|
+
]
|
|
3191
|
+
|
|
3192
|
+
[[package]]
|
|
3193
|
+
name = "wasm-bindgen-macro-support"
|
|
3194
|
+
version = "0.2.127"
|
|
3195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
3197
|
+
dependencies = [
|
|
3198
|
+
"bumpalo",
|
|
3199
|
+
"proc-macro2",
|
|
3200
|
+
"quote",
|
|
3201
|
+
"syn 2.0.119",
|
|
3202
|
+
"wasm-bindgen-shared",
|
|
3203
|
+
]
|
|
3204
|
+
|
|
3205
|
+
[[package]]
|
|
3206
|
+
name = "wasm-bindgen-shared"
|
|
3207
|
+
version = "0.2.127"
|
|
3208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3209
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
3210
|
+
dependencies = [
|
|
3211
|
+
"unicode-ident",
|
|
3212
|
+
]
|
|
3213
|
+
|
|
3214
|
+
[[package]]
|
|
3215
|
+
name = "web-sys"
|
|
3216
|
+
version = "0.3.104"
|
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
+
checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
|
|
3219
|
+
dependencies = [
|
|
3220
|
+
"js-sys",
|
|
3221
|
+
"wasm-bindgen",
|
|
3222
|
+
]
|
|
3223
|
+
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "webbrowser"
|
|
3226
|
+
version = "1.2.4"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "62c35be770821a214dbc362fc26908c853e776c0004294d0b10b8a6bad582f94"
|
|
3229
|
+
dependencies = [
|
|
3230
|
+
"jni",
|
|
3231
|
+
"log",
|
|
3232
|
+
"ndk-context",
|
|
3233
|
+
"objc2",
|
|
3234
|
+
"objc2-app-kit",
|
|
3235
|
+
"objc2-foundation",
|
|
3236
|
+
"url",
|
|
3237
|
+
"web-sys",
|
|
3238
|
+
]
|
|
3239
|
+
|
|
3240
|
+
[[package]]
|
|
3241
|
+
name = "winapi"
|
|
3242
|
+
version = "0.3.9"
|
|
3243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3245
|
+
dependencies = [
|
|
3246
|
+
"winapi-i686-pc-windows-gnu",
|
|
3247
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3248
|
+
]
|
|
3249
|
+
|
|
3250
|
+
[[package]]
|
|
3251
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3252
|
+
version = "0.4.0"
|
|
3253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3254
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3255
|
+
|
|
3256
|
+
[[package]]
|
|
3257
|
+
name = "winapi-util"
|
|
3258
|
+
version = "0.1.11"
|
|
3259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3260
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3261
|
+
dependencies = [
|
|
3262
|
+
"windows-sys",
|
|
3263
|
+
]
|
|
3264
|
+
|
|
3265
|
+
[[package]]
|
|
3266
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3267
|
+
version = "0.4.0"
|
|
3268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3269
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3270
|
+
|
|
3271
|
+
[[package]]
|
|
3272
|
+
name = "windows-core"
|
|
3273
|
+
version = "0.62.2"
|
|
3274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3275
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3276
|
+
dependencies = [
|
|
3277
|
+
"windows-implement",
|
|
3278
|
+
"windows-interface",
|
|
3279
|
+
"windows-link",
|
|
3280
|
+
"windows-result",
|
|
3281
|
+
"windows-strings",
|
|
3282
|
+
]
|
|
3283
|
+
|
|
3284
|
+
[[package]]
|
|
3285
|
+
name = "windows-implement"
|
|
3286
|
+
version = "0.60.2"
|
|
3287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3289
|
+
dependencies = [
|
|
3290
|
+
"proc-macro2",
|
|
3291
|
+
"quote",
|
|
3292
|
+
"syn 2.0.119",
|
|
3293
|
+
]
|
|
3294
|
+
|
|
3295
|
+
[[package]]
|
|
3296
|
+
name = "windows-interface"
|
|
3297
|
+
version = "0.59.3"
|
|
3298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3299
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3300
|
+
dependencies = [
|
|
3301
|
+
"proc-macro2",
|
|
3302
|
+
"quote",
|
|
3303
|
+
"syn 2.0.119",
|
|
3304
|
+
]
|
|
3305
|
+
|
|
3306
|
+
[[package]]
|
|
3307
|
+
name = "windows-link"
|
|
3308
|
+
version = "0.2.1"
|
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3311
|
+
|
|
3312
|
+
[[package]]
|
|
3313
|
+
name = "windows-result"
|
|
3314
|
+
version = "0.4.1"
|
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3317
|
+
dependencies = [
|
|
3318
|
+
"windows-link",
|
|
3319
|
+
]
|
|
3320
|
+
|
|
3321
|
+
[[package]]
|
|
3322
|
+
name = "windows-strings"
|
|
3323
|
+
version = "0.5.1"
|
|
3324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3325
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3326
|
+
dependencies = [
|
|
3327
|
+
"windows-link",
|
|
3328
|
+
]
|
|
3329
|
+
|
|
3330
|
+
[[package]]
|
|
3331
|
+
name = "windows-sys"
|
|
3332
|
+
version = "0.61.2"
|
|
3333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3334
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3335
|
+
dependencies = [
|
|
3336
|
+
"windows-link",
|
|
3337
|
+
]
|
|
3338
|
+
|
|
3339
|
+
[[package]]
|
|
3340
|
+
name = "wit-bindgen"
|
|
3341
|
+
version = "0.57.1"
|
|
3342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3343
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3344
|
+
|
|
3345
|
+
[[package]]
|
|
3346
|
+
name = "wkt"
|
|
3347
|
+
version = "0.14.0"
|
|
3348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3349
|
+
checksum = "efb2b923ccc882312e559ffaa832a055ba9d1ac0cc8e86b3e25453247e4b81d7"
|
|
3350
|
+
dependencies = [
|
|
3351
|
+
"geo-traits",
|
|
3352
|
+
"geo-types",
|
|
3353
|
+
"log",
|
|
3354
|
+
"num-traits",
|
|
3355
|
+
"thiserror 1.0.69",
|
|
3356
|
+
]
|
|
3357
|
+
|
|
3358
|
+
[[package]]
|
|
3359
|
+
name = "writeable"
|
|
3360
|
+
version = "0.6.4"
|
|
3361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
3363
|
+
|
|
3364
|
+
[[package]]
|
|
3365
|
+
name = "xmlwriter"
|
|
3366
|
+
version = "0.1.0"
|
|
3367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
+
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
|
|
3369
|
+
|
|
3370
|
+
[[package]]
|
|
3371
|
+
name = "yoke"
|
|
3372
|
+
version = "0.8.3"
|
|
3373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
3375
|
+
dependencies = [
|
|
3376
|
+
"stable_deref_trait",
|
|
3377
|
+
"yoke-derive",
|
|
3378
|
+
"zerofrom",
|
|
3379
|
+
]
|
|
3380
|
+
|
|
3381
|
+
[[package]]
|
|
3382
|
+
name = "yoke-derive"
|
|
3383
|
+
version = "0.8.2"
|
|
3384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3385
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3386
|
+
dependencies = [
|
|
3387
|
+
"proc-macro2",
|
|
3388
|
+
"quote",
|
|
3389
|
+
"syn 2.0.119",
|
|
3390
|
+
"synstructure",
|
|
3391
|
+
]
|
|
3392
|
+
|
|
3393
|
+
[[package]]
|
|
3394
|
+
name = "zerocopy"
|
|
3395
|
+
version = "0.8.56"
|
|
3396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3397
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
3398
|
+
dependencies = [
|
|
3399
|
+
"zerocopy-derive",
|
|
3400
|
+
]
|
|
3401
|
+
|
|
3402
|
+
[[package]]
|
|
3403
|
+
name = "zerocopy-derive"
|
|
3404
|
+
version = "0.8.56"
|
|
3405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
3407
|
+
dependencies = [
|
|
3408
|
+
"proc-macro2",
|
|
3409
|
+
"quote",
|
|
3410
|
+
"syn 2.0.119",
|
|
3411
|
+
]
|
|
3412
|
+
|
|
3413
|
+
[[package]]
|
|
3414
|
+
name = "zerofrom"
|
|
3415
|
+
version = "0.1.8"
|
|
3416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3418
|
+
dependencies = [
|
|
3419
|
+
"zerofrom-derive",
|
|
3420
|
+
]
|
|
3421
|
+
|
|
3422
|
+
[[package]]
|
|
3423
|
+
name = "zerofrom-derive"
|
|
3424
|
+
version = "0.1.7"
|
|
3425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3427
|
+
dependencies = [
|
|
3428
|
+
"proc-macro2",
|
|
3429
|
+
"quote",
|
|
3430
|
+
"syn 2.0.119",
|
|
3431
|
+
"synstructure",
|
|
3432
|
+
]
|
|
3433
|
+
|
|
3434
|
+
[[package]]
|
|
3435
|
+
name = "zerotrie"
|
|
3436
|
+
version = "0.2.5"
|
|
3437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3438
|
+
checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
|
|
3439
|
+
dependencies = [
|
|
3440
|
+
"displaydoc",
|
|
3441
|
+
"yoke",
|
|
3442
|
+
"zerofrom",
|
|
3443
|
+
]
|
|
3444
|
+
|
|
3445
|
+
[[package]]
|
|
3446
|
+
name = "zerovec"
|
|
3447
|
+
version = "0.11.8"
|
|
3448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
+
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
|
|
3450
|
+
dependencies = [
|
|
3451
|
+
"yoke",
|
|
3452
|
+
"zerofrom",
|
|
3453
|
+
"zerovec-derive",
|
|
3454
|
+
]
|
|
3455
|
+
|
|
3456
|
+
[[package]]
|
|
3457
|
+
name = "zerovec-derive"
|
|
3458
|
+
version = "0.11.6"
|
|
3459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3460
|
+
checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
|
|
3461
|
+
dependencies = [
|
|
3462
|
+
"proc-macro2",
|
|
3463
|
+
"quote",
|
|
3464
|
+
"syn 3.0.4",
|
|
3465
|
+
]
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "zlib-rs"
|
|
3469
|
+
version = "0.6.7"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
3472
|
+
|
|
3473
|
+
[[package]]
|
|
3474
|
+
name = "zmij"
|
|
3475
|
+
version = "1.0.23"
|
|
3476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3477
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
3478
|
+
|
|
3479
|
+
[[package]]
|
|
3480
|
+
name = "zstd"
|
|
3481
|
+
version = "0.13.3"
|
|
3482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3484
|
+
dependencies = [
|
|
3485
|
+
"zstd-safe",
|
|
3486
|
+
]
|
|
3487
|
+
|
|
3488
|
+
[[package]]
|
|
3489
|
+
name = "zstd-safe"
|
|
3490
|
+
version = "7.2.4"
|
|
3491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3493
|
+
dependencies = [
|
|
3494
|
+
"zstd-sys",
|
|
3495
|
+
]
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "zstd-sys"
|
|
3499
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3502
|
+
dependencies = [
|
|
3503
|
+
"cc",
|
|
3504
|
+
"pkg-config",
|
|
3505
|
+
]
|