jscpd-rs 0.1.0
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.
- package/CHANGELOG.md +69 -0
- package/Cargo.lock +1323 -0
- package/Cargo.toml +54 -0
- package/LICENSE +21 -0
- package/README.md +372 -0
- package/docs/api-parity.md +49 -0
- package/docs/cloning-plan.md +281 -0
- package/docs/compat-baseline.md +535 -0
- package/docs/format-porting.md +86 -0
- package/docs/junior-task-template.md +62 -0
- package/docs/junior-workflow.md +87 -0
- package/docs/migrating-from-jscpd.md +193 -0
- package/docs/npm-release.md +116 -0
- package/docs/public-benchmark-suite.md +81 -0
- package/docs/release-checklist.md +200 -0
- package/docs/release-decisions.md +103 -0
- package/docs/release-readiness.md +51 -0
- package/docs/upstream-bugs.md +501 -0
- package/docs/upstream-issue-drafts.md +393 -0
- package/docs/user-guide.md +309 -0
- package/examples/dump_oxc_tokens.rs +112 -0
- package/examples/library_api.rs +42 -0
- package/npm/bin/jscpd-rs.js +6 -0
- package/npm/bin/jscpd-server.js +6 -0
- package/npm/lib/run-binary.js +68 -0
- package/npm/scripts/postinstall.js +50 -0
- package/package.json +53 -0
- package/skills/dry-refactoring/SKILL.md +63 -0
- package/skills/jscpd/SKILL.md +85 -0
- package/src/app.rs +512 -0
- package/src/bin/jscpd-server.rs +429 -0
- package/src/blame.rs +130 -0
- package/src/cli/config.rs +543 -0
- package/src/cli/parsing.rs +301 -0
- package/src/cli/tests.rs +543 -0
- package/src/cli.rs +671 -0
- package/src/detector/matching/secondary.rs +387 -0
- package/src/detector/matching.rs +274 -0
- package/src/detector/model.rs +190 -0
- package/src/detector/prepare.rs +71 -0
- package/src/detector/skip_local.rs +40 -0
- package/src/detector/statistics.rs +138 -0
- package/src/detector/store.rs +96 -0
- package/src/detector/tests.rs +238 -0
- package/src/detector.rs +265 -0
- package/src/files/discovery.rs +508 -0
- package/src/files/gitignore.rs +203 -0
- package/src/files/paths.rs +68 -0
- package/src/files/shebang.rs +106 -0
- package/src/files/tests.rs +523 -0
- package/src/files.rs +25 -0
- package/src/formats.rs +570 -0
- package/src/lib.rs +433 -0
- package/src/main.rs +26 -0
- package/src/report/ai.rs +125 -0
- package/src/report/badge.rs +238 -0
- package/src/report/console.rs +180 -0
- package/src/report/console_common.rs +37 -0
- package/src/report/console_full.rs +139 -0
- package/src/report/csv.rs +65 -0
- package/src/report/escape.rs +8 -0
- package/src/report/file_output.rs +28 -0
- package/src/report/html/assets.rs +47 -0
- package/src/report/html.rs +336 -0
- package/src/report/json.rs +119 -0
- package/src/report/markdown.rs +125 -0
- package/src/report/sarif.rs +302 -0
- package/src/report/silent.rs +22 -0
- package/src/report/source.rs +38 -0
- package/src/report/summary.rs +50 -0
- package/src/report/test_support.rs +133 -0
- package/src/report/threshold.rs +76 -0
- package/src/report/xcode.rs +90 -0
- package/src/report/xml.rs +119 -0
- package/src/report.rs +250 -0
- package/src/server/mcp.rs +942 -0
- package/src/server.rs +1081 -0
- package/src/tokenizer/apex.rs +97 -0
- package/src/tokenizer/blocks.rs +532 -0
- package/src/tokenizer/embedded.rs +106 -0
- package/src/tokenizer/generic.rs +511 -0
- package/src/tokenizer/hash.rs +27 -0
- package/src/tokenizer/ignore.rs +33 -0
- package/src/tokenizer/line_index.rs +33 -0
- package/src/tokenizer/markdown.rs +289 -0
- package/src/tokenizer/markup_attrs.rs +289 -0
- package/src/tokenizer/oxc/fallback.rs +275 -0
- package/src/tokenizer/oxc/jsx.rs +168 -0
- package/src/tokenizer/oxc/kind.rs +177 -0
- package/src/tokenizer/oxc/lexical.rs +67 -0
- package/src/tokenizer/oxc.rs +659 -0
- package/src/tokenizer/scan.rs +88 -0
- package/src/tokenizer/tap.rs +150 -0
- package/src/tokenizer/tests.rs +915 -0
- package/src/tokenizer.rs +328 -0
- package/src/verbose.rs +195 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,1323 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anyhow"
|
|
72
|
+
version = "1.0.102"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "atomic-waker"
|
|
78
|
+
version = "1.1.2"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "autocfg"
|
|
84
|
+
version = "1.5.1"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "axum"
|
|
90
|
+
version = "0.8.9"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"axum-core",
|
|
95
|
+
"bytes",
|
|
96
|
+
"form_urlencoded",
|
|
97
|
+
"futures-util",
|
|
98
|
+
"http",
|
|
99
|
+
"http-body",
|
|
100
|
+
"http-body-util",
|
|
101
|
+
"hyper",
|
|
102
|
+
"hyper-util",
|
|
103
|
+
"itoa",
|
|
104
|
+
"matchit",
|
|
105
|
+
"memchr",
|
|
106
|
+
"mime",
|
|
107
|
+
"percent-encoding",
|
|
108
|
+
"pin-project-lite",
|
|
109
|
+
"serde_core",
|
|
110
|
+
"serde_json",
|
|
111
|
+
"serde_path_to_error",
|
|
112
|
+
"serde_urlencoded",
|
|
113
|
+
"sync_wrapper",
|
|
114
|
+
"tokio",
|
|
115
|
+
"tower",
|
|
116
|
+
"tower-layer",
|
|
117
|
+
"tower-service",
|
|
118
|
+
"tracing",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "axum-core"
|
|
123
|
+
version = "0.5.6"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"bytes",
|
|
128
|
+
"futures-core",
|
|
129
|
+
"http",
|
|
130
|
+
"http-body",
|
|
131
|
+
"http-body-util",
|
|
132
|
+
"mime",
|
|
133
|
+
"pin-project-lite",
|
|
134
|
+
"sync_wrapper",
|
|
135
|
+
"tower-layer",
|
|
136
|
+
"tower-service",
|
|
137
|
+
"tracing",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "bitflags"
|
|
142
|
+
version = "2.11.1"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "bstr"
|
|
148
|
+
version = "1.12.1"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"memchr",
|
|
153
|
+
"serde",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "bytes"
|
|
158
|
+
version = "1.11.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "castaway"
|
|
164
|
+
version = "0.2.4"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"rustversion",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "cfg-if"
|
|
173
|
+
version = "1.0.4"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "clap"
|
|
179
|
+
version = "4.6.1"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"clap_builder",
|
|
184
|
+
"clap_derive",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "clap_builder"
|
|
189
|
+
version = "4.6.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"anstream",
|
|
194
|
+
"anstyle",
|
|
195
|
+
"clap_lex",
|
|
196
|
+
"strsim",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "clap_derive"
|
|
201
|
+
version = "4.6.1"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"heck",
|
|
206
|
+
"proc-macro2",
|
|
207
|
+
"quote",
|
|
208
|
+
"syn",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "clap_lex"
|
|
213
|
+
version = "1.1.0"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "colorchoice"
|
|
219
|
+
version = "1.0.5"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "compact_str"
|
|
225
|
+
version = "0.9.1"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"castaway",
|
|
230
|
+
"cfg-if",
|
|
231
|
+
"itoa",
|
|
232
|
+
"rustversion",
|
|
233
|
+
"ryu",
|
|
234
|
+
"static_assertions",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "cow-utils"
|
|
239
|
+
version = "0.1.3"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "crossbeam-deque"
|
|
245
|
+
version = "0.8.6"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"crossbeam-epoch",
|
|
250
|
+
"crossbeam-utils",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "crossbeam-epoch"
|
|
255
|
+
version = "0.9.18"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"crossbeam-utils",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "crossbeam-utils"
|
|
264
|
+
version = "0.8.21"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "deranged"
|
|
270
|
+
version = "0.5.8"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"powerfmt",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "dragonbox_ecma"
|
|
279
|
+
version = "0.1.12"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "either"
|
|
285
|
+
version = "1.16.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "fastrand"
|
|
291
|
+
version = "2.4.1"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "form_urlencoded"
|
|
297
|
+
version = "1.2.2"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"percent-encoding",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "futures-channel"
|
|
306
|
+
version = "0.3.32"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"futures-core",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "futures-core"
|
|
315
|
+
version = "0.3.32"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "futures-task"
|
|
321
|
+
version = "0.3.32"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "futures-util"
|
|
327
|
+
version = "0.3.32"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"futures-core",
|
|
332
|
+
"futures-task",
|
|
333
|
+
"pin-project-lite",
|
|
334
|
+
"slab",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "getrandom"
|
|
339
|
+
version = "0.2.17"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"cfg-if",
|
|
344
|
+
"libc",
|
|
345
|
+
"wasi",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "globset"
|
|
350
|
+
version = "0.4.18"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"aho-corasick",
|
|
355
|
+
"bstr",
|
|
356
|
+
"log",
|
|
357
|
+
"regex-automata",
|
|
358
|
+
"regex-syntax",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "hashbrown"
|
|
363
|
+
version = "0.17.1"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"allocator-api2",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "heck"
|
|
372
|
+
version = "0.5.0"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "http"
|
|
378
|
+
version = "1.4.1"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"bytes",
|
|
383
|
+
"itoa",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "http-body"
|
|
388
|
+
version = "1.0.1"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"bytes",
|
|
393
|
+
"http",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "http-body-util"
|
|
398
|
+
version = "0.1.3"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"bytes",
|
|
403
|
+
"futures-core",
|
|
404
|
+
"http",
|
|
405
|
+
"http-body",
|
|
406
|
+
"pin-project-lite",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "httparse"
|
|
411
|
+
version = "1.10.1"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "httpdate"
|
|
417
|
+
version = "1.0.3"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "hyper"
|
|
423
|
+
version = "1.10.1"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"atomic-waker",
|
|
428
|
+
"bytes",
|
|
429
|
+
"futures-channel",
|
|
430
|
+
"futures-core",
|
|
431
|
+
"http",
|
|
432
|
+
"http-body",
|
|
433
|
+
"httparse",
|
|
434
|
+
"httpdate",
|
|
435
|
+
"itoa",
|
|
436
|
+
"pin-project-lite",
|
|
437
|
+
"smallvec",
|
|
438
|
+
"tokio",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "hyper-util"
|
|
443
|
+
version = "0.1.20"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"bytes",
|
|
448
|
+
"http",
|
|
449
|
+
"http-body",
|
|
450
|
+
"hyper",
|
|
451
|
+
"pin-project-lite",
|
|
452
|
+
"tokio",
|
|
453
|
+
"tower-service",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "ignore"
|
|
458
|
+
version = "0.4.25"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"crossbeam-deque",
|
|
463
|
+
"globset",
|
|
464
|
+
"log",
|
|
465
|
+
"memchr",
|
|
466
|
+
"regex-automata",
|
|
467
|
+
"same-file",
|
|
468
|
+
"walkdir",
|
|
469
|
+
"winapi-util",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "is_terminal_polyfill"
|
|
474
|
+
version = "1.70.2"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "itoa"
|
|
480
|
+
version = "1.0.18"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "jscpd-rs"
|
|
486
|
+
version = "0.1.0"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"anyhow",
|
|
489
|
+
"axum",
|
|
490
|
+
"clap",
|
|
491
|
+
"form_urlencoded",
|
|
492
|
+
"getrandom",
|
|
493
|
+
"globset",
|
|
494
|
+
"ignore",
|
|
495
|
+
"oxc_allocator",
|
|
496
|
+
"oxc_parser",
|
|
497
|
+
"oxc_span",
|
|
498
|
+
"rayon",
|
|
499
|
+
"regex",
|
|
500
|
+
"rustc-hash",
|
|
501
|
+
"serde",
|
|
502
|
+
"serde_json",
|
|
503
|
+
"time",
|
|
504
|
+
"tokio",
|
|
505
|
+
"tower",
|
|
506
|
+
"xxhash-rust",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "libc"
|
|
511
|
+
version = "0.2.186"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "log"
|
|
517
|
+
version = "0.4.30"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "matchit"
|
|
523
|
+
version = "0.8.4"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "memchr"
|
|
529
|
+
version = "2.8.1"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "mime"
|
|
535
|
+
version = "0.3.17"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "mio"
|
|
541
|
+
version = "1.2.1"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"libc",
|
|
546
|
+
"wasi",
|
|
547
|
+
"windows-sys",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "nonmax"
|
|
552
|
+
version = "0.5.5"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "num-bigint"
|
|
558
|
+
version = "0.4.6"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"num-integer",
|
|
563
|
+
"num-traits",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "num-conv"
|
|
568
|
+
version = "0.2.2"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "num-integer"
|
|
574
|
+
version = "0.1.46"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"num-traits",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "num-traits"
|
|
583
|
+
version = "0.2.19"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"autocfg",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "once_cell"
|
|
592
|
+
version = "1.21.4"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "once_cell_polyfill"
|
|
598
|
+
version = "1.70.2"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "owo-colors"
|
|
604
|
+
version = "4.3.0"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "oxc-miette"
|
|
610
|
+
version = "2.7.1"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"cfg-if",
|
|
615
|
+
"owo-colors",
|
|
616
|
+
"oxc-miette-derive",
|
|
617
|
+
"textwrap",
|
|
618
|
+
"thiserror",
|
|
619
|
+
"unicode-segmentation",
|
|
620
|
+
"unicode-width",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "oxc-miette-derive"
|
|
625
|
+
version = "2.7.1"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"proc-macro2",
|
|
630
|
+
"quote",
|
|
631
|
+
"syn",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "oxc_allocator"
|
|
636
|
+
version = "0.133.0"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "5e900ccc598726485709ccee5caf11687db0fdce7a7f6ab5ca67ab99036347fd"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"allocator-api2",
|
|
641
|
+
"hashbrown",
|
|
642
|
+
"oxc_data_structures",
|
|
643
|
+
"rustc-hash",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "oxc_ast"
|
|
648
|
+
version = "0.133.0"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "e85f2b08a659b819c31ae798a4d8ed43d5d3e4b5d3c24fe244599ed602401c16"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"bitflags",
|
|
653
|
+
"oxc_allocator",
|
|
654
|
+
"oxc_ast_macros",
|
|
655
|
+
"oxc_data_structures",
|
|
656
|
+
"oxc_diagnostics",
|
|
657
|
+
"oxc_estree",
|
|
658
|
+
"oxc_regular_expression",
|
|
659
|
+
"oxc_span",
|
|
660
|
+
"oxc_str",
|
|
661
|
+
"oxc_syntax",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "oxc_ast_macros"
|
|
666
|
+
version = "0.133.0"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "b3baa8c4432cc17e36cb2aff37fc9e57e7defa5d0cf8fd4127d68ca474dd5edd"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"phf",
|
|
671
|
+
"proc-macro2",
|
|
672
|
+
"quote",
|
|
673
|
+
"syn",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "oxc_data_structures"
|
|
678
|
+
version = "0.133.0"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "9315b3a6c1560d176796921441fb91dc45ef3810fb2b98fedc040162f3a3a0d8"
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "oxc_diagnostics"
|
|
684
|
+
version = "0.133.0"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "a729e6dbb517aec94346685e769f960dbdd335523cf9c844ecca7731beb15e2c"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"cow-utils",
|
|
689
|
+
"oxc-miette",
|
|
690
|
+
"percent-encoding",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "oxc_ecmascript"
|
|
695
|
+
version = "0.133.0"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "6f803b86d86fd830075a6a7f7b84c59e93131367738c55b4e7526669eeb0cc70"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"cow-utils",
|
|
700
|
+
"num-bigint",
|
|
701
|
+
"num-traits",
|
|
702
|
+
"oxc_allocator",
|
|
703
|
+
"oxc_ast",
|
|
704
|
+
"oxc_regular_expression",
|
|
705
|
+
"oxc_span",
|
|
706
|
+
"oxc_syntax",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "oxc_estree"
|
|
711
|
+
version = "0.133.0"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "ad19053743d90699386a7783562185cc88a4a240a02406e005225a9ea07e4f3a"
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "oxc_index"
|
|
717
|
+
version = "4.1.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"nonmax",
|
|
722
|
+
"serde",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "oxc_parser"
|
|
727
|
+
version = "0.133.0"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "e5983baba9d73d319214c3d0492987f4b47cb75b916b0e428adb3b3695a728ae"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"bitflags",
|
|
732
|
+
"cow-utils",
|
|
733
|
+
"memchr",
|
|
734
|
+
"num-bigint",
|
|
735
|
+
"num-traits",
|
|
736
|
+
"oxc_allocator",
|
|
737
|
+
"oxc_ast",
|
|
738
|
+
"oxc_data_structures",
|
|
739
|
+
"oxc_diagnostics",
|
|
740
|
+
"oxc_ecmascript",
|
|
741
|
+
"oxc_regular_expression",
|
|
742
|
+
"oxc_span",
|
|
743
|
+
"oxc_str",
|
|
744
|
+
"oxc_syntax",
|
|
745
|
+
"rustc-hash",
|
|
746
|
+
"seq-macro",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "oxc_regular_expression"
|
|
751
|
+
version = "0.133.0"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "42bc4b6c29740a9de457f498b4e07c60af2c3acdc93cdc83a87b51f9c18b34b5"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"bitflags",
|
|
756
|
+
"oxc_allocator",
|
|
757
|
+
"oxc_ast_macros",
|
|
758
|
+
"oxc_diagnostics",
|
|
759
|
+
"oxc_span",
|
|
760
|
+
"oxc_str",
|
|
761
|
+
"phf",
|
|
762
|
+
"rustc-hash",
|
|
763
|
+
"unicode-id-start",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "oxc_span"
|
|
768
|
+
version = "0.133.0"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "d92507cc30d1b8abd38fc1368ef90a33d573e746a048adefaae7434ad1be91ff"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"compact_str",
|
|
773
|
+
"oxc-miette",
|
|
774
|
+
"oxc_allocator",
|
|
775
|
+
"oxc_ast_macros",
|
|
776
|
+
"oxc_estree",
|
|
777
|
+
"oxc_str",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "oxc_str"
|
|
782
|
+
version = "0.133.0"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "4c8413fd0d68722180b2a3568a73920330ae2674975336b35a9cceb691b6f3f2"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"compact_str",
|
|
787
|
+
"hashbrown",
|
|
788
|
+
"oxc_allocator",
|
|
789
|
+
"oxc_estree",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "oxc_syntax"
|
|
794
|
+
version = "0.133.0"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "db8ca91f5e39d6db686f3a75bdf01e2a44c05d24a554d22470073dd79462877b"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"bitflags",
|
|
799
|
+
"cow-utils",
|
|
800
|
+
"dragonbox_ecma",
|
|
801
|
+
"nonmax",
|
|
802
|
+
"oxc_allocator",
|
|
803
|
+
"oxc_ast_macros",
|
|
804
|
+
"oxc_estree",
|
|
805
|
+
"oxc_index",
|
|
806
|
+
"oxc_span",
|
|
807
|
+
"oxc_str",
|
|
808
|
+
"phf",
|
|
809
|
+
"unicode-id-start",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "percent-encoding"
|
|
814
|
+
version = "2.3.2"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "phf"
|
|
820
|
+
version = "0.13.1"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"phf_macros",
|
|
825
|
+
"phf_shared",
|
|
826
|
+
"serde",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "phf_generator"
|
|
831
|
+
version = "0.13.1"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"fastrand",
|
|
836
|
+
"phf_shared",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "phf_macros"
|
|
841
|
+
version = "0.13.1"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"phf_generator",
|
|
846
|
+
"phf_shared",
|
|
847
|
+
"proc-macro2",
|
|
848
|
+
"quote",
|
|
849
|
+
"syn",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "phf_shared"
|
|
854
|
+
version = "0.13.1"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"siphasher",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "pin-project-lite"
|
|
863
|
+
version = "0.2.17"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "powerfmt"
|
|
869
|
+
version = "0.2.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "proc-macro2"
|
|
875
|
+
version = "1.0.106"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"unicode-ident",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "quote"
|
|
884
|
+
version = "1.0.45"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"proc-macro2",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "rayon"
|
|
893
|
+
version = "1.12.0"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"either",
|
|
898
|
+
"rayon-core",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "rayon-core"
|
|
903
|
+
version = "1.13.0"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"crossbeam-deque",
|
|
908
|
+
"crossbeam-utils",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "regex"
|
|
913
|
+
version = "1.12.3"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"aho-corasick",
|
|
918
|
+
"memchr",
|
|
919
|
+
"regex-automata",
|
|
920
|
+
"regex-syntax",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "regex-automata"
|
|
925
|
+
version = "0.4.14"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"aho-corasick",
|
|
930
|
+
"memchr",
|
|
931
|
+
"regex-syntax",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "regex-syntax"
|
|
936
|
+
version = "0.8.10"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "rustc-hash"
|
|
942
|
+
version = "2.1.2"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "rustversion"
|
|
948
|
+
version = "1.0.22"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "ryu"
|
|
954
|
+
version = "1.0.23"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "same-file"
|
|
960
|
+
version = "1.0.6"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"winapi-util",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "seq-macro"
|
|
969
|
+
version = "0.3.6"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "serde"
|
|
975
|
+
version = "1.0.228"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"serde_core",
|
|
980
|
+
"serde_derive",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "serde_core"
|
|
985
|
+
version = "1.0.228"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"serde_derive",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "serde_derive"
|
|
994
|
+
version = "1.0.228"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"proc-macro2",
|
|
999
|
+
"quote",
|
|
1000
|
+
"syn",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "serde_json"
|
|
1005
|
+
version = "1.0.150"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"itoa",
|
|
1010
|
+
"memchr",
|
|
1011
|
+
"serde",
|
|
1012
|
+
"serde_core",
|
|
1013
|
+
"zmij",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "serde_path_to_error"
|
|
1018
|
+
version = "0.1.20"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"itoa",
|
|
1023
|
+
"serde",
|
|
1024
|
+
"serde_core",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "serde_urlencoded"
|
|
1029
|
+
version = "0.7.1"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"form_urlencoded",
|
|
1034
|
+
"itoa",
|
|
1035
|
+
"ryu",
|
|
1036
|
+
"serde",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "siphasher"
|
|
1041
|
+
version = "1.0.3"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "slab"
|
|
1047
|
+
version = "0.4.12"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "smallvec"
|
|
1053
|
+
version = "1.15.1"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "smawk"
|
|
1059
|
+
version = "0.3.2"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "socket2"
|
|
1065
|
+
version = "0.6.4"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
1068
|
+
dependencies = [
|
|
1069
|
+
"libc",
|
|
1070
|
+
"windows-sys",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "static_assertions"
|
|
1075
|
+
version = "1.1.0"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "strsim"
|
|
1081
|
+
version = "0.11.1"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "syn"
|
|
1087
|
+
version = "2.0.117"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"proc-macro2",
|
|
1092
|
+
"quote",
|
|
1093
|
+
"unicode-ident",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "sync_wrapper"
|
|
1098
|
+
version = "1.0.2"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "textwrap"
|
|
1104
|
+
version = "0.16.2"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"smawk",
|
|
1109
|
+
"unicode-linebreak",
|
|
1110
|
+
"unicode-width",
|
|
1111
|
+
]
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "thiserror"
|
|
1115
|
+
version = "2.0.18"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"thiserror-impl",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "thiserror-impl"
|
|
1124
|
+
version = "2.0.18"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"proc-macro2",
|
|
1129
|
+
"quote",
|
|
1130
|
+
"syn",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1133
|
+
[[package]]
|
|
1134
|
+
name = "time"
|
|
1135
|
+
version = "0.3.47"
|
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
1138
|
+
dependencies = [
|
|
1139
|
+
"deranged",
|
|
1140
|
+
"itoa",
|
|
1141
|
+
"num-conv",
|
|
1142
|
+
"powerfmt",
|
|
1143
|
+
"serde_core",
|
|
1144
|
+
"time-core",
|
|
1145
|
+
"time-macros",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "time-core"
|
|
1150
|
+
version = "0.1.8"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "time-macros"
|
|
1156
|
+
version = "0.2.27"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"num-conv",
|
|
1161
|
+
"time-core",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "tokio"
|
|
1166
|
+
version = "1.52.3"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"libc",
|
|
1171
|
+
"mio",
|
|
1172
|
+
"pin-project-lite",
|
|
1173
|
+
"socket2",
|
|
1174
|
+
"tokio-macros",
|
|
1175
|
+
"windows-sys",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "tokio-macros"
|
|
1180
|
+
version = "2.7.0"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"proc-macro2",
|
|
1185
|
+
"quote",
|
|
1186
|
+
"syn",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "tower"
|
|
1191
|
+
version = "0.5.3"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"futures-core",
|
|
1196
|
+
"futures-util",
|
|
1197
|
+
"pin-project-lite",
|
|
1198
|
+
"sync_wrapper",
|
|
1199
|
+
"tokio",
|
|
1200
|
+
"tower-layer",
|
|
1201
|
+
"tower-service",
|
|
1202
|
+
"tracing",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "tower-layer"
|
|
1207
|
+
version = "0.3.3"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "tower-service"
|
|
1213
|
+
version = "0.3.3"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "tracing"
|
|
1219
|
+
version = "0.1.44"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"log",
|
|
1224
|
+
"pin-project-lite",
|
|
1225
|
+
"tracing-core",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "tracing-core"
|
|
1230
|
+
version = "0.1.36"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"once_cell",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "unicode-id-start"
|
|
1239
|
+
version = "1.4.0"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "unicode-ident"
|
|
1245
|
+
version = "1.0.24"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "unicode-linebreak"
|
|
1251
|
+
version = "0.1.5"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
1254
|
+
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "unicode-segmentation"
|
|
1257
|
+
version = "1.13.2"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "unicode-width"
|
|
1263
|
+
version = "0.2.2"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "utf8parse"
|
|
1269
|
+
version = "0.2.2"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1272
|
+
|
|
1273
|
+
[[package]]
|
|
1274
|
+
name = "walkdir"
|
|
1275
|
+
version = "2.5.0"
|
|
1276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1278
|
+
dependencies = [
|
|
1279
|
+
"same-file",
|
|
1280
|
+
"winapi-util",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "wasi"
|
|
1285
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1288
|
+
|
|
1289
|
+
[[package]]
|
|
1290
|
+
name = "winapi-util"
|
|
1291
|
+
version = "0.1.11"
|
|
1292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1294
|
+
dependencies = [
|
|
1295
|
+
"windows-sys",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "windows-link"
|
|
1300
|
+
version = "0.2.1"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "windows-sys"
|
|
1306
|
+
version = "0.61.2"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"windows-link",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "xxhash-rust"
|
|
1315
|
+
version = "0.8.15"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
1318
|
+
|
|
1319
|
+
[[package]]
|
|
1320
|
+
name = "zmij"
|
|
1321
|
+
version = "1.0.21"
|
|
1322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|