dedroom 0.3.1__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.
- dedroom-0.3.1/Cargo.lock +3053 -0
- dedroom-0.3.1/Cargo.toml +72 -0
- dedroom-0.3.1/LICENSE +13 -0
- dedroom-0.3.1/PKG-INFO +153 -0
- dedroom-0.3.1/crates/dedroom-core/Cargo.toml +43 -0
- dedroom-0.3.1/crates/dedroom-core/benches/loop_history_bench.rs +227 -0
- dedroom-0.3.1/crates/dedroom-core/benches/pipeline_bench.rs +343 -0
- dedroom-0.3.1/crates/dedroom-core/examples/basic.rs +71 -0
- dedroom-0.3.1/crates/dedroom-core/examples/bench.rs +635 -0
- dedroom-0.3.1/crates/dedroom-core/examples/compression_quality.rs +220 -0
- dedroom-0.3.1/crates/dedroom-core/src/attribution/engine.rs +524 -0
- dedroom-0.3.1/crates/dedroom-core/src/attribution/mod.rs +12 -0
- dedroom-0.3.1/crates/dedroom-core/src/ccr/mod.rs +12 -0
- dedroom-0.3.1/crates/dedroom-core/src/ccr/store.rs +510 -0
- dedroom-0.3.1/crates/dedroom-core/src/compression/code_compressor.rs +606 -0
- dedroom-0.3.1/crates/dedroom-core/src/compression/log_compressor.rs +94 -0
- dedroom-0.3.1/crates/dedroom-core/src/compression/mod.rs +60 -0
- dedroom-0.3.1/crates/dedroom-core/src/compression/policy.rs +199 -0
- dedroom-0.3.1/crates/dedroom-core/src/compression/router.rs +148 -0
- dedroom-0.3.1/crates/dedroom-core/src/compression/smart_crusher.rs +218 -0
- dedroom-0.3.1/crates/dedroom-core/src/compression/text_compressor.rs +103 -0
- dedroom-0.3.1/crates/dedroom-core/src/config.rs +567 -0
- dedroom-0.3.1/crates/dedroom-core/src/embedding/embedder.rs +160 -0
- dedroom-0.3.1/crates/dedroom-core/src/embedding/mod.rs +12 -0
- dedroom-0.3.1/crates/dedroom-core/src/lib.rs +34 -0
- dedroom-0.3.1/crates/dedroom-core/src/loop_detection/adaptive.rs +217 -0
- dedroom-0.3.1/crates/dedroom-core/src/loop_detection/canonical.rs +241 -0
- dedroom-0.3.1/crates/dedroom-core/src/loop_detection/engine.rs +556 -0
- dedroom-0.3.1/crates/dedroom-core/src/loop_detection/history.rs +542 -0
- dedroom-0.3.1/crates/dedroom-core/src/loop_detection/mod.rs +25 -0
- dedroom-0.3.1/crates/dedroom-core/src/loop_detection/semantic.rs +68 -0
- dedroom-0.3.1/crates/dedroom-core/src/pipeline.rs +580 -0
- dedroom-0.3.1/crates/dedroom-core/src/security/mod.rs +14 -0
- dedroom-0.3.1/crates/dedroom-core/src/security/redaction.rs +605 -0
- dedroom-0.3.1/crates/dedroom-core/src/telemetry/event_log.rs +466 -0
- dedroom-0.3.1/crates/dedroom-core/src/telemetry/mod.rs +13 -0
- dedroom-0.3.1/crates/dedroom-core/src/telemetry/savings_ledger.rs +164 -0
- dedroom-0.3.1/crates/dedroom-py/Cargo.toml +15 -0
- dedroom-0.3.1/crates/dedroom-py/build.rs +46 -0
- dedroom-0.3.1/crates/dedroom-py/src/lib.rs +275 -0
- dedroom-0.3.1/pyproject.toml +55 -0
- dedroom-0.3.1/python/README.md +125 -0
- dedroom-0.3.1/python/dedroom/__init__.py +28 -0
- dedroom-0.3.1/python/dedroom/bin/.gitignore +2 -0
- dedroom-0.3.1/python/dedroom/bin/dedroom +0 -0
- dedroom-0.3.1/python/dedroom/bin/dedroom-proxy +0 -0
- dedroom-0.3.1/python/dedroom/cli.py +174 -0
dedroom-0.3.1/Cargo.lock
ADDED
|
@@ -0,0 +1,3053 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
"zerocopy",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "aho-corasick"
|
|
19
|
+
version = "1.1.4"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"memchr",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "allocator-api2"
|
|
28
|
+
version = "0.2.21"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anes"
|
|
34
|
+
version = "0.1.6"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "anstyle"
|
|
40
|
+
version = "1.0.14"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anyhow"
|
|
46
|
+
version = "1.0.103"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "arrayref"
|
|
52
|
+
version = "0.3.9"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "arrayvec"
|
|
58
|
+
version = "0.7.8"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "async-trait"
|
|
64
|
+
version = "0.1.89"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"proc-macro2",
|
|
69
|
+
"quote",
|
|
70
|
+
"syn",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "atomic-waker"
|
|
75
|
+
version = "1.1.2"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "autocfg"
|
|
81
|
+
version = "1.5.1"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "axum"
|
|
87
|
+
version = "0.7.9"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"async-trait",
|
|
92
|
+
"axum-core",
|
|
93
|
+
"bytes",
|
|
94
|
+
"futures-util",
|
|
95
|
+
"http",
|
|
96
|
+
"http-body",
|
|
97
|
+
"http-body-util",
|
|
98
|
+
"hyper",
|
|
99
|
+
"hyper-util",
|
|
100
|
+
"itoa",
|
|
101
|
+
"matchit",
|
|
102
|
+
"memchr",
|
|
103
|
+
"mime",
|
|
104
|
+
"percent-encoding",
|
|
105
|
+
"pin-project-lite",
|
|
106
|
+
"rustversion",
|
|
107
|
+
"serde",
|
|
108
|
+
"serde_json",
|
|
109
|
+
"serde_path_to_error",
|
|
110
|
+
"serde_urlencoded",
|
|
111
|
+
"sync_wrapper",
|
|
112
|
+
"tokio",
|
|
113
|
+
"tower",
|
|
114
|
+
"tower-layer",
|
|
115
|
+
"tower-service",
|
|
116
|
+
"tracing",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "axum-core"
|
|
121
|
+
version = "0.4.5"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"async-trait",
|
|
126
|
+
"bytes",
|
|
127
|
+
"futures-util",
|
|
128
|
+
"http",
|
|
129
|
+
"http-body",
|
|
130
|
+
"http-body-util",
|
|
131
|
+
"mime",
|
|
132
|
+
"pin-project-lite",
|
|
133
|
+
"rustversion",
|
|
134
|
+
"sync_wrapper",
|
|
135
|
+
"tower-layer",
|
|
136
|
+
"tower-service",
|
|
137
|
+
"tracing",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "base64"
|
|
142
|
+
version = "0.21.7"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "base64"
|
|
148
|
+
version = "0.22.1"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "bit-set"
|
|
154
|
+
version = "0.5.3"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"bit-vec",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "bit-vec"
|
|
163
|
+
version = "0.6.3"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "bitflags"
|
|
169
|
+
version = "2.13.0"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "blake3"
|
|
175
|
+
version = "1.8.5"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"arrayref",
|
|
180
|
+
"arrayvec",
|
|
181
|
+
"cc",
|
|
182
|
+
"cfg-if",
|
|
183
|
+
"constant_time_eq",
|
|
184
|
+
"cpufeatures",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "bstr"
|
|
189
|
+
version = "1.12.3"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"memchr",
|
|
194
|
+
"regex-automata",
|
|
195
|
+
"serde_core",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "bumpalo"
|
|
200
|
+
version = "3.20.3"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "bytes"
|
|
206
|
+
version = "1.12.0"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "cassowary"
|
|
212
|
+
version = "0.3.0"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "cast"
|
|
218
|
+
version = "0.3.0"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "castaway"
|
|
224
|
+
version = "0.2.4"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"rustversion",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "cc"
|
|
233
|
+
version = "1.2.65"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"find-msvc-tools",
|
|
238
|
+
"shlex",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "cfg-if"
|
|
243
|
+
version = "1.0.4"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "ciborium"
|
|
249
|
+
version = "0.2.2"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"ciborium-io",
|
|
254
|
+
"ciborium-ll",
|
|
255
|
+
"serde",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "ciborium-io"
|
|
260
|
+
version = "0.2.2"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "ciborium-ll"
|
|
266
|
+
version = "0.2.2"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"ciborium-io",
|
|
271
|
+
"half",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "clap"
|
|
276
|
+
version = "4.6.1"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"clap_builder",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "clap_builder"
|
|
285
|
+
version = "4.6.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"anstyle",
|
|
290
|
+
"clap_lex",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "clap_lex"
|
|
295
|
+
version = "1.1.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "compact_str"
|
|
301
|
+
version = "0.8.2"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"castaway",
|
|
306
|
+
"cfg-if",
|
|
307
|
+
"itoa",
|
|
308
|
+
"rustversion",
|
|
309
|
+
"ryu",
|
|
310
|
+
"static_assertions",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "constant_time_eq"
|
|
315
|
+
version = "0.4.2"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "core-foundation"
|
|
321
|
+
version = "0.9.4"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"core-foundation-sys",
|
|
326
|
+
"libc",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "core-foundation"
|
|
331
|
+
version = "0.10.1"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"core-foundation-sys",
|
|
336
|
+
"libc",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "core-foundation-sys"
|
|
341
|
+
version = "0.8.7"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "cpufeatures"
|
|
347
|
+
version = "0.3.0"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"libc",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "criterion"
|
|
356
|
+
version = "0.5.1"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"anes",
|
|
361
|
+
"cast",
|
|
362
|
+
"ciborium",
|
|
363
|
+
"clap",
|
|
364
|
+
"criterion-plot",
|
|
365
|
+
"is-terminal",
|
|
366
|
+
"itertools 0.10.5",
|
|
367
|
+
"num-traits",
|
|
368
|
+
"once_cell",
|
|
369
|
+
"oorandom",
|
|
370
|
+
"plotters",
|
|
371
|
+
"rayon",
|
|
372
|
+
"regex",
|
|
373
|
+
"serde",
|
|
374
|
+
"serde_derive",
|
|
375
|
+
"serde_json",
|
|
376
|
+
"tinytemplate",
|
|
377
|
+
"walkdir",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "criterion-plot"
|
|
382
|
+
version = "0.5.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"cast",
|
|
387
|
+
"itertools 0.10.5",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "crossbeam-deque"
|
|
392
|
+
version = "0.8.6"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"crossbeam-epoch",
|
|
397
|
+
"crossbeam-utils",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "crossbeam-epoch"
|
|
402
|
+
version = "0.9.18"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"crossbeam-utils",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "crossbeam-utils"
|
|
411
|
+
version = "0.8.21"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "crossterm"
|
|
417
|
+
version = "0.28.1"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"bitflags",
|
|
422
|
+
"crossterm_winapi",
|
|
423
|
+
"mio",
|
|
424
|
+
"parking_lot",
|
|
425
|
+
"rustix 0.38.44",
|
|
426
|
+
"signal-hook",
|
|
427
|
+
"signal-hook-mio",
|
|
428
|
+
"winapi",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "crossterm_winapi"
|
|
433
|
+
version = "0.9.1"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"winapi",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "crunchy"
|
|
442
|
+
version = "0.2.4"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "darling"
|
|
448
|
+
version = "0.23.0"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"darling_core",
|
|
453
|
+
"darling_macro",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "darling_core"
|
|
458
|
+
version = "0.23.0"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"ident_case",
|
|
463
|
+
"proc-macro2",
|
|
464
|
+
"quote",
|
|
465
|
+
"strsim",
|
|
466
|
+
"syn",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "darling_macro"
|
|
471
|
+
version = "0.23.0"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"darling_core",
|
|
476
|
+
"quote",
|
|
477
|
+
"syn",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "dedroom-benchmark"
|
|
482
|
+
version = "0.1.0"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"dedroom-core",
|
|
485
|
+
"serde_json",
|
|
486
|
+
"tempfile",
|
|
487
|
+
"tiktoken-rs",
|
|
488
|
+
"tokio",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "dedroom-cli"
|
|
493
|
+
version = "0.3.1"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"anyhow",
|
|
496
|
+
"dirs",
|
|
497
|
+
"regex",
|
|
498
|
+
"reqwest",
|
|
499
|
+
"serde",
|
|
500
|
+
"serde_json",
|
|
501
|
+
"tokio",
|
|
502
|
+
"tracing",
|
|
503
|
+
"tracing-subscriber",
|
|
504
|
+
"which",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "dedroom-core"
|
|
509
|
+
version = "0.3.1"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"anyhow",
|
|
512
|
+
"async-trait",
|
|
513
|
+
"blake3",
|
|
514
|
+
"criterion",
|
|
515
|
+
"lru",
|
|
516
|
+
"regex",
|
|
517
|
+
"rusqlite",
|
|
518
|
+
"serde",
|
|
519
|
+
"serde_json",
|
|
520
|
+
"serde_yaml",
|
|
521
|
+
"tempfile",
|
|
522
|
+
"thiserror 2.0.18",
|
|
523
|
+
"tokio",
|
|
524
|
+
"tracing",
|
|
525
|
+
"tree-sitter",
|
|
526
|
+
"tree-sitter-javascript",
|
|
527
|
+
"tree-sitter-python",
|
|
528
|
+
"tree-sitter-rust",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "dedroom-parity"
|
|
533
|
+
version = "0.3.1"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"dedroom-core",
|
|
536
|
+
"serde",
|
|
537
|
+
"serde_json",
|
|
538
|
+
"tracing",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "dedroom-proxy"
|
|
543
|
+
version = "0.3.1"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"anyhow",
|
|
546
|
+
"axum",
|
|
547
|
+
"bytes",
|
|
548
|
+
"dedroom-core",
|
|
549
|
+
"futures",
|
|
550
|
+
"http",
|
|
551
|
+
"hyper",
|
|
552
|
+
"reqwest",
|
|
553
|
+
"serde",
|
|
554
|
+
"serde_json",
|
|
555
|
+
"serde_yaml",
|
|
556
|
+
"tempfile",
|
|
557
|
+
"tokio",
|
|
558
|
+
"tokio-stream",
|
|
559
|
+
"tower",
|
|
560
|
+
"tower-http 0.5.2",
|
|
561
|
+
"tracing",
|
|
562
|
+
"tracing-subscriber",
|
|
563
|
+
"uuid",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "dedroom-py"
|
|
568
|
+
version = "0.3.1"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"dedroom-core",
|
|
571
|
+
"pyo3",
|
|
572
|
+
"serde_json",
|
|
573
|
+
"tokio",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "dedroom-tui"
|
|
578
|
+
version = "0.3.1"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"anyhow",
|
|
581
|
+
"crossterm",
|
|
582
|
+
"futures",
|
|
583
|
+
"ratatui",
|
|
584
|
+
"reqwest",
|
|
585
|
+
"serde",
|
|
586
|
+
"serde_json",
|
|
587
|
+
"tokio",
|
|
588
|
+
"tracing",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "dirs"
|
|
593
|
+
version = "5.0.1"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"dirs-sys",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "dirs-sys"
|
|
602
|
+
version = "0.4.1"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"libc",
|
|
607
|
+
"option-ext",
|
|
608
|
+
"redox_users",
|
|
609
|
+
"windows-sys 0.48.0",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "displaydoc"
|
|
614
|
+
version = "0.2.6"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"proc-macro2",
|
|
619
|
+
"quote",
|
|
620
|
+
"syn",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "either"
|
|
625
|
+
version = "1.16.0"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "encoding_rs"
|
|
631
|
+
version = "0.8.35"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"cfg-if",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "equivalent"
|
|
640
|
+
version = "1.0.2"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "errno"
|
|
646
|
+
version = "0.3.14"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"libc",
|
|
651
|
+
"windows-sys 0.61.2",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "fallible-iterator"
|
|
656
|
+
version = "0.3.0"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "fallible-streaming-iterator"
|
|
662
|
+
version = "0.1.9"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "fancy-regex"
|
|
668
|
+
version = "0.13.0"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"bit-set",
|
|
673
|
+
"regex-automata",
|
|
674
|
+
"regex-syntax",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "fastrand"
|
|
679
|
+
version = "2.4.1"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "find-msvc-tools"
|
|
685
|
+
version = "0.1.9"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "fnv"
|
|
691
|
+
version = "1.0.7"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "foldhash"
|
|
697
|
+
version = "0.1.5"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "foreign-types"
|
|
703
|
+
version = "0.3.2"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"foreign-types-shared",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "foreign-types-shared"
|
|
712
|
+
version = "0.1.1"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "form_urlencoded"
|
|
718
|
+
version = "1.2.2"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"percent-encoding",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "futures"
|
|
727
|
+
version = "0.3.32"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"futures-channel",
|
|
732
|
+
"futures-core",
|
|
733
|
+
"futures-executor",
|
|
734
|
+
"futures-io",
|
|
735
|
+
"futures-sink",
|
|
736
|
+
"futures-task",
|
|
737
|
+
"futures-util",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "futures-channel"
|
|
742
|
+
version = "0.3.32"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"futures-core",
|
|
747
|
+
"futures-sink",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "futures-core"
|
|
752
|
+
version = "0.3.32"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "futures-executor"
|
|
758
|
+
version = "0.3.32"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"futures-core",
|
|
763
|
+
"futures-task",
|
|
764
|
+
"futures-util",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "futures-io"
|
|
769
|
+
version = "0.3.32"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "futures-macro"
|
|
775
|
+
version = "0.3.32"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"proc-macro2",
|
|
780
|
+
"quote",
|
|
781
|
+
"syn",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "futures-sink"
|
|
786
|
+
version = "0.3.32"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "futures-task"
|
|
792
|
+
version = "0.3.32"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "futures-util"
|
|
798
|
+
version = "0.3.32"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"futures-channel",
|
|
803
|
+
"futures-core",
|
|
804
|
+
"futures-io",
|
|
805
|
+
"futures-macro",
|
|
806
|
+
"futures-sink",
|
|
807
|
+
"futures-task",
|
|
808
|
+
"memchr",
|
|
809
|
+
"pin-project-lite",
|
|
810
|
+
"slab",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "getrandom"
|
|
815
|
+
version = "0.2.17"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"cfg-if",
|
|
820
|
+
"libc",
|
|
821
|
+
"wasi",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "getrandom"
|
|
826
|
+
version = "0.4.3"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"cfg-if",
|
|
831
|
+
"libc",
|
|
832
|
+
"r-efi",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "h2"
|
|
837
|
+
version = "0.4.15"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"atomic-waker",
|
|
842
|
+
"bytes",
|
|
843
|
+
"fnv",
|
|
844
|
+
"futures-core",
|
|
845
|
+
"futures-sink",
|
|
846
|
+
"http",
|
|
847
|
+
"indexmap",
|
|
848
|
+
"slab",
|
|
849
|
+
"tokio",
|
|
850
|
+
"tokio-util",
|
|
851
|
+
"tracing",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "half"
|
|
856
|
+
version = "2.7.1"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"cfg-if",
|
|
861
|
+
"crunchy",
|
|
862
|
+
"zerocopy",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "hashbrown"
|
|
867
|
+
version = "0.14.5"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"ahash",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "hashbrown"
|
|
876
|
+
version = "0.15.5"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"allocator-api2",
|
|
881
|
+
"equivalent",
|
|
882
|
+
"foldhash",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "hashbrown"
|
|
887
|
+
version = "0.17.1"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "hashlink"
|
|
893
|
+
version = "0.9.1"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"hashbrown 0.14.5",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "heck"
|
|
902
|
+
version = "0.5.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "hermit-abi"
|
|
908
|
+
version = "0.5.2"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "home"
|
|
914
|
+
version = "0.5.12"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"windows-sys 0.61.2",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "http"
|
|
923
|
+
version = "1.4.2"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"bytes",
|
|
928
|
+
"itoa",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "http-body"
|
|
933
|
+
version = "1.0.1"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"bytes",
|
|
938
|
+
"http",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "http-body-util"
|
|
943
|
+
version = "0.1.3"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
946
|
+
dependencies = [
|
|
947
|
+
"bytes",
|
|
948
|
+
"futures-core",
|
|
949
|
+
"http",
|
|
950
|
+
"http-body",
|
|
951
|
+
"pin-project-lite",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "httparse"
|
|
956
|
+
version = "1.10.1"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "httpdate"
|
|
962
|
+
version = "1.0.3"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "hyper"
|
|
968
|
+
version = "1.10.1"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
971
|
+
dependencies = [
|
|
972
|
+
"atomic-waker",
|
|
973
|
+
"bytes",
|
|
974
|
+
"futures-channel",
|
|
975
|
+
"futures-core",
|
|
976
|
+
"h2",
|
|
977
|
+
"http",
|
|
978
|
+
"http-body",
|
|
979
|
+
"httparse",
|
|
980
|
+
"httpdate",
|
|
981
|
+
"itoa",
|
|
982
|
+
"pin-project-lite",
|
|
983
|
+
"smallvec",
|
|
984
|
+
"tokio",
|
|
985
|
+
"want",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "hyper-rustls"
|
|
990
|
+
version = "0.27.9"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"http",
|
|
995
|
+
"hyper",
|
|
996
|
+
"hyper-util",
|
|
997
|
+
"rustls",
|
|
998
|
+
"tokio",
|
|
999
|
+
"tokio-rustls",
|
|
1000
|
+
"tower-service",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "hyper-tls"
|
|
1005
|
+
version = "0.6.0"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"bytes",
|
|
1010
|
+
"http-body-util",
|
|
1011
|
+
"hyper",
|
|
1012
|
+
"hyper-util",
|
|
1013
|
+
"native-tls",
|
|
1014
|
+
"tokio",
|
|
1015
|
+
"tokio-native-tls",
|
|
1016
|
+
"tower-service",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "hyper-util"
|
|
1021
|
+
version = "0.1.20"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"base64 0.22.1",
|
|
1026
|
+
"bytes",
|
|
1027
|
+
"futures-channel",
|
|
1028
|
+
"futures-util",
|
|
1029
|
+
"http",
|
|
1030
|
+
"http-body",
|
|
1031
|
+
"hyper",
|
|
1032
|
+
"ipnet",
|
|
1033
|
+
"libc",
|
|
1034
|
+
"percent-encoding",
|
|
1035
|
+
"pin-project-lite",
|
|
1036
|
+
"socket2",
|
|
1037
|
+
"system-configuration",
|
|
1038
|
+
"tokio",
|
|
1039
|
+
"tower-service",
|
|
1040
|
+
"tracing",
|
|
1041
|
+
"windows-registry",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "icu_collections"
|
|
1046
|
+
version = "2.2.0"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"displaydoc",
|
|
1051
|
+
"potential_utf",
|
|
1052
|
+
"utf8_iter",
|
|
1053
|
+
"yoke",
|
|
1054
|
+
"zerofrom",
|
|
1055
|
+
"zerovec",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "icu_locale_core"
|
|
1060
|
+
version = "2.2.0"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"displaydoc",
|
|
1065
|
+
"litemap",
|
|
1066
|
+
"tinystr",
|
|
1067
|
+
"writeable",
|
|
1068
|
+
"zerovec",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "icu_normalizer"
|
|
1073
|
+
version = "2.2.0"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1076
|
+
dependencies = [
|
|
1077
|
+
"icu_collections",
|
|
1078
|
+
"icu_normalizer_data",
|
|
1079
|
+
"icu_properties",
|
|
1080
|
+
"icu_provider",
|
|
1081
|
+
"smallvec",
|
|
1082
|
+
"zerovec",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "icu_normalizer_data"
|
|
1087
|
+
version = "2.2.0"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "icu_properties"
|
|
1093
|
+
version = "2.2.0"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"icu_collections",
|
|
1098
|
+
"icu_locale_core",
|
|
1099
|
+
"icu_properties_data",
|
|
1100
|
+
"icu_provider",
|
|
1101
|
+
"zerotrie",
|
|
1102
|
+
"zerovec",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "icu_properties_data"
|
|
1107
|
+
version = "2.2.0"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "icu_provider"
|
|
1113
|
+
version = "2.2.0"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1116
|
+
dependencies = [
|
|
1117
|
+
"displaydoc",
|
|
1118
|
+
"icu_locale_core",
|
|
1119
|
+
"writeable",
|
|
1120
|
+
"yoke",
|
|
1121
|
+
"zerofrom",
|
|
1122
|
+
"zerotrie",
|
|
1123
|
+
"zerovec",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "ident_case"
|
|
1128
|
+
version = "1.0.1"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "idna"
|
|
1134
|
+
version = "1.1.0"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"idna_adapter",
|
|
1139
|
+
"smallvec",
|
|
1140
|
+
"utf8_iter",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "idna_adapter"
|
|
1145
|
+
version = "1.2.2"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"icu_normalizer",
|
|
1150
|
+
"icu_properties",
|
|
1151
|
+
]
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "indexmap"
|
|
1155
|
+
version = "2.14.0"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"equivalent",
|
|
1160
|
+
"hashbrown 0.17.1",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "indoc"
|
|
1165
|
+
version = "2.0.7"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"rustversion",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "instability"
|
|
1174
|
+
version = "0.3.12"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "5eb2d60ef19920a3a9193c3e371f726ec1dafc045dac788d0fb3704272458971"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"darling",
|
|
1179
|
+
"indoc",
|
|
1180
|
+
"proc-macro2",
|
|
1181
|
+
"quote",
|
|
1182
|
+
"syn",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "ipnet"
|
|
1187
|
+
version = "2.12.0"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "is-terminal"
|
|
1193
|
+
version = "0.4.17"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"hermit-abi",
|
|
1198
|
+
"libc",
|
|
1199
|
+
"windows-sys 0.61.2",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "itertools"
|
|
1204
|
+
version = "0.10.5"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"either",
|
|
1209
|
+
]
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "itertools"
|
|
1213
|
+
version = "0.13.0"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"either",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "itoa"
|
|
1222
|
+
version = "1.0.18"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "js-sys"
|
|
1228
|
+
version = "0.3.103"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"cfg-if",
|
|
1233
|
+
"futures-util",
|
|
1234
|
+
"wasm-bindgen",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "lazy_static"
|
|
1239
|
+
version = "1.5.0"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "libc"
|
|
1245
|
+
version = "0.2.186"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "libredox"
|
|
1251
|
+
version = "0.1.18"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"libc",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "libsqlite3-sys"
|
|
1260
|
+
version = "0.28.0"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
|
|
1263
|
+
dependencies = [
|
|
1264
|
+
"cc",
|
|
1265
|
+
"pkg-config",
|
|
1266
|
+
"vcpkg",
|
|
1267
|
+
]
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "linux-raw-sys"
|
|
1271
|
+
version = "0.4.15"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "linux-raw-sys"
|
|
1277
|
+
version = "0.12.1"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "litemap"
|
|
1283
|
+
version = "0.8.2"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "lock_api"
|
|
1289
|
+
version = "0.4.14"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"scopeguard",
|
|
1294
|
+
]
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "log"
|
|
1298
|
+
version = "0.4.33"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "lru"
|
|
1304
|
+
version = "0.12.5"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"hashbrown 0.15.5",
|
|
1309
|
+
]
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "matchers"
|
|
1313
|
+
version = "0.2.0"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"regex-automata",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "matchit"
|
|
1322
|
+
version = "0.7.3"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "memchr"
|
|
1328
|
+
version = "2.8.2"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "mime"
|
|
1334
|
+
version = "0.3.17"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "mio"
|
|
1340
|
+
version = "1.2.1"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"libc",
|
|
1345
|
+
"log",
|
|
1346
|
+
"wasi",
|
|
1347
|
+
"windows-sys 0.61.2",
|
|
1348
|
+
]
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "native-tls"
|
|
1352
|
+
version = "0.2.18"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"libc",
|
|
1357
|
+
"log",
|
|
1358
|
+
"openssl",
|
|
1359
|
+
"openssl-probe",
|
|
1360
|
+
"openssl-sys",
|
|
1361
|
+
"schannel",
|
|
1362
|
+
"security-framework",
|
|
1363
|
+
"security-framework-sys",
|
|
1364
|
+
"tempfile",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "nu-ansi-term"
|
|
1369
|
+
version = "0.50.3"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"windows-sys 0.61.2",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "num-traits"
|
|
1378
|
+
version = "0.2.19"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"autocfg",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "once_cell"
|
|
1387
|
+
version = "1.21.4"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "oorandom"
|
|
1393
|
+
version = "11.1.5"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "openssl"
|
|
1399
|
+
version = "0.10.81"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"bitflags",
|
|
1404
|
+
"cfg-if",
|
|
1405
|
+
"foreign-types",
|
|
1406
|
+
"libc",
|
|
1407
|
+
"openssl-macros",
|
|
1408
|
+
"openssl-sys",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "openssl-macros"
|
|
1413
|
+
version = "0.1.1"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"proc-macro2",
|
|
1418
|
+
"quote",
|
|
1419
|
+
"syn",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "openssl-probe"
|
|
1424
|
+
version = "0.2.1"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "openssl-sys"
|
|
1430
|
+
version = "0.9.117"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
|
|
1433
|
+
dependencies = [
|
|
1434
|
+
"cc",
|
|
1435
|
+
"libc",
|
|
1436
|
+
"pkg-config",
|
|
1437
|
+
"vcpkg",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "option-ext"
|
|
1442
|
+
version = "0.2.0"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "parking_lot"
|
|
1448
|
+
version = "0.12.5"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1451
|
+
dependencies = [
|
|
1452
|
+
"lock_api",
|
|
1453
|
+
"parking_lot_core",
|
|
1454
|
+
]
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "parking_lot_core"
|
|
1458
|
+
version = "0.9.12"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1461
|
+
dependencies = [
|
|
1462
|
+
"cfg-if",
|
|
1463
|
+
"libc",
|
|
1464
|
+
"redox_syscall",
|
|
1465
|
+
"smallvec",
|
|
1466
|
+
"windows-link",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "paste"
|
|
1471
|
+
version = "1.0.15"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "percent-encoding"
|
|
1477
|
+
version = "2.3.2"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "pin-project-lite"
|
|
1483
|
+
version = "0.2.17"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "pkg-config"
|
|
1489
|
+
version = "0.3.33"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "plotters"
|
|
1495
|
+
version = "0.3.7"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
1498
|
+
dependencies = [
|
|
1499
|
+
"num-traits",
|
|
1500
|
+
"plotters-backend",
|
|
1501
|
+
"plotters-svg",
|
|
1502
|
+
"wasm-bindgen",
|
|
1503
|
+
"web-sys",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "plotters-backend"
|
|
1508
|
+
version = "0.3.7"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "plotters-svg"
|
|
1514
|
+
version = "0.3.7"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"plotters-backend",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "portable-atomic"
|
|
1523
|
+
version = "1.13.1"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "potential_utf"
|
|
1529
|
+
version = "0.1.5"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"zerovec",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "proc-macro2"
|
|
1538
|
+
version = "1.0.106"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"unicode-ident",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "pyo3"
|
|
1547
|
+
version = "0.29.0"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"libc",
|
|
1552
|
+
"once_cell",
|
|
1553
|
+
"portable-atomic",
|
|
1554
|
+
"pyo3-build-config",
|
|
1555
|
+
"pyo3-ffi",
|
|
1556
|
+
"pyo3-macros",
|
|
1557
|
+
]
|
|
1558
|
+
|
|
1559
|
+
[[package]]
|
|
1560
|
+
name = "pyo3-build-config"
|
|
1561
|
+
version = "0.29.0"
|
|
1562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1563
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
1564
|
+
dependencies = [
|
|
1565
|
+
"target-lexicon",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "pyo3-ffi"
|
|
1570
|
+
version = "0.29.0"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"libc",
|
|
1575
|
+
"pyo3-build-config",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "pyo3-macros"
|
|
1580
|
+
version = "0.29.0"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
1583
|
+
dependencies = [
|
|
1584
|
+
"proc-macro2",
|
|
1585
|
+
"pyo3-macros-backend",
|
|
1586
|
+
"quote",
|
|
1587
|
+
"syn",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "pyo3-macros-backend"
|
|
1592
|
+
version = "0.29.0"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"heck",
|
|
1597
|
+
"proc-macro2",
|
|
1598
|
+
"quote",
|
|
1599
|
+
"syn",
|
|
1600
|
+
]
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "quote"
|
|
1604
|
+
version = "1.0.46"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"proc-macro2",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "r-efi"
|
|
1613
|
+
version = "6.0.0"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "ratatui"
|
|
1619
|
+
version = "0.28.1"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "fdef7f9be5c0122f890d58bdf4d964349ba6a6161f705907526d891efabba57d"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"bitflags",
|
|
1624
|
+
"cassowary",
|
|
1625
|
+
"compact_str",
|
|
1626
|
+
"crossterm",
|
|
1627
|
+
"instability",
|
|
1628
|
+
"itertools 0.13.0",
|
|
1629
|
+
"lru",
|
|
1630
|
+
"paste",
|
|
1631
|
+
"strum",
|
|
1632
|
+
"strum_macros",
|
|
1633
|
+
"unicode-segmentation",
|
|
1634
|
+
"unicode-truncate",
|
|
1635
|
+
"unicode-width",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "rayon"
|
|
1640
|
+
version = "1.12.0"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"either",
|
|
1645
|
+
"rayon-core",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "rayon-core"
|
|
1650
|
+
version = "1.13.0"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"crossbeam-deque",
|
|
1655
|
+
"crossbeam-utils",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "redox_syscall"
|
|
1660
|
+
version = "0.5.18"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"bitflags",
|
|
1665
|
+
]
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "redox_users"
|
|
1669
|
+
version = "0.4.6"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
1672
|
+
dependencies = [
|
|
1673
|
+
"getrandom 0.2.17",
|
|
1674
|
+
"libredox",
|
|
1675
|
+
"thiserror 1.0.69",
|
|
1676
|
+
]
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "regex"
|
|
1680
|
+
version = "1.12.4"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"aho-corasick",
|
|
1685
|
+
"memchr",
|
|
1686
|
+
"regex-automata",
|
|
1687
|
+
"regex-syntax",
|
|
1688
|
+
]
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "regex-automata"
|
|
1692
|
+
version = "0.4.14"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1695
|
+
dependencies = [
|
|
1696
|
+
"aho-corasick",
|
|
1697
|
+
"memchr",
|
|
1698
|
+
"regex-syntax",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "regex-syntax"
|
|
1703
|
+
version = "0.8.11"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "reqwest"
|
|
1709
|
+
version = "0.12.28"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"base64 0.22.1",
|
|
1714
|
+
"bytes",
|
|
1715
|
+
"encoding_rs",
|
|
1716
|
+
"futures-channel",
|
|
1717
|
+
"futures-core",
|
|
1718
|
+
"futures-util",
|
|
1719
|
+
"h2",
|
|
1720
|
+
"http",
|
|
1721
|
+
"http-body",
|
|
1722
|
+
"http-body-util",
|
|
1723
|
+
"hyper",
|
|
1724
|
+
"hyper-rustls",
|
|
1725
|
+
"hyper-tls",
|
|
1726
|
+
"hyper-util",
|
|
1727
|
+
"js-sys",
|
|
1728
|
+
"log",
|
|
1729
|
+
"mime",
|
|
1730
|
+
"native-tls",
|
|
1731
|
+
"percent-encoding",
|
|
1732
|
+
"pin-project-lite",
|
|
1733
|
+
"rustls-pki-types",
|
|
1734
|
+
"serde",
|
|
1735
|
+
"serde_json",
|
|
1736
|
+
"serde_urlencoded",
|
|
1737
|
+
"sync_wrapper",
|
|
1738
|
+
"tokio",
|
|
1739
|
+
"tokio-native-tls",
|
|
1740
|
+
"tokio-util",
|
|
1741
|
+
"tower",
|
|
1742
|
+
"tower-http 0.6.11",
|
|
1743
|
+
"tower-service",
|
|
1744
|
+
"url",
|
|
1745
|
+
"wasm-bindgen",
|
|
1746
|
+
"wasm-bindgen-futures",
|
|
1747
|
+
"wasm-streams",
|
|
1748
|
+
"web-sys",
|
|
1749
|
+
]
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "ring"
|
|
1753
|
+
version = "0.17.14"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1756
|
+
dependencies = [
|
|
1757
|
+
"cc",
|
|
1758
|
+
"cfg-if",
|
|
1759
|
+
"getrandom 0.2.17",
|
|
1760
|
+
"libc",
|
|
1761
|
+
"untrusted",
|
|
1762
|
+
"windows-sys 0.52.0",
|
|
1763
|
+
]
|
|
1764
|
+
|
|
1765
|
+
[[package]]
|
|
1766
|
+
name = "rusqlite"
|
|
1767
|
+
version = "0.31.0"
|
|
1768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
+
checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
|
|
1770
|
+
dependencies = [
|
|
1771
|
+
"bitflags",
|
|
1772
|
+
"fallible-iterator",
|
|
1773
|
+
"fallible-streaming-iterator",
|
|
1774
|
+
"hashlink",
|
|
1775
|
+
"libsqlite3-sys",
|
|
1776
|
+
"smallvec",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "rustc-hash"
|
|
1781
|
+
version = "1.1.0"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "rustix"
|
|
1787
|
+
version = "0.38.44"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
1790
|
+
dependencies = [
|
|
1791
|
+
"bitflags",
|
|
1792
|
+
"errno",
|
|
1793
|
+
"libc",
|
|
1794
|
+
"linux-raw-sys 0.4.15",
|
|
1795
|
+
"windows-sys 0.52.0",
|
|
1796
|
+
]
|
|
1797
|
+
|
|
1798
|
+
[[package]]
|
|
1799
|
+
name = "rustix"
|
|
1800
|
+
version = "1.1.4"
|
|
1801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1803
|
+
dependencies = [
|
|
1804
|
+
"bitflags",
|
|
1805
|
+
"errno",
|
|
1806
|
+
"libc",
|
|
1807
|
+
"linux-raw-sys 0.12.1",
|
|
1808
|
+
"windows-sys 0.61.2",
|
|
1809
|
+
]
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "rustls"
|
|
1813
|
+
version = "0.23.41"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"once_cell",
|
|
1818
|
+
"rustls-pki-types",
|
|
1819
|
+
"rustls-webpki",
|
|
1820
|
+
"subtle",
|
|
1821
|
+
"zeroize",
|
|
1822
|
+
]
|
|
1823
|
+
|
|
1824
|
+
[[package]]
|
|
1825
|
+
name = "rustls-pki-types"
|
|
1826
|
+
version = "1.15.0"
|
|
1827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1828
|
+
checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
|
|
1829
|
+
dependencies = [
|
|
1830
|
+
"zeroize",
|
|
1831
|
+
]
|
|
1832
|
+
|
|
1833
|
+
[[package]]
|
|
1834
|
+
name = "rustls-webpki"
|
|
1835
|
+
version = "0.103.13"
|
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1838
|
+
dependencies = [
|
|
1839
|
+
"ring",
|
|
1840
|
+
"rustls-pki-types",
|
|
1841
|
+
"untrusted",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "rustversion"
|
|
1846
|
+
version = "1.0.22"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "ryu"
|
|
1852
|
+
version = "1.0.23"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "same-file"
|
|
1858
|
+
version = "1.0.6"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"winapi-util",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "schannel"
|
|
1867
|
+
version = "0.1.29"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"windows-sys 0.61.2",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "scopeguard"
|
|
1876
|
+
version = "1.2.0"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "security-framework"
|
|
1882
|
+
version = "3.7.0"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1885
|
+
dependencies = [
|
|
1886
|
+
"bitflags",
|
|
1887
|
+
"core-foundation 0.10.1",
|
|
1888
|
+
"core-foundation-sys",
|
|
1889
|
+
"libc",
|
|
1890
|
+
"security-framework-sys",
|
|
1891
|
+
]
|
|
1892
|
+
|
|
1893
|
+
[[package]]
|
|
1894
|
+
name = "security-framework-sys"
|
|
1895
|
+
version = "2.17.0"
|
|
1896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1898
|
+
dependencies = [
|
|
1899
|
+
"core-foundation-sys",
|
|
1900
|
+
"libc",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "serde"
|
|
1905
|
+
version = "1.0.228"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"serde_core",
|
|
1910
|
+
"serde_derive",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "serde_core"
|
|
1915
|
+
version = "1.0.228"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1918
|
+
dependencies = [
|
|
1919
|
+
"serde_derive",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "serde_derive"
|
|
1924
|
+
version = "1.0.228"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"proc-macro2",
|
|
1929
|
+
"quote",
|
|
1930
|
+
"syn",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "serde_json"
|
|
1935
|
+
version = "1.0.150"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1938
|
+
dependencies = [
|
|
1939
|
+
"itoa",
|
|
1940
|
+
"memchr",
|
|
1941
|
+
"serde",
|
|
1942
|
+
"serde_core",
|
|
1943
|
+
"zmij",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "serde_path_to_error"
|
|
1948
|
+
version = "0.1.20"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"itoa",
|
|
1953
|
+
"serde",
|
|
1954
|
+
"serde_core",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "serde_urlencoded"
|
|
1959
|
+
version = "0.7.1"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"form_urlencoded",
|
|
1964
|
+
"itoa",
|
|
1965
|
+
"ryu",
|
|
1966
|
+
"serde",
|
|
1967
|
+
]
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "serde_yaml"
|
|
1971
|
+
version = "0.9.34+deprecated"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1974
|
+
dependencies = [
|
|
1975
|
+
"indexmap",
|
|
1976
|
+
"itoa",
|
|
1977
|
+
"ryu",
|
|
1978
|
+
"serde",
|
|
1979
|
+
"unsafe-libyaml",
|
|
1980
|
+
]
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "sharded-slab"
|
|
1984
|
+
version = "0.1.7"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1987
|
+
dependencies = [
|
|
1988
|
+
"lazy_static",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "shlex"
|
|
1993
|
+
version = "2.0.1"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "signal-hook"
|
|
1999
|
+
version = "0.3.18"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
2002
|
+
dependencies = [
|
|
2003
|
+
"libc",
|
|
2004
|
+
"signal-hook-registry",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "signal-hook-mio"
|
|
2009
|
+
version = "0.2.5"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"libc",
|
|
2014
|
+
"mio",
|
|
2015
|
+
"signal-hook",
|
|
2016
|
+
]
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "signal-hook-registry"
|
|
2020
|
+
version = "1.4.8"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2023
|
+
dependencies = [
|
|
2024
|
+
"errno",
|
|
2025
|
+
"libc",
|
|
2026
|
+
]
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "slab"
|
|
2030
|
+
version = "0.4.12"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "smallvec"
|
|
2036
|
+
version = "1.15.2"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "socket2"
|
|
2042
|
+
version = "0.6.4"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"libc",
|
|
2047
|
+
"windows-sys 0.61.2",
|
|
2048
|
+
]
|
|
2049
|
+
|
|
2050
|
+
[[package]]
|
|
2051
|
+
name = "stable_deref_trait"
|
|
2052
|
+
version = "1.2.1"
|
|
2053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2055
|
+
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "static_assertions"
|
|
2058
|
+
version = "1.1.0"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "streaming-iterator"
|
|
2064
|
+
version = "0.1.9"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
|
2067
|
+
|
|
2068
|
+
[[package]]
|
|
2069
|
+
name = "strsim"
|
|
2070
|
+
version = "0.11.1"
|
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "strum"
|
|
2076
|
+
version = "0.26.3"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
2079
|
+
dependencies = [
|
|
2080
|
+
"strum_macros",
|
|
2081
|
+
]
|
|
2082
|
+
|
|
2083
|
+
[[package]]
|
|
2084
|
+
name = "strum_macros"
|
|
2085
|
+
version = "0.26.4"
|
|
2086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2087
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
2088
|
+
dependencies = [
|
|
2089
|
+
"heck",
|
|
2090
|
+
"proc-macro2",
|
|
2091
|
+
"quote",
|
|
2092
|
+
"rustversion",
|
|
2093
|
+
"syn",
|
|
2094
|
+
]
|
|
2095
|
+
|
|
2096
|
+
[[package]]
|
|
2097
|
+
name = "subtle"
|
|
2098
|
+
version = "2.6.1"
|
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "syn"
|
|
2104
|
+
version = "2.0.118"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
2107
|
+
dependencies = [
|
|
2108
|
+
"proc-macro2",
|
|
2109
|
+
"quote",
|
|
2110
|
+
"unicode-ident",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "sync_wrapper"
|
|
2115
|
+
version = "1.0.2"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"futures-core",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "synstructure"
|
|
2124
|
+
version = "0.13.2"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"proc-macro2",
|
|
2129
|
+
"quote",
|
|
2130
|
+
"syn",
|
|
2131
|
+
]
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "system-configuration"
|
|
2135
|
+
version = "0.7.0"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
2138
|
+
dependencies = [
|
|
2139
|
+
"bitflags",
|
|
2140
|
+
"core-foundation 0.9.4",
|
|
2141
|
+
"system-configuration-sys",
|
|
2142
|
+
]
|
|
2143
|
+
|
|
2144
|
+
[[package]]
|
|
2145
|
+
name = "system-configuration-sys"
|
|
2146
|
+
version = "0.6.0"
|
|
2147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
2149
|
+
dependencies = [
|
|
2150
|
+
"core-foundation-sys",
|
|
2151
|
+
"libc",
|
|
2152
|
+
]
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "target-lexicon"
|
|
2156
|
+
version = "0.13.5"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "tempfile"
|
|
2162
|
+
version = "3.27.0"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2165
|
+
dependencies = [
|
|
2166
|
+
"fastrand",
|
|
2167
|
+
"getrandom 0.4.3",
|
|
2168
|
+
"once_cell",
|
|
2169
|
+
"rustix 1.1.4",
|
|
2170
|
+
"windows-sys 0.61.2",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "thiserror"
|
|
2175
|
+
version = "1.0.69"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"thiserror-impl 1.0.69",
|
|
2180
|
+
]
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "thiserror"
|
|
2184
|
+
version = "2.0.18"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2187
|
+
dependencies = [
|
|
2188
|
+
"thiserror-impl 2.0.18",
|
|
2189
|
+
]
|
|
2190
|
+
|
|
2191
|
+
[[package]]
|
|
2192
|
+
name = "thiserror-impl"
|
|
2193
|
+
version = "1.0.69"
|
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2195
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2196
|
+
dependencies = [
|
|
2197
|
+
"proc-macro2",
|
|
2198
|
+
"quote",
|
|
2199
|
+
"syn",
|
|
2200
|
+
]
|
|
2201
|
+
|
|
2202
|
+
[[package]]
|
|
2203
|
+
name = "thiserror-impl"
|
|
2204
|
+
version = "2.0.18"
|
|
2205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2207
|
+
dependencies = [
|
|
2208
|
+
"proc-macro2",
|
|
2209
|
+
"quote",
|
|
2210
|
+
"syn",
|
|
2211
|
+
]
|
|
2212
|
+
|
|
2213
|
+
[[package]]
|
|
2214
|
+
name = "thread_local"
|
|
2215
|
+
version = "1.1.9"
|
|
2216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2218
|
+
dependencies = [
|
|
2219
|
+
"cfg-if",
|
|
2220
|
+
]
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "tiktoken-rs"
|
|
2224
|
+
version = "0.6.0"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "44075987ee2486402f0808505dd65692163d243a337fc54363d49afac41087f6"
|
|
2227
|
+
dependencies = [
|
|
2228
|
+
"anyhow",
|
|
2229
|
+
"base64 0.21.7",
|
|
2230
|
+
"bstr",
|
|
2231
|
+
"fancy-regex",
|
|
2232
|
+
"lazy_static",
|
|
2233
|
+
"parking_lot",
|
|
2234
|
+
"regex",
|
|
2235
|
+
"rustc-hash",
|
|
2236
|
+
]
|
|
2237
|
+
|
|
2238
|
+
[[package]]
|
|
2239
|
+
name = "tinystr"
|
|
2240
|
+
version = "0.8.3"
|
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2243
|
+
dependencies = [
|
|
2244
|
+
"displaydoc",
|
|
2245
|
+
"zerovec",
|
|
2246
|
+
]
|
|
2247
|
+
|
|
2248
|
+
[[package]]
|
|
2249
|
+
name = "tinytemplate"
|
|
2250
|
+
version = "1.2.1"
|
|
2251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2253
|
+
dependencies = [
|
|
2254
|
+
"serde",
|
|
2255
|
+
"serde_json",
|
|
2256
|
+
]
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "tokio"
|
|
2260
|
+
version = "1.52.3"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
2263
|
+
dependencies = [
|
|
2264
|
+
"bytes",
|
|
2265
|
+
"libc",
|
|
2266
|
+
"mio",
|
|
2267
|
+
"parking_lot",
|
|
2268
|
+
"pin-project-lite",
|
|
2269
|
+
"signal-hook-registry",
|
|
2270
|
+
"socket2",
|
|
2271
|
+
"tokio-macros",
|
|
2272
|
+
"windows-sys 0.61.2",
|
|
2273
|
+
]
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "tokio-macros"
|
|
2277
|
+
version = "2.7.0"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
2280
|
+
dependencies = [
|
|
2281
|
+
"proc-macro2",
|
|
2282
|
+
"quote",
|
|
2283
|
+
"syn",
|
|
2284
|
+
]
|
|
2285
|
+
|
|
2286
|
+
[[package]]
|
|
2287
|
+
name = "tokio-native-tls"
|
|
2288
|
+
version = "0.3.1"
|
|
2289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
2291
|
+
dependencies = [
|
|
2292
|
+
"native-tls",
|
|
2293
|
+
"tokio",
|
|
2294
|
+
]
|
|
2295
|
+
|
|
2296
|
+
[[package]]
|
|
2297
|
+
name = "tokio-rustls"
|
|
2298
|
+
version = "0.26.4"
|
|
2299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2301
|
+
dependencies = [
|
|
2302
|
+
"rustls",
|
|
2303
|
+
"tokio",
|
|
2304
|
+
]
|
|
2305
|
+
|
|
2306
|
+
[[package]]
|
|
2307
|
+
name = "tokio-stream"
|
|
2308
|
+
version = "0.1.18"
|
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
2311
|
+
dependencies = [
|
|
2312
|
+
"futures-core",
|
|
2313
|
+
"pin-project-lite",
|
|
2314
|
+
"tokio",
|
|
2315
|
+
]
|
|
2316
|
+
|
|
2317
|
+
[[package]]
|
|
2318
|
+
name = "tokio-util"
|
|
2319
|
+
version = "0.7.18"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2322
|
+
dependencies = [
|
|
2323
|
+
"bytes",
|
|
2324
|
+
"futures-core",
|
|
2325
|
+
"futures-sink",
|
|
2326
|
+
"pin-project-lite",
|
|
2327
|
+
"tokio",
|
|
2328
|
+
]
|
|
2329
|
+
|
|
2330
|
+
[[package]]
|
|
2331
|
+
name = "tower"
|
|
2332
|
+
version = "0.5.3"
|
|
2333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2335
|
+
dependencies = [
|
|
2336
|
+
"futures-core",
|
|
2337
|
+
"futures-util",
|
|
2338
|
+
"pin-project-lite",
|
|
2339
|
+
"sync_wrapper",
|
|
2340
|
+
"tokio",
|
|
2341
|
+
"tower-layer",
|
|
2342
|
+
"tower-service",
|
|
2343
|
+
"tracing",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "tower-http"
|
|
2348
|
+
version = "0.5.2"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"bitflags",
|
|
2353
|
+
"bytes",
|
|
2354
|
+
"http",
|
|
2355
|
+
"http-body",
|
|
2356
|
+
"http-body-util",
|
|
2357
|
+
"pin-project-lite",
|
|
2358
|
+
"tower-layer",
|
|
2359
|
+
"tower-service",
|
|
2360
|
+
"tracing",
|
|
2361
|
+
]
|
|
2362
|
+
|
|
2363
|
+
[[package]]
|
|
2364
|
+
name = "tower-http"
|
|
2365
|
+
version = "0.6.11"
|
|
2366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
2368
|
+
dependencies = [
|
|
2369
|
+
"bitflags",
|
|
2370
|
+
"bytes",
|
|
2371
|
+
"futures-util",
|
|
2372
|
+
"http",
|
|
2373
|
+
"http-body",
|
|
2374
|
+
"pin-project-lite",
|
|
2375
|
+
"tower",
|
|
2376
|
+
"tower-layer",
|
|
2377
|
+
"tower-service",
|
|
2378
|
+
"url",
|
|
2379
|
+
]
|
|
2380
|
+
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "tower-layer"
|
|
2383
|
+
version = "0.3.3"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2386
|
+
|
|
2387
|
+
[[package]]
|
|
2388
|
+
name = "tower-service"
|
|
2389
|
+
version = "0.3.3"
|
|
2390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2392
|
+
|
|
2393
|
+
[[package]]
|
|
2394
|
+
name = "tracing"
|
|
2395
|
+
version = "0.1.44"
|
|
2396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2397
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2398
|
+
dependencies = [
|
|
2399
|
+
"log",
|
|
2400
|
+
"pin-project-lite",
|
|
2401
|
+
"tracing-attributes",
|
|
2402
|
+
"tracing-core",
|
|
2403
|
+
]
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "tracing-attributes"
|
|
2407
|
+
version = "0.1.31"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2410
|
+
dependencies = [
|
|
2411
|
+
"proc-macro2",
|
|
2412
|
+
"quote",
|
|
2413
|
+
"syn",
|
|
2414
|
+
]
|
|
2415
|
+
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "tracing-core"
|
|
2418
|
+
version = "0.1.36"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2421
|
+
dependencies = [
|
|
2422
|
+
"once_cell",
|
|
2423
|
+
"valuable",
|
|
2424
|
+
]
|
|
2425
|
+
|
|
2426
|
+
[[package]]
|
|
2427
|
+
name = "tracing-log"
|
|
2428
|
+
version = "0.2.0"
|
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2431
|
+
dependencies = [
|
|
2432
|
+
"log",
|
|
2433
|
+
"once_cell",
|
|
2434
|
+
"tracing-core",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "tracing-serde"
|
|
2439
|
+
version = "0.2.0"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"serde",
|
|
2444
|
+
"tracing-core",
|
|
2445
|
+
]
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "tracing-subscriber"
|
|
2449
|
+
version = "0.3.23"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
2452
|
+
dependencies = [
|
|
2453
|
+
"matchers",
|
|
2454
|
+
"nu-ansi-term",
|
|
2455
|
+
"once_cell",
|
|
2456
|
+
"regex-automata",
|
|
2457
|
+
"serde",
|
|
2458
|
+
"serde_json",
|
|
2459
|
+
"sharded-slab",
|
|
2460
|
+
"smallvec",
|
|
2461
|
+
"thread_local",
|
|
2462
|
+
"tracing",
|
|
2463
|
+
"tracing-core",
|
|
2464
|
+
"tracing-log",
|
|
2465
|
+
"tracing-serde",
|
|
2466
|
+
]
|
|
2467
|
+
|
|
2468
|
+
[[package]]
|
|
2469
|
+
name = "tree-sitter"
|
|
2470
|
+
version = "0.24.7"
|
|
2471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2472
|
+
checksum = "a5387dffa7ffc7d2dae12b50c6f7aab8ff79d6210147c6613561fc3d474c6f75"
|
|
2473
|
+
dependencies = [
|
|
2474
|
+
"cc",
|
|
2475
|
+
"regex",
|
|
2476
|
+
"regex-syntax",
|
|
2477
|
+
"streaming-iterator",
|
|
2478
|
+
"tree-sitter-language",
|
|
2479
|
+
]
|
|
2480
|
+
|
|
2481
|
+
[[package]]
|
|
2482
|
+
name = "tree-sitter-javascript"
|
|
2483
|
+
version = "0.23.1"
|
|
2484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
+
checksum = "bf40bf599e0416c16c125c3cec10ee5ddc7d1bb8b0c60fa5c4de249ad34dc1b1"
|
|
2486
|
+
dependencies = [
|
|
2487
|
+
"cc",
|
|
2488
|
+
"tree-sitter-language",
|
|
2489
|
+
]
|
|
2490
|
+
|
|
2491
|
+
[[package]]
|
|
2492
|
+
name = "tree-sitter-language"
|
|
2493
|
+
version = "0.1.7"
|
|
2494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
+
checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
|
|
2496
|
+
|
|
2497
|
+
[[package]]
|
|
2498
|
+
name = "tree-sitter-python"
|
|
2499
|
+
version = "0.23.6"
|
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2501
|
+
checksum = "3d065aaa27f3aaceaf60c1f0e0ac09e1cb9eb8ed28e7bcdaa52129cffc7f4b04"
|
|
2502
|
+
dependencies = [
|
|
2503
|
+
"cc",
|
|
2504
|
+
"tree-sitter-language",
|
|
2505
|
+
]
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "tree-sitter-rust"
|
|
2509
|
+
version = "0.23.3"
|
|
2510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
+
checksum = "ca8ccb3e3a3495c8a943f6c3fd24c3804c471fd7f4f16087623c7fa4c0068e8a"
|
|
2512
|
+
dependencies = [
|
|
2513
|
+
"cc",
|
|
2514
|
+
"tree-sitter-language",
|
|
2515
|
+
]
|
|
2516
|
+
|
|
2517
|
+
[[package]]
|
|
2518
|
+
name = "try-lock"
|
|
2519
|
+
version = "0.2.5"
|
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2522
|
+
|
|
2523
|
+
[[package]]
|
|
2524
|
+
name = "unicode-ident"
|
|
2525
|
+
version = "1.0.24"
|
|
2526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2527
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2528
|
+
|
|
2529
|
+
[[package]]
|
|
2530
|
+
name = "unicode-segmentation"
|
|
2531
|
+
version = "1.13.3"
|
|
2532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2533
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
2534
|
+
|
|
2535
|
+
[[package]]
|
|
2536
|
+
name = "unicode-truncate"
|
|
2537
|
+
version = "1.1.0"
|
|
2538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
+
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
|
|
2540
|
+
dependencies = [
|
|
2541
|
+
"itertools 0.13.0",
|
|
2542
|
+
"unicode-segmentation",
|
|
2543
|
+
"unicode-width",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "unicode-width"
|
|
2548
|
+
version = "0.1.14"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
2551
|
+
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "unsafe-libyaml"
|
|
2554
|
+
version = "0.2.11"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "untrusted"
|
|
2560
|
+
version = "0.9.0"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2563
|
+
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "url"
|
|
2566
|
+
version = "2.5.8"
|
|
2567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2569
|
+
dependencies = [
|
|
2570
|
+
"form_urlencoded",
|
|
2571
|
+
"idna",
|
|
2572
|
+
"percent-encoding",
|
|
2573
|
+
"serde",
|
|
2574
|
+
]
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "utf8_iter"
|
|
2578
|
+
version = "1.0.4"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "uuid"
|
|
2584
|
+
version = "1.23.4"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
|
|
2587
|
+
dependencies = [
|
|
2588
|
+
"getrandom 0.4.3",
|
|
2589
|
+
"js-sys",
|
|
2590
|
+
"wasm-bindgen",
|
|
2591
|
+
]
|
|
2592
|
+
|
|
2593
|
+
[[package]]
|
|
2594
|
+
name = "valuable"
|
|
2595
|
+
version = "0.1.1"
|
|
2596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "vcpkg"
|
|
2601
|
+
version = "0.2.15"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2604
|
+
|
|
2605
|
+
[[package]]
|
|
2606
|
+
name = "version_check"
|
|
2607
|
+
version = "0.9.5"
|
|
2608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2610
|
+
|
|
2611
|
+
[[package]]
|
|
2612
|
+
name = "walkdir"
|
|
2613
|
+
version = "2.5.0"
|
|
2614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2616
|
+
dependencies = [
|
|
2617
|
+
"same-file",
|
|
2618
|
+
"winapi-util",
|
|
2619
|
+
]
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "want"
|
|
2623
|
+
version = "0.3.1"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2626
|
+
dependencies = [
|
|
2627
|
+
"try-lock",
|
|
2628
|
+
]
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "wasi"
|
|
2632
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "wasm-bindgen"
|
|
2638
|
+
version = "0.2.126"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"cfg-if",
|
|
2643
|
+
"once_cell",
|
|
2644
|
+
"rustversion",
|
|
2645
|
+
"wasm-bindgen-macro",
|
|
2646
|
+
"wasm-bindgen-shared",
|
|
2647
|
+
]
|
|
2648
|
+
|
|
2649
|
+
[[package]]
|
|
2650
|
+
name = "wasm-bindgen-futures"
|
|
2651
|
+
version = "0.4.76"
|
|
2652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
2654
|
+
dependencies = [
|
|
2655
|
+
"js-sys",
|
|
2656
|
+
"wasm-bindgen",
|
|
2657
|
+
]
|
|
2658
|
+
|
|
2659
|
+
[[package]]
|
|
2660
|
+
name = "wasm-bindgen-macro"
|
|
2661
|
+
version = "0.2.126"
|
|
2662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2663
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
2664
|
+
dependencies = [
|
|
2665
|
+
"quote",
|
|
2666
|
+
"wasm-bindgen-macro-support",
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "wasm-bindgen-macro-support"
|
|
2671
|
+
version = "0.2.126"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
2674
|
+
dependencies = [
|
|
2675
|
+
"bumpalo",
|
|
2676
|
+
"proc-macro2",
|
|
2677
|
+
"quote",
|
|
2678
|
+
"syn",
|
|
2679
|
+
"wasm-bindgen-shared",
|
|
2680
|
+
]
|
|
2681
|
+
|
|
2682
|
+
[[package]]
|
|
2683
|
+
name = "wasm-bindgen-shared"
|
|
2684
|
+
version = "0.2.126"
|
|
2685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
2687
|
+
dependencies = [
|
|
2688
|
+
"unicode-ident",
|
|
2689
|
+
]
|
|
2690
|
+
|
|
2691
|
+
[[package]]
|
|
2692
|
+
name = "wasm-streams"
|
|
2693
|
+
version = "0.4.2"
|
|
2694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2695
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
2696
|
+
dependencies = [
|
|
2697
|
+
"futures-util",
|
|
2698
|
+
"js-sys",
|
|
2699
|
+
"wasm-bindgen",
|
|
2700
|
+
"wasm-bindgen-futures",
|
|
2701
|
+
"web-sys",
|
|
2702
|
+
]
|
|
2703
|
+
|
|
2704
|
+
[[package]]
|
|
2705
|
+
name = "web-sys"
|
|
2706
|
+
version = "0.3.103"
|
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
2709
|
+
dependencies = [
|
|
2710
|
+
"js-sys",
|
|
2711
|
+
"wasm-bindgen",
|
|
2712
|
+
]
|
|
2713
|
+
|
|
2714
|
+
[[package]]
|
|
2715
|
+
name = "which"
|
|
2716
|
+
version = "4.4.2"
|
|
2717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2718
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
2719
|
+
dependencies = [
|
|
2720
|
+
"either",
|
|
2721
|
+
"home",
|
|
2722
|
+
"once_cell",
|
|
2723
|
+
"rustix 0.38.44",
|
|
2724
|
+
]
|
|
2725
|
+
|
|
2726
|
+
[[package]]
|
|
2727
|
+
name = "winapi"
|
|
2728
|
+
version = "0.3.9"
|
|
2729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2730
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2731
|
+
dependencies = [
|
|
2732
|
+
"winapi-i686-pc-windows-gnu",
|
|
2733
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2734
|
+
]
|
|
2735
|
+
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2738
|
+
version = "0.4.0"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2741
|
+
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "winapi-util"
|
|
2744
|
+
version = "0.1.11"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2747
|
+
dependencies = [
|
|
2748
|
+
"windows-sys 0.61.2",
|
|
2749
|
+
]
|
|
2750
|
+
|
|
2751
|
+
[[package]]
|
|
2752
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2753
|
+
version = "0.4.0"
|
|
2754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "windows-link"
|
|
2759
|
+
version = "0.2.1"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2762
|
+
|
|
2763
|
+
[[package]]
|
|
2764
|
+
name = "windows-registry"
|
|
2765
|
+
version = "0.6.1"
|
|
2766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2767
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
2768
|
+
dependencies = [
|
|
2769
|
+
"windows-link",
|
|
2770
|
+
"windows-result",
|
|
2771
|
+
"windows-strings",
|
|
2772
|
+
]
|
|
2773
|
+
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "windows-result"
|
|
2776
|
+
version = "0.4.1"
|
|
2777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2779
|
+
dependencies = [
|
|
2780
|
+
"windows-link",
|
|
2781
|
+
]
|
|
2782
|
+
|
|
2783
|
+
[[package]]
|
|
2784
|
+
name = "windows-strings"
|
|
2785
|
+
version = "0.5.1"
|
|
2786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2787
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2788
|
+
dependencies = [
|
|
2789
|
+
"windows-link",
|
|
2790
|
+
]
|
|
2791
|
+
|
|
2792
|
+
[[package]]
|
|
2793
|
+
name = "windows-sys"
|
|
2794
|
+
version = "0.48.0"
|
|
2795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2797
|
+
dependencies = [
|
|
2798
|
+
"windows-targets 0.48.5",
|
|
2799
|
+
]
|
|
2800
|
+
|
|
2801
|
+
[[package]]
|
|
2802
|
+
name = "windows-sys"
|
|
2803
|
+
version = "0.52.0"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"windows-targets 0.52.6",
|
|
2808
|
+
]
|
|
2809
|
+
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "windows-sys"
|
|
2812
|
+
version = "0.61.2"
|
|
2813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2815
|
+
dependencies = [
|
|
2816
|
+
"windows-link",
|
|
2817
|
+
]
|
|
2818
|
+
|
|
2819
|
+
[[package]]
|
|
2820
|
+
name = "windows-targets"
|
|
2821
|
+
version = "0.48.5"
|
|
2822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2824
|
+
dependencies = [
|
|
2825
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
2826
|
+
"windows_aarch64_msvc 0.48.5",
|
|
2827
|
+
"windows_i686_gnu 0.48.5",
|
|
2828
|
+
"windows_i686_msvc 0.48.5",
|
|
2829
|
+
"windows_x86_64_gnu 0.48.5",
|
|
2830
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
2831
|
+
"windows_x86_64_msvc 0.48.5",
|
|
2832
|
+
]
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "windows-targets"
|
|
2836
|
+
version = "0.52.6"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2839
|
+
dependencies = [
|
|
2840
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2841
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2842
|
+
"windows_i686_gnu 0.52.6",
|
|
2843
|
+
"windows_i686_gnullvm",
|
|
2844
|
+
"windows_i686_msvc 0.52.6",
|
|
2845
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2846
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2847
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2848
|
+
]
|
|
2849
|
+
|
|
2850
|
+
[[package]]
|
|
2851
|
+
name = "windows_aarch64_gnullvm"
|
|
2852
|
+
version = "0.48.5"
|
|
2853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2855
|
+
|
|
2856
|
+
[[package]]
|
|
2857
|
+
name = "windows_aarch64_gnullvm"
|
|
2858
|
+
version = "0.52.6"
|
|
2859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "windows_aarch64_msvc"
|
|
2864
|
+
version = "0.48.5"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "windows_aarch64_msvc"
|
|
2870
|
+
version = "0.52.6"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "windows_i686_gnu"
|
|
2876
|
+
version = "0.48.5"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2879
|
+
|
|
2880
|
+
[[package]]
|
|
2881
|
+
name = "windows_i686_gnu"
|
|
2882
|
+
version = "0.52.6"
|
|
2883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "windows_i686_gnullvm"
|
|
2888
|
+
version = "0.52.6"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2891
|
+
|
|
2892
|
+
[[package]]
|
|
2893
|
+
name = "windows_i686_msvc"
|
|
2894
|
+
version = "0.48.5"
|
|
2895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "windows_i686_msvc"
|
|
2900
|
+
version = "0.52.6"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "windows_x86_64_gnu"
|
|
2906
|
+
version = "0.48.5"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "windows_x86_64_gnu"
|
|
2912
|
+
version = "0.52.6"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2915
|
+
|
|
2916
|
+
[[package]]
|
|
2917
|
+
name = "windows_x86_64_gnullvm"
|
|
2918
|
+
version = "0.48.5"
|
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2921
|
+
|
|
2922
|
+
[[package]]
|
|
2923
|
+
name = "windows_x86_64_gnullvm"
|
|
2924
|
+
version = "0.52.6"
|
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2927
|
+
|
|
2928
|
+
[[package]]
|
|
2929
|
+
name = "windows_x86_64_msvc"
|
|
2930
|
+
version = "0.48.5"
|
|
2931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2933
|
+
|
|
2934
|
+
[[package]]
|
|
2935
|
+
name = "windows_x86_64_msvc"
|
|
2936
|
+
version = "0.52.6"
|
|
2937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2939
|
+
|
|
2940
|
+
[[package]]
|
|
2941
|
+
name = "writeable"
|
|
2942
|
+
version = "0.6.3"
|
|
2943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2944
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2945
|
+
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "yoke"
|
|
2948
|
+
version = "0.8.3"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2951
|
+
dependencies = [
|
|
2952
|
+
"stable_deref_trait",
|
|
2953
|
+
"yoke-derive",
|
|
2954
|
+
"zerofrom",
|
|
2955
|
+
]
|
|
2956
|
+
|
|
2957
|
+
[[package]]
|
|
2958
|
+
name = "yoke-derive"
|
|
2959
|
+
version = "0.8.2"
|
|
2960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2962
|
+
dependencies = [
|
|
2963
|
+
"proc-macro2",
|
|
2964
|
+
"quote",
|
|
2965
|
+
"syn",
|
|
2966
|
+
"synstructure",
|
|
2967
|
+
]
|
|
2968
|
+
|
|
2969
|
+
[[package]]
|
|
2970
|
+
name = "zerocopy"
|
|
2971
|
+
version = "0.8.52"
|
|
2972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
2974
|
+
dependencies = [
|
|
2975
|
+
"zerocopy-derive",
|
|
2976
|
+
]
|
|
2977
|
+
|
|
2978
|
+
[[package]]
|
|
2979
|
+
name = "zerocopy-derive"
|
|
2980
|
+
version = "0.8.52"
|
|
2981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
2983
|
+
dependencies = [
|
|
2984
|
+
"proc-macro2",
|
|
2985
|
+
"quote",
|
|
2986
|
+
"syn",
|
|
2987
|
+
]
|
|
2988
|
+
|
|
2989
|
+
[[package]]
|
|
2990
|
+
name = "zerofrom"
|
|
2991
|
+
version = "0.1.8"
|
|
2992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2994
|
+
dependencies = [
|
|
2995
|
+
"zerofrom-derive",
|
|
2996
|
+
]
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "zerofrom-derive"
|
|
3000
|
+
version = "0.1.7"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3003
|
+
dependencies = [
|
|
3004
|
+
"proc-macro2",
|
|
3005
|
+
"quote",
|
|
3006
|
+
"syn",
|
|
3007
|
+
"synstructure",
|
|
3008
|
+
]
|
|
3009
|
+
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "zeroize"
|
|
3012
|
+
version = "1.9.0"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
3015
|
+
|
|
3016
|
+
[[package]]
|
|
3017
|
+
name = "zerotrie"
|
|
3018
|
+
version = "0.2.4"
|
|
3019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3021
|
+
dependencies = [
|
|
3022
|
+
"displaydoc",
|
|
3023
|
+
"yoke",
|
|
3024
|
+
"zerofrom",
|
|
3025
|
+
]
|
|
3026
|
+
|
|
3027
|
+
[[package]]
|
|
3028
|
+
name = "zerovec"
|
|
3029
|
+
version = "0.11.6"
|
|
3030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3031
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3032
|
+
dependencies = [
|
|
3033
|
+
"yoke",
|
|
3034
|
+
"zerofrom",
|
|
3035
|
+
"zerovec-derive",
|
|
3036
|
+
]
|
|
3037
|
+
|
|
3038
|
+
[[package]]
|
|
3039
|
+
name = "zerovec-derive"
|
|
3040
|
+
version = "0.11.3"
|
|
3041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3043
|
+
dependencies = [
|
|
3044
|
+
"proc-macro2",
|
|
3045
|
+
"quote",
|
|
3046
|
+
"syn",
|
|
3047
|
+
]
|
|
3048
|
+
|
|
3049
|
+
[[package]]
|
|
3050
|
+
name = "zmij"
|
|
3051
|
+
version = "1.0.21"
|
|
3052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3053
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|