pipelex-tools-py 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. pipelex_tools_py-0.1.0/Cargo.lock +3257 -0
  2. pipelex_tools_py-0.1.0/Cargo.toml +60 -0
  3. pipelex_tools_py-0.1.0/PKG-INFO +26 -0
  4. pipelex_tools_py-0.1.0/crates/pipelex-py/Cargo.toml +44 -0
  5. pipelex_tools_py-0.1.0/crates/pipelex-py/pipelex_tools.pyi +96 -0
  6. pipelex_tools_py-0.1.0/crates/pipelex-py/py.typed +1 -0
  7. pipelex_tools_py-0.1.0/crates/pipelex-py/src/diagnostic.rs +195 -0
  8. pipelex_tools_py-0.1.0/crates/pipelex-py/src/format.rs +241 -0
  9. pipelex_tools_py-0.1.0/crates/pipelex-py/src/lib.rs +20 -0
  10. pipelex_tools_py-0.1.0/crates/pipelex-py/src/lint.rs +217 -0
  11. pipelex_tools_py-0.1.0/crates/pipelex-py/src/python.rs +113 -0
  12. pipelex_tools_py-0.1.0/crates/pipelex-py/tests/test_smoke.py +136 -0
  13. pipelex_tools_py-0.1.0/crates/taplo/CHANGELOG.md +200 -0
  14. pipelex_tools_py-0.1.0/crates/taplo/Cargo.toml +59 -0
  15. pipelex_tools_py-0.1.0/crates/taplo/benches/profile.rs +22 -0
  16. pipelex_tools_py-0.1.0/crates/taplo/benches/taplo.rs +50 -0
  17. pipelex_tools_py-0.1.0/crates/taplo/examples/parse.rs +19 -0
  18. pipelex_tools_py-0.1.0/crates/taplo/src/dom/error.rs +32 -0
  19. pipelex_tools_py-0.1.0/crates/taplo/src/dom/from_syntax.rs +691 -0
  20. pipelex_tools_py-0.1.0/crates/taplo/src/dom/index.rs +61 -0
  21. pipelex_tools_py-0.1.0/crates/taplo/src/dom/mod.rs +398 -0
  22. pipelex_tools_py-0.1.0/crates/taplo/src/dom/node/nodes.rs +777 -0
  23. pipelex_tools_py-0.1.0/crates/taplo/src/dom/node.rs +665 -0
  24. pipelex_tools_py-0.1.0/crates/taplo/src/dom/rewrite.rs +200 -0
  25. pipelex_tools_py-0.1.0/crates/taplo/src/dom/serde.rs +270 -0
  26. pipelex_tools_py-0.1.0/crates/taplo/src/dom/to_toml.rs +191 -0
  27. pipelex_tools_py-0.1.0/crates/taplo/src/formatter/macros.rs +109 -0
  28. pipelex_tools_py-0.1.0/crates/taplo/src/formatter/mod.rs +1331 -0
  29. pipelex_tools_py-0.1.0/crates/taplo/src/lib.rs +73 -0
  30. pipelex_tools_py-0.1.0/crates/taplo/src/parser/macros.rs +21 -0
  31. pipelex_tools_py-0.1.0/crates/taplo/src/parser/mod.rs +941 -0
  32. pipelex_tools_py-0.1.0/crates/taplo/src/syntax.rs +277 -0
  33. pipelex_tools_py-0.1.0/crates/taplo/src/tests/formatter.rs +1178 -0
  34. pipelex_tools_py-0.1.0/crates/taplo/src/tests/generated/invalid.rs +373 -0
  35. pipelex_tools_py-0.1.0/crates/taplo/src/tests/mod.rs +29 -0
  36. pipelex_tools_py-0.1.0/crates/taplo/src/util/escape.rs +177 -0
  37. pipelex_tools_py-0.1.0/crates/taplo/src/util/iter.rs +49 -0
  38. pipelex_tools_py-0.1.0/crates/taplo/src/util/mod.rs +186 -0
  39. pipelex_tools_py-0.1.0/crates/taplo/src/util/shared.rs +76 -0
  40. pipelex_tools_py-0.1.0/crates/taplo/src/util/syntax.rs +16 -0
  41. pipelex_tools_py-0.1.0/crates/taplo-common/CHANGELOG.md +35 -0
  42. pipelex_tools_py-0.1.0/crates/taplo-common/Cargo.toml +70 -0
  43. pipelex_tools_py-0.1.0/crates/taplo-common/schemas/mthds_schema.json +2084 -0
  44. pipelex_tools_py-0.1.0/crates/taplo-common/src/config.rs +694 -0
  45. pipelex_tools_py-0.1.0/crates/taplo-common/src/convert.rs +11 -0
  46. pipelex_tools_py-0.1.0/crates/taplo-common/src/environment/native.rs +136 -0
  47. pipelex_tools_py-0.1.0/crates/taplo-common/src/environment.rs +98 -0
  48. pipelex_tools_py-0.1.0/crates/taplo-common/src/lib.rs +30 -0
  49. pipelex_tools_py-0.1.0/crates/taplo-common/src/log.rs +113 -0
  50. pipelex_tools_py-0.1.0/crates/taplo-common/src/schema/associations.rs +699 -0
  51. pipelex_tools_py-0.1.0/crates/taplo-common/src/schema/cache.rs +150 -0
  52. pipelex_tools_py-0.1.0/crates/taplo-common/src/schema/ext.rs +110 -0
  53. pipelex_tools_py-0.1.0/crates/taplo-common/src/schema/mod.rs +1800 -0
  54. pipelex_tools_py-0.1.0/crates/taplo-common/src/util.rs +170 -0
  55. pipelex_tools_py-0.1.0/pyproject.toml +51 -0
@@ -0,0 +1,3257 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.21.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler"
16
+ version = "1.0.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.11"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom",
28
+ "once_cell",
29
+ "serde",
30
+ "version_check",
31
+ "zerocopy",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "aho-corasick"
36
+ version = "1.1.2"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
39
+ dependencies = [
40
+ "memchr",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "aligned-vec"
45
+ version = "0.6.1"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "7e0966165eaf052580bd70eb1b32cb3d6245774c0104d1b2793e9650bf83b52a"
48
+ dependencies = [
49
+ "equator",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "allocator-api2"
54
+ version = "0.2.18"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
57
+
58
+ [[package]]
59
+ name = "anes"
60
+ version = "0.1.6"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
63
+
64
+ [[package]]
65
+ name = "ansi_term"
66
+ version = "0.12.1"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
69
+ dependencies = [
70
+ "winapi",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "anstream"
75
+ version = "0.6.15"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
78
+ dependencies = [
79
+ "anstyle",
80
+ "anstyle-parse",
81
+ "anstyle-query",
82
+ "anstyle-wincon",
83
+ "colorchoice",
84
+ "is_terminal_polyfill",
85
+ "utf8parse",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstyle"
90
+ version = "1.0.10"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
93
+
94
+ [[package]]
95
+ name = "anstyle-parse"
96
+ version = "0.2.6"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
99
+ dependencies = [
100
+ "utf8parse",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstyle-query"
105
+ version = "1.1.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
108
+ dependencies = [
109
+ "windows-sys 0.52.0",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "anstyle-wincon"
114
+ version = "3.0.4"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
117
+ dependencies = [
118
+ "anstyle",
119
+ "windows-sys 0.52.0",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "anyhow"
124
+ version = "1.0.79"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
127
+
128
+ [[package]]
129
+ name = "arc-swap"
130
+ version = "1.6.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
133
+
134
+ [[package]]
135
+ name = "arrayvec"
136
+ version = "0.7.4"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
139
+
140
+ [[package]]
141
+ name = "assert-json-diff"
142
+ version = "2.0.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
145
+ dependencies = [
146
+ "serde",
147
+ "serde_json",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "async-ctrlc"
152
+ version = "1.2.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "907279f6e91a51c8ec7cac24711e8308f21da7c10c7700ca2f7e125694ed2df1"
155
+ dependencies = [
156
+ "ctrlc",
157
+ "futures-core",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "async-recursion"
162
+ version = "1.0.5"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
165
+ dependencies = [
166
+ "proc-macro2",
167
+ "quote",
168
+ "syn 2.0.118",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "async-trait"
173
+ version = "0.1.77"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
176
+ dependencies = [
177
+ "proc-macro2",
178
+ "quote",
179
+ "syn 2.0.118",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "atomic"
184
+ version = "0.6.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994"
187
+ dependencies = [
188
+ "bytemuck",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "autocfg"
193
+ version = "1.1.0"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
196
+
197
+ [[package]]
198
+ name = "backtrace"
199
+ version = "0.3.69"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
202
+ dependencies = [
203
+ "addr2line",
204
+ "cc",
205
+ "cfg-if",
206
+ "libc",
207
+ "miniz_oxide",
208
+ "object",
209
+ "rustc-demangle",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "base64"
214
+ version = "0.21.7"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
217
+
218
+ [[package]]
219
+ name = "beef"
220
+ version = "0.5.2"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
223
+
224
+ [[package]]
225
+ name = "bit-set"
226
+ version = "0.5.3"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
229
+ dependencies = [
230
+ "bit-vec",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "bit-vec"
235
+ version = "0.6.3"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
238
+
239
+ [[package]]
240
+ name = "bitflags"
241
+ version = "1.3.2"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
244
+
245
+ [[package]]
246
+ name = "bitflags"
247
+ version = "2.4.2"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
250
+
251
+ [[package]]
252
+ name = "block-buffer"
253
+ version = "0.10.4"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
256
+ dependencies = [
257
+ "generic-array",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "bstr"
262
+ version = "1.9.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
265
+ dependencies = [
266
+ "memchr",
267
+ "serde",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "bumpalo"
272
+ version = "3.14.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
275
+
276
+ [[package]]
277
+ name = "bytecount"
278
+ version = "0.6.7"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
281
+
282
+ [[package]]
283
+ name = "bytemuck"
284
+ version = "1.14.3"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f"
287
+
288
+ [[package]]
289
+ name = "bytes"
290
+ version = "1.5.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
293
+
294
+ [[package]]
295
+ name = "cast"
296
+ version = "0.3.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
299
+
300
+ [[package]]
301
+ name = "cc"
302
+ version = "1.0.83"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
305
+ dependencies = [
306
+ "libc",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "cfg-if"
311
+ version = "1.0.0"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
314
+
315
+ [[package]]
316
+ name = "ciborium"
317
+ version = "0.2.2"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
320
+ dependencies = [
321
+ "ciborium-io",
322
+ "ciborium-ll",
323
+ "serde",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "ciborium-io"
328
+ version = "0.2.2"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
331
+
332
+ [[package]]
333
+ name = "ciborium-ll"
334
+ version = "0.2.2"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
337
+ dependencies = [
338
+ "ciborium-io",
339
+ "half",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "clap"
344
+ version = "4.5.31"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767"
347
+ dependencies = [
348
+ "clap_builder",
349
+ "clap_derive",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "clap_builder"
354
+ version = "4.5.31"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863"
357
+ dependencies = [
358
+ "anstream",
359
+ "anstyle",
360
+ "clap_lex",
361
+ "strsim",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "clap_complete"
366
+ version = "4.5.3"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "b5a2d6eec27fce550d708b2be5d798797e5a55b246b323ef36924a0001996352"
369
+ dependencies = [
370
+ "clap",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "clap_derive"
375
+ version = "4.5.28"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed"
378
+ dependencies = [
379
+ "heck",
380
+ "proc-macro2",
381
+ "quote",
382
+ "syn 2.0.118",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "clap_lex"
387
+ version = "0.7.4"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
390
+
391
+ [[package]]
392
+ name = "codespan-reporting"
393
+ version = "0.11.1"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
396
+ dependencies = [
397
+ "termcolor",
398
+ "unicode-width",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "colorchoice"
403
+ version = "1.0.3"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
406
+
407
+ [[package]]
408
+ name = "console_error_panic_hook"
409
+ version = "0.1.7"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
412
+ dependencies = [
413
+ "cfg-if",
414
+ "wasm-bindgen",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "core-foundation"
419
+ version = "0.9.4"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
422
+ dependencies = [
423
+ "core-foundation-sys",
424
+ "libc",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "core-foundation-sys"
429
+ version = "0.8.6"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
432
+
433
+ [[package]]
434
+ name = "countme"
435
+ version = "3.0.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
438
+
439
+ [[package]]
440
+ name = "cpp_demangle"
441
+ version = "0.4.3"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "7e8227005286ec39567949b33df9896bcadfa6051bccca2488129f108ca23119"
444
+ dependencies = [
445
+ "cfg-if",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "cpufeatures"
450
+ version = "0.2.12"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
453
+ dependencies = [
454
+ "libc",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "criterion"
459
+ version = "0.5.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
462
+ dependencies = [
463
+ "anes",
464
+ "cast",
465
+ "ciborium",
466
+ "clap",
467
+ "criterion-plot",
468
+ "is-terminal",
469
+ "itertools",
470
+ "num-traits",
471
+ "once_cell",
472
+ "oorandom",
473
+ "plotters",
474
+ "rayon",
475
+ "regex",
476
+ "serde",
477
+ "serde_derive",
478
+ "serde_json",
479
+ "tinytemplate",
480
+ "walkdir",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "criterion-plot"
485
+ version = "0.5.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
488
+ dependencies = [
489
+ "cast",
490
+ "itertools",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "crossbeam-deque"
495
+ version = "0.8.5"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
498
+ dependencies = [
499
+ "crossbeam-epoch",
500
+ "crossbeam-utils",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "crossbeam-epoch"
505
+ version = "0.9.18"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
508
+ dependencies = [
509
+ "crossbeam-utils",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "crossbeam-utils"
514
+ version = "0.8.19"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
517
+
518
+ [[package]]
519
+ name = "crunchy"
520
+ version = "0.2.2"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
523
+
524
+ [[package]]
525
+ name = "crypto-common"
526
+ version = "0.1.6"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
529
+ dependencies = [
530
+ "generic-array",
531
+ "typenum",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "ctrlc"
536
+ version = "3.4.2"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b"
539
+ dependencies = [
540
+ "nix 0.27.1",
541
+ "windows-sys 0.52.0",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "debugid"
546
+ version = "0.8.0"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
549
+ dependencies = [
550
+ "uuid",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "deranged"
555
+ version = "0.3.11"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
558
+ dependencies = [
559
+ "powerfmt",
560
+ "serde",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "difference"
565
+ version = "2.0.0"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
568
+
569
+ [[package]]
570
+ name = "digest"
571
+ version = "0.10.7"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
574
+ dependencies = [
575
+ "block-buffer",
576
+ "crypto-common",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "dyn-clone"
581
+ version = "1.0.16"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
584
+
585
+ [[package]]
586
+ name = "either"
587
+ version = "1.10.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
590
+
591
+ [[package]]
592
+ name = "encoding_rs"
593
+ version = "0.8.34"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
596
+ dependencies = [
597
+ "cfg-if",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "equator"
602
+ version = "0.2.2"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
605
+ dependencies = [
606
+ "equator-macro",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "equator-macro"
611
+ version = "0.2.1"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
614
+ dependencies = [
615
+ "proc-macro2",
616
+ "quote",
617
+ "syn 2.0.118",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "equivalent"
622
+ version = "1.0.1"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
625
+
626
+ [[package]]
627
+ name = "errno"
628
+ version = "0.3.8"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
631
+ dependencies = [
632
+ "libc",
633
+ "windows-sys 0.52.0",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "fancy-regex"
638
+ version = "0.11.0"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
641
+ dependencies = [
642
+ "bit-set",
643
+ "regex",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "fastrand"
648
+ version = "2.0.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
651
+
652
+ [[package]]
653
+ name = "figment"
654
+ version = "0.10.14"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "2b6e5bc7bd59d60d0d45a6ccab6cf0f4ce28698fb4e81e750ddf229c9b824026"
657
+ dependencies = [
658
+ "atomic",
659
+ "serde",
660
+ "serde_json",
661
+ "uncased",
662
+ "version_check",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "findshlibs"
667
+ version = "0.10.2"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
670
+ dependencies = [
671
+ "cc",
672
+ "lazy_static",
673
+ "libc",
674
+ "winapi",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "fnv"
679
+ version = "1.0.7"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
682
+
683
+ [[package]]
684
+ name = "foreign-types"
685
+ version = "0.3.2"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
688
+ dependencies = [
689
+ "foreign-types-shared",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "foreign-types-shared"
694
+ version = "0.1.1"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
697
+
698
+ [[package]]
699
+ name = "form_urlencoded"
700
+ version = "1.2.1"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
703
+ dependencies = [
704
+ "percent-encoding",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "fraction"
709
+ version = "0.13.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "3027ae1df8d41b4bed2241c8fdad4acc1e7af60c8e17743534b545e77182d678"
712
+ dependencies = [
713
+ "lazy_static",
714
+ "num",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "futures"
719
+ version = "0.3.30"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
722
+ dependencies = [
723
+ "futures-channel",
724
+ "futures-core",
725
+ "futures-executor",
726
+ "futures-io",
727
+ "futures-sink",
728
+ "futures-task",
729
+ "futures-util",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "futures-channel"
734
+ version = "0.3.30"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
737
+ dependencies = [
738
+ "futures-core",
739
+ "futures-sink",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "futures-core"
744
+ version = "0.3.30"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
747
+
748
+ [[package]]
749
+ name = "futures-executor"
750
+ version = "0.3.30"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
753
+ dependencies = [
754
+ "futures-core",
755
+ "futures-task",
756
+ "futures-util",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "futures-io"
761
+ version = "0.3.30"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
764
+
765
+ [[package]]
766
+ name = "futures-macro"
767
+ version = "0.3.30"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
770
+ dependencies = [
771
+ "proc-macro2",
772
+ "quote",
773
+ "syn 2.0.118",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "futures-sink"
778
+ version = "0.3.30"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
781
+
782
+ [[package]]
783
+ name = "futures-task"
784
+ version = "0.3.30"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
787
+
788
+ [[package]]
789
+ name = "futures-util"
790
+ version = "0.3.30"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
793
+ dependencies = [
794
+ "futures-channel",
795
+ "futures-core",
796
+ "futures-io",
797
+ "futures-macro",
798
+ "futures-sink",
799
+ "futures-task",
800
+ "memchr",
801
+ "pin-project-lite",
802
+ "pin-utils",
803
+ "slab",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "generic-array"
808
+ version = "0.14.7"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
811
+ dependencies = [
812
+ "typenum",
813
+ "version_check",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "getrandom"
818
+ version = "0.2.12"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
821
+ dependencies = [
822
+ "cfg-if",
823
+ "js-sys",
824
+ "libc",
825
+ "wasi",
826
+ "wasm-bindgen",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "gimli"
831
+ version = "0.28.1"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
834
+
835
+ [[package]]
836
+ name = "glob"
837
+ version = "0.3.1"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
840
+
841
+ [[package]]
842
+ name = "globset"
843
+ version = "0.4.14"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
846
+ dependencies = [
847
+ "aho-corasick",
848
+ "bstr",
849
+ "log",
850
+ "regex-automata 0.4.5",
851
+ "regex-syntax 0.8.5",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "h2"
856
+ version = "0.3.26"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
859
+ dependencies = [
860
+ "bytes",
861
+ "fnv",
862
+ "futures-core",
863
+ "futures-sink",
864
+ "futures-util",
865
+ "http",
866
+ "indexmap",
867
+ "slab",
868
+ "tokio",
869
+ "tokio-util",
870
+ "tracing",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "half"
875
+ version = "2.4.1"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
878
+ dependencies = [
879
+ "cfg-if",
880
+ "crunchy",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "hashbrown"
885
+ version = "0.14.3"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
888
+ dependencies = [
889
+ "ahash",
890
+ "allocator-api2",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "heck"
895
+ version = "0.5.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
898
+
899
+ [[package]]
900
+ name = "hermit-abi"
901
+ version = "0.3.6"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "bd5256b483761cd23699d0da46cc6fd2ee3be420bbe6d020ae4a091e70b7e9fd"
904
+
905
+ [[package]]
906
+ name = "hex"
907
+ version = "0.4.3"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
910
+
911
+ [[package]]
912
+ name = "http"
913
+ version = "0.2.12"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
916
+ dependencies = [
917
+ "bytes",
918
+ "fnv",
919
+ "itoa",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "http-body"
924
+ version = "0.4.6"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
927
+ dependencies = [
928
+ "bytes",
929
+ "http",
930
+ "pin-project-lite",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "httparse"
935
+ version = "1.8.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
938
+
939
+ [[package]]
940
+ name = "httpdate"
941
+ version = "1.0.3"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
944
+
945
+ [[package]]
946
+ name = "hyper"
947
+ version = "0.14.30"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
950
+ dependencies = [
951
+ "bytes",
952
+ "futures-channel",
953
+ "futures-core",
954
+ "futures-util",
955
+ "h2",
956
+ "http",
957
+ "http-body",
958
+ "httparse",
959
+ "httpdate",
960
+ "itoa",
961
+ "pin-project-lite",
962
+ "socket2",
963
+ "tokio",
964
+ "tower-service",
965
+ "tracing",
966
+ "want",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "hyper-rustls"
971
+ version = "0.24.2"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
974
+ dependencies = [
975
+ "futures-util",
976
+ "http",
977
+ "hyper",
978
+ "rustls",
979
+ "tokio",
980
+ "tokio-rustls",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "hyper-tls"
985
+ version = "0.5.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
988
+ dependencies = [
989
+ "bytes",
990
+ "hyper",
991
+ "native-tls",
992
+ "tokio",
993
+ "tokio-native-tls",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "idna"
998
+ version = "0.5.0"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
1001
+ dependencies = [
1002
+ "unicode-bidi",
1003
+ "unicode-normalization",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "indexmap"
1008
+ version = "2.2.1"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "433de089bd45971eecf4668ee0ee8f4cec17db4f8bd8f7bc3197a6ce37aa7d9b"
1011
+ dependencies = [
1012
+ "equivalent",
1013
+ "hashbrown",
1014
+ "rayon",
1015
+ "serde",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "indoc"
1020
+ version = "2.0.7"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1023
+ dependencies = [
1024
+ "rustversion",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "inferno"
1029
+ version = "0.11.19"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9"
1032
+ dependencies = [
1033
+ "ahash",
1034
+ "indexmap",
1035
+ "is-terminal",
1036
+ "itoa",
1037
+ "log",
1038
+ "num-format",
1039
+ "once_cell",
1040
+ "quick-xml",
1041
+ "rgb",
1042
+ "str_stack",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "ipnet"
1047
+ version = "2.9.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1050
+
1051
+ [[package]]
1052
+ name = "is-terminal"
1053
+ version = "0.4.12"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
1056
+ dependencies = [
1057
+ "hermit-abi",
1058
+ "libc",
1059
+ "windows-sys 0.52.0",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "is_terminal_polyfill"
1064
+ version = "1.70.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1067
+
1068
+ [[package]]
1069
+ name = "iso8601"
1070
+ version = "0.6.1"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153"
1073
+ dependencies = [
1074
+ "nom",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "itertools"
1079
+ version = "0.10.5"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1082
+ dependencies = [
1083
+ "either",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "itoa"
1088
+ version = "1.0.10"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
1091
+
1092
+ [[package]]
1093
+ name = "js-sys"
1094
+ version = "0.3.72"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
1097
+ dependencies = [
1098
+ "wasm-bindgen",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "json_value_merge"
1103
+ version = "2.0.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "2b0a3aadd8aaadfe2be6fd22bbdb5dbc63494ce22b7c124211f684fd757b3215"
1106
+ dependencies = [
1107
+ "serde_json",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "jsonschema"
1112
+ version = "0.17.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "2a071f4f7efc9a9118dfb627a0a94ef247986e1ab8606a4c806ae2b3aa3b6978"
1115
+ dependencies = [
1116
+ "ahash",
1117
+ "anyhow",
1118
+ "base64",
1119
+ "bytecount",
1120
+ "fancy-regex",
1121
+ "fraction",
1122
+ "getrandom",
1123
+ "iso8601",
1124
+ "itoa",
1125
+ "memchr",
1126
+ "num-cmp",
1127
+ "once_cell",
1128
+ "parking_lot",
1129
+ "percent-encoding",
1130
+ "regex",
1131
+ "serde",
1132
+ "serde_json",
1133
+ "time",
1134
+ "url",
1135
+ "uuid",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "lazy_static"
1140
+ version = "1.4.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1143
+
1144
+ [[package]]
1145
+ name = "libc"
1146
+ version = "0.2.161"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
1149
+
1150
+ [[package]]
1151
+ name = "linux-raw-sys"
1152
+ version = "0.4.13"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
1155
+
1156
+ [[package]]
1157
+ name = "lock_api"
1158
+ version = "0.4.11"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
1161
+ dependencies = [
1162
+ "autocfg",
1163
+ "scopeguard",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "log"
1168
+ version = "0.4.20"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
1171
+
1172
+ [[package]]
1173
+ name = "logos"
1174
+ version = "0.12.1"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1"
1177
+ dependencies = [
1178
+ "logos-derive",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "logos-derive"
1183
+ version = "0.12.1"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c"
1186
+ dependencies = [
1187
+ "beef",
1188
+ "fnv",
1189
+ "proc-macro2",
1190
+ "quote",
1191
+ "regex-syntax 0.6.29",
1192
+ "syn 1.0.109",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "lru"
1197
+ version = "0.11.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21"
1200
+ dependencies = [
1201
+ "hashbrown",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "lsp-async-stub"
1206
+ version = "0.7.0"
1207
+ dependencies = [
1208
+ "anyhow",
1209
+ "async-trait",
1210
+ "futures",
1211
+ "getrandom",
1212
+ "lsp-types",
1213
+ "rowan",
1214
+ "serde",
1215
+ "serde_json",
1216
+ "tokio",
1217
+ "tracing",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "lsp-types"
1222
+ version = "0.93.2"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "9be6e9c7e2d18f651974370d7aff703f9513e0df6e464fd795660edc77e6ca51"
1225
+ dependencies = [
1226
+ "bitflags 1.3.2",
1227
+ "serde",
1228
+ "serde_json",
1229
+ "serde_repr",
1230
+ "url",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "matchers"
1235
+ version = "0.1.0"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1238
+ dependencies = [
1239
+ "regex-automata 0.1.10",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "memchr"
1244
+ version = "2.7.1"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
1247
+
1248
+ [[package]]
1249
+ name = "memmap2"
1250
+ version = "0.9.4"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
1253
+ dependencies = [
1254
+ "libc",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "memoffset"
1259
+ version = "0.9.0"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
1262
+ dependencies = [
1263
+ "autocfg",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "mime"
1268
+ version = "0.3.17"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1271
+
1272
+ [[package]]
1273
+ name = "minimal-lexical"
1274
+ version = "0.2.1"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1277
+
1278
+ [[package]]
1279
+ name = "miniz_oxide"
1280
+ version = "0.7.2"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1283
+ dependencies = [
1284
+ "adler",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "mio"
1289
+ version = "0.8.11"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1292
+ dependencies = [
1293
+ "libc",
1294
+ "wasi",
1295
+ "windows-sys 0.48.0",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "native-tls"
1300
+ version = "0.2.11"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
1303
+ dependencies = [
1304
+ "lazy_static",
1305
+ "libc",
1306
+ "log",
1307
+ "openssl",
1308
+ "openssl-probe",
1309
+ "openssl-sys",
1310
+ "schannel",
1311
+ "security-framework",
1312
+ "security-framework-sys",
1313
+ "tempfile",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "nix"
1318
+ version = "0.26.4"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1321
+ dependencies = [
1322
+ "bitflags 1.3.2",
1323
+ "cfg-if",
1324
+ "libc",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "nix"
1329
+ version = "0.27.1"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
1332
+ dependencies = [
1333
+ "bitflags 2.4.2",
1334
+ "cfg-if",
1335
+ "libc",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "nom"
1340
+ version = "7.1.3"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1343
+ dependencies = [
1344
+ "memchr",
1345
+ "minimal-lexical",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "nu-ansi-term"
1350
+ version = "0.46.0"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1353
+ dependencies = [
1354
+ "overload",
1355
+ "winapi",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "num"
1360
+ version = "0.4.3"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1363
+ dependencies = [
1364
+ "num-bigint",
1365
+ "num-complex",
1366
+ "num-integer",
1367
+ "num-iter",
1368
+ "num-rational",
1369
+ "num-traits",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "num-bigint"
1374
+ version = "0.4.6"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1377
+ dependencies = [
1378
+ "num-integer",
1379
+ "num-traits",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "num-cmp"
1384
+ version = "0.1.0"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
1387
+
1388
+ [[package]]
1389
+ name = "num-complex"
1390
+ version = "0.4.6"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1393
+ dependencies = [
1394
+ "num-traits",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "num-conv"
1399
+ version = "0.1.0"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1402
+
1403
+ [[package]]
1404
+ name = "num-format"
1405
+ version = "0.4.4"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
1408
+ dependencies = [
1409
+ "arrayvec",
1410
+ "itoa",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "num-integer"
1415
+ version = "0.1.46"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1418
+ dependencies = [
1419
+ "num-traits",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "num-iter"
1424
+ version = "0.1.45"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1427
+ dependencies = [
1428
+ "autocfg",
1429
+ "num-integer",
1430
+ "num-traits",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "num-rational"
1435
+ version = "0.4.2"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1438
+ dependencies = [
1439
+ "num-bigint",
1440
+ "num-integer",
1441
+ "num-traits",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "num-traits"
1446
+ version = "0.2.19"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1449
+ dependencies = [
1450
+ "autocfg",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "num_cpus"
1455
+ version = "1.16.0"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1458
+ dependencies = [
1459
+ "hermit-abi",
1460
+ "libc",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "object"
1465
+ version = "0.32.2"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
1468
+ dependencies = [
1469
+ "memchr",
1470
+ ]
1471
+
1472
+ [[package]]
1473
+ name = "once_cell"
1474
+ version = "1.20.2"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1477
+
1478
+ [[package]]
1479
+ name = "oorandom"
1480
+ version = "11.1.3"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
1483
+
1484
+ [[package]]
1485
+ name = "openssl"
1486
+ version = "0.10.66"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
1489
+ dependencies = [
1490
+ "bitflags 2.4.2",
1491
+ "cfg-if",
1492
+ "foreign-types",
1493
+ "libc",
1494
+ "once_cell",
1495
+ "openssl-macros",
1496
+ "openssl-sys",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "openssl-macros"
1501
+ version = "0.1.1"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1504
+ dependencies = [
1505
+ "proc-macro2",
1506
+ "quote",
1507
+ "syn 2.0.118",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "openssl-probe"
1512
+ version = "0.1.5"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1515
+
1516
+ [[package]]
1517
+ name = "openssl-sys"
1518
+ version = "0.9.103"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
1521
+ dependencies = [
1522
+ "cc",
1523
+ "libc",
1524
+ "pkg-config",
1525
+ "vcpkg",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "overload"
1530
+ version = "0.1.1"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1533
+
1534
+ [[package]]
1535
+ name = "pad"
1536
+ version = "0.1.6"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3"
1539
+ dependencies = [
1540
+ "unicode-width",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "parking_lot"
1545
+ version = "0.12.1"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1548
+ dependencies = [
1549
+ "lock_api",
1550
+ "parking_lot_core",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "parking_lot_core"
1555
+ version = "0.9.9"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
1558
+ dependencies = [
1559
+ "cfg-if",
1560
+ "libc",
1561
+ "redox_syscall",
1562
+ "smallvec",
1563
+ "windows-targets 0.48.5",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "percent-encoding"
1568
+ version = "2.3.1"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1571
+
1572
+ [[package]]
1573
+ name = "pin-project-lite"
1574
+ version = "0.2.13"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
1577
+
1578
+ [[package]]
1579
+ name = "pin-utils"
1580
+ version = "0.1.0"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1583
+
1584
+ [[package]]
1585
+ name = "pipelex-cli"
1586
+ version = "0.7.1"
1587
+ dependencies = [
1588
+ "anyhow",
1589
+ "async-ctrlc",
1590
+ "clap",
1591
+ "clap_complete",
1592
+ "lsp-async-stub",
1593
+ "pipelex-common",
1594
+ "pipelex-py",
1595
+ "reqwest",
1596
+ "taplo-cli",
1597
+ "taplo-common",
1598
+ "taplo-lsp",
1599
+ "tokio",
1600
+ "toml",
1601
+ "tracing",
1602
+ "url",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "pipelex-common"
1607
+ version = "0.1.0"
1608
+ dependencies = [
1609
+ "anyhow",
1610
+ "async-trait",
1611
+ "futures",
1612
+ "taplo",
1613
+ "taplo-common",
1614
+ "time",
1615
+ "tokio",
1616
+ "tracing",
1617
+ "url",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "pipelex-lsp"
1622
+ version = "0.1.0"
1623
+ dependencies = [
1624
+ "futures",
1625
+ "lsp-async-stub",
1626
+ "pipelex-common",
1627
+ "taplo-common",
1628
+ "taplo-lsp",
1629
+ "tracing",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "pipelex-py"
1634
+ version = "0.1.0"
1635
+ dependencies = [
1636
+ "anyhow",
1637
+ "pyo3",
1638
+ "pythonize",
1639
+ "serde",
1640
+ "serde_json",
1641
+ "taplo",
1642
+ "taplo-common",
1643
+ "tokio",
1644
+ "url",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "pipelex-wasm"
1649
+ version = "0.1.0"
1650
+ dependencies = [
1651
+ "anyhow",
1652
+ "async-trait",
1653
+ "clap",
1654
+ "console_error_panic_hook",
1655
+ "futures",
1656
+ "getrandom",
1657
+ "indexmap",
1658
+ "js-sys",
1659
+ "lsp-async-stub",
1660
+ "pipelex-cli",
1661
+ "pipelex-common",
1662
+ "serde",
1663
+ "serde-wasm-bindgen",
1664
+ "serde_json",
1665
+ "taplo",
1666
+ "taplo-cli",
1667
+ "taplo-common",
1668
+ "taplo-lsp",
1669
+ "time",
1670
+ "tokio",
1671
+ "tracing",
1672
+ "url",
1673
+ "wasm-bindgen",
1674
+ "wasm-bindgen-futures",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "pkg-config"
1679
+ version = "0.3.30"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
1682
+
1683
+ [[package]]
1684
+ name = "plotters"
1685
+ version = "0.3.5"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
1688
+ dependencies = [
1689
+ "num-traits",
1690
+ "plotters-backend",
1691
+ "plotters-svg",
1692
+ "wasm-bindgen",
1693
+ "web-sys",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "plotters-backend"
1698
+ version = "0.3.5"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
1701
+
1702
+ [[package]]
1703
+ name = "plotters-svg"
1704
+ version = "0.3.5"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
1707
+ dependencies = [
1708
+ "plotters-backend",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "portable-atomic"
1713
+ version = "1.13.1"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1716
+
1717
+ [[package]]
1718
+ name = "powerfmt"
1719
+ version = "0.2.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1722
+
1723
+ [[package]]
1724
+ name = "pprof"
1725
+ version = "0.14.0"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "ebbe2f8898beba44815fdc9e5a4ae9c929e21c5dc29b0c774a15555f7f58d6d0"
1728
+ dependencies = [
1729
+ "aligned-vec",
1730
+ "backtrace",
1731
+ "cfg-if",
1732
+ "criterion",
1733
+ "findshlibs",
1734
+ "inferno",
1735
+ "libc",
1736
+ "log",
1737
+ "nix 0.26.4",
1738
+ "once_cell",
1739
+ "parking_lot",
1740
+ "smallvec",
1741
+ "symbolic-demangle",
1742
+ "tempfile",
1743
+ "thiserror",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "prettydiff"
1748
+ version = "0.6.4"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "8ff1fec61082821f8236cf6c0c14e8172b62ce8a72a0eedc30d3b247bb68dc11"
1751
+ dependencies = [
1752
+ "ansi_term",
1753
+ "pad",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "proc-macro2"
1758
+ version = "1.0.106"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1761
+ dependencies = [
1762
+ "unicode-ident",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "pyo3"
1767
+ version = "0.23.5"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
1770
+ dependencies = [
1771
+ "cfg-if",
1772
+ "indoc",
1773
+ "libc",
1774
+ "memoffset",
1775
+ "once_cell",
1776
+ "portable-atomic",
1777
+ "pyo3-build-config",
1778
+ "pyo3-ffi",
1779
+ "pyo3-macros",
1780
+ "unindent",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "pyo3-build-config"
1785
+ version = "0.23.5"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
1788
+ dependencies = [
1789
+ "once_cell",
1790
+ "python3-dll-a",
1791
+ "target-lexicon",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "pyo3-ffi"
1796
+ version = "0.23.5"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
1799
+ dependencies = [
1800
+ "libc",
1801
+ "pyo3-build-config",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "pyo3-macros"
1806
+ version = "0.23.5"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1809
+ dependencies = [
1810
+ "proc-macro2",
1811
+ "pyo3-macros-backend",
1812
+ "quote",
1813
+ "syn 2.0.118",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "pyo3-macros-backend"
1818
+ version = "0.23.5"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1821
+ dependencies = [
1822
+ "heck",
1823
+ "proc-macro2",
1824
+ "pyo3-build-config",
1825
+ "quote",
1826
+ "syn 2.0.118",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "python3-dll-a"
1831
+ version = "0.2.14"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
1834
+ dependencies = [
1835
+ "cc",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "pythonize"
1840
+ version = "0.23.0"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "91a6ee7a084f913f98d70cdc3ebec07e852b735ae3059a1500db2661265da9ff"
1843
+ dependencies = [
1844
+ "pyo3",
1845
+ "serde",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "quick-xml"
1850
+ version = "0.26.0"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
1853
+ dependencies = [
1854
+ "memchr",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "quote"
1859
+ version = "1.0.35"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
1862
+ dependencies = [
1863
+ "proc-macro2",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "rayon"
1868
+ version = "1.8.1"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
1871
+ dependencies = [
1872
+ "either",
1873
+ "rayon-core",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "rayon-core"
1878
+ version = "1.12.1"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1881
+ dependencies = [
1882
+ "crossbeam-deque",
1883
+ "crossbeam-utils",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "redox_syscall"
1888
+ version = "0.4.1"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1891
+ dependencies = [
1892
+ "bitflags 1.3.2",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "regex"
1897
+ version = "1.10.3"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
1900
+ dependencies = [
1901
+ "aho-corasick",
1902
+ "memchr",
1903
+ "regex-automata 0.4.5",
1904
+ "regex-syntax 0.8.5",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "regex-automata"
1909
+ version = "0.1.10"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1912
+ dependencies = [
1913
+ "regex-syntax 0.6.29",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "regex-automata"
1918
+ version = "0.4.5"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
1921
+ dependencies = [
1922
+ "aho-corasick",
1923
+ "memchr",
1924
+ "regex-syntax 0.8.5",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "regex-syntax"
1929
+ version = "0.6.29"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1932
+
1933
+ [[package]]
1934
+ name = "regex-syntax"
1935
+ version = "0.8.5"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1938
+
1939
+ [[package]]
1940
+ name = "reqwest"
1941
+ version = "0.11.27"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
1944
+ dependencies = [
1945
+ "base64",
1946
+ "bytes",
1947
+ "encoding_rs",
1948
+ "futures-core",
1949
+ "futures-util",
1950
+ "h2",
1951
+ "http",
1952
+ "http-body",
1953
+ "hyper",
1954
+ "hyper-rustls",
1955
+ "hyper-tls",
1956
+ "ipnet",
1957
+ "js-sys",
1958
+ "log",
1959
+ "mime",
1960
+ "native-tls",
1961
+ "once_cell",
1962
+ "percent-encoding",
1963
+ "pin-project-lite",
1964
+ "rustls",
1965
+ "rustls-pemfile",
1966
+ "serde",
1967
+ "serde_json",
1968
+ "serde_urlencoded",
1969
+ "sync_wrapper",
1970
+ "system-configuration",
1971
+ "tokio",
1972
+ "tokio-native-tls",
1973
+ "tokio-rustls",
1974
+ "tower-service",
1975
+ "url",
1976
+ "wasm-bindgen",
1977
+ "wasm-bindgen-futures",
1978
+ "web-sys",
1979
+ "webpki-roots",
1980
+ "winreg",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "rgb"
1985
+ version = "0.8.37"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8"
1988
+ dependencies = [
1989
+ "bytemuck",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "ring"
1994
+ version = "0.17.7"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
1997
+ dependencies = [
1998
+ "cc",
1999
+ "getrandom",
2000
+ "libc",
2001
+ "spin",
2002
+ "untrusted",
2003
+ "windows-sys 0.48.0",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "rowan"
2008
+ version = "0.15.15"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "32a58fa8a7ccff2aec4f39cc45bf5f985cec7125ab271cf681c279fd00192b49"
2011
+ dependencies = [
2012
+ "countme",
2013
+ "hashbrown",
2014
+ "memoffset",
2015
+ "rustc-hash",
2016
+ "text-size",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "rustc-demangle"
2021
+ version = "0.1.23"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2024
+
2025
+ [[package]]
2026
+ name = "rustc-hash"
2027
+ version = "1.1.0"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2030
+
2031
+ [[package]]
2032
+ name = "rustix"
2033
+ version = "0.38.31"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
2036
+ dependencies = [
2037
+ "bitflags 2.4.2",
2038
+ "errno",
2039
+ "libc",
2040
+ "linux-raw-sys",
2041
+ "windows-sys 0.52.0",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "rustls"
2046
+ version = "0.21.12"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2049
+ dependencies = [
2050
+ "log",
2051
+ "ring",
2052
+ "rustls-webpki",
2053
+ "sct",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "rustls-pemfile"
2058
+ version = "1.0.4"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2061
+ dependencies = [
2062
+ "base64",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "rustls-webpki"
2067
+ version = "0.101.7"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2070
+ dependencies = [
2071
+ "ring",
2072
+ "untrusted",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "rustversion"
2077
+ version = "1.0.19"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
2080
+
2081
+ [[package]]
2082
+ name = "ryu"
2083
+ version = "1.0.16"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2086
+
2087
+ [[package]]
2088
+ name = "same-file"
2089
+ version = "1.0.6"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2092
+ dependencies = [
2093
+ "winapi-util",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "schannel"
2098
+ version = "0.1.23"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
2101
+ dependencies = [
2102
+ "windows-sys 0.52.0",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "schemars"
2107
+ version = "0.8.16"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29"
2110
+ dependencies = [
2111
+ "dyn-clone",
2112
+ "schemars_derive",
2113
+ "serde",
2114
+ "serde_json",
2115
+ "url",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "schemars_derive"
2120
+ version = "0.8.16"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967"
2123
+ dependencies = [
2124
+ "proc-macro2",
2125
+ "quote",
2126
+ "serde_derive_internals",
2127
+ "syn 1.0.109",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "scopeguard"
2132
+ version = "1.2.0"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2135
+
2136
+ [[package]]
2137
+ name = "sct"
2138
+ version = "0.7.1"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2141
+ dependencies = [
2142
+ "ring",
2143
+ "untrusted",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "security-framework"
2148
+ version = "2.9.2"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
2151
+ dependencies = [
2152
+ "bitflags 1.3.2",
2153
+ "core-foundation",
2154
+ "core-foundation-sys",
2155
+ "libc",
2156
+ "security-framework-sys",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "security-framework-sys"
2161
+ version = "2.9.1"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
2164
+ dependencies = [
2165
+ "core-foundation-sys",
2166
+ "libc",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "semver"
2171
+ version = "1.0.21"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
2174
+ dependencies = [
2175
+ "serde",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "serde"
2180
+ version = "1.0.196"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32"
2183
+ dependencies = [
2184
+ "serde_derive",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "serde-wasm-bindgen"
2189
+ version = "0.6.5"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2192
+ dependencies = [
2193
+ "js-sys",
2194
+ "serde",
2195
+ "wasm-bindgen",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "serde_derive"
2200
+ version = "1.0.196"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67"
2203
+ dependencies = [
2204
+ "proc-macro2",
2205
+ "quote",
2206
+ "syn 2.0.118",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "serde_derive_internals"
2211
+ version = "0.26.0"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c"
2214
+ dependencies = [
2215
+ "proc-macro2",
2216
+ "quote",
2217
+ "syn 1.0.109",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "serde_json"
2222
+ version = "1.0.113"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
2225
+ dependencies = [
2226
+ "indexmap",
2227
+ "itoa",
2228
+ "ryu",
2229
+ "serde",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "serde_repr"
2234
+ version = "0.1.18"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb"
2237
+ dependencies = [
2238
+ "proc-macro2",
2239
+ "quote",
2240
+ "syn 2.0.118",
2241
+ ]
2242
+
2243
+ [[package]]
2244
+ name = "serde_spanned"
2245
+ version = "0.6.5"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
2248
+ dependencies = [
2249
+ "serde",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "serde_urlencoded"
2254
+ version = "0.7.1"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2257
+ dependencies = [
2258
+ "form_urlencoded",
2259
+ "itoa",
2260
+ "ryu",
2261
+ "serde",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "sha1"
2266
+ version = "0.10.6"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2269
+ dependencies = [
2270
+ "cfg-if",
2271
+ "cpufeatures",
2272
+ "digest",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "sharded-slab"
2277
+ version = "0.1.7"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2280
+ dependencies = [
2281
+ "lazy_static",
2282
+ ]
2283
+
2284
+ [[package]]
2285
+ name = "slab"
2286
+ version = "0.4.9"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2289
+ dependencies = [
2290
+ "autocfg",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "smallvec"
2295
+ version = "1.13.1"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
2298
+
2299
+ [[package]]
2300
+ name = "socket2"
2301
+ version = "0.5.5"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
2304
+ dependencies = [
2305
+ "libc",
2306
+ "windows-sys 0.48.0",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "spin"
2311
+ version = "0.9.8"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2314
+
2315
+ [[package]]
2316
+ name = "stable_deref_trait"
2317
+ version = "1.2.0"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2320
+
2321
+ [[package]]
2322
+ name = "str_stack"
2323
+ version = "0.1.0"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
2326
+
2327
+ [[package]]
2328
+ name = "strsim"
2329
+ version = "0.11.1"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2332
+
2333
+ [[package]]
2334
+ name = "symbolic-common"
2335
+ version = "12.10.0"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "16629323a4ec5268ad23a575110a724ad4544aae623451de600c747bf87b36cf"
2338
+ dependencies = [
2339
+ "debugid",
2340
+ "memmap2",
2341
+ "stable_deref_trait",
2342
+ "uuid",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "symbolic-demangle"
2347
+ version = "12.10.0"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "48c043a45f08f41187414592b3ceb53fb0687da57209cc77401767fb69d5b596"
2350
+ dependencies = [
2351
+ "cpp_demangle",
2352
+ "rustc-demangle",
2353
+ "symbolic-common",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "syn"
2358
+ version = "1.0.109"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2361
+ dependencies = [
2362
+ "proc-macro2",
2363
+ "quote",
2364
+ "unicode-ident",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "syn"
2369
+ version = "2.0.118"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2372
+ dependencies = [
2373
+ "proc-macro2",
2374
+ "quote",
2375
+ "unicode-ident",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "sync_wrapper"
2380
+ version = "0.1.2"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2383
+
2384
+ [[package]]
2385
+ name = "system-configuration"
2386
+ version = "0.5.1"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
2389
+ dependencies = [
2390
+ "bitflags 1.3.2",
2391
+ "core-foundation",
2392
+ "system-configuration-sys",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "system-configuration-sys"
2397
+ version = "0.5.0"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
2400
+ dependencies = [
2401
+ "core-foundation-sys",
2402
+ "libc",
2403
+ ]
2404
+
2405
+ [[package]]
2406
+ name = "tap"
2407
+ version = "1.0.1"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2410
+
2411
+ [[package]]
2412
+ name = "taplo"
2413
+ version = "0.14.0"
2414
+ dependencies = [
2415
+ "ahash",
2416
+ "arc-swap",
2417
+ "assert-json-diff",
2418
+ "criterion",
2419
+ "difference",
2420
+ "either",
2421
+ "globset",
2422
+ "itertools",
2423
+ "logos",
2424
+ "once_cell",
2425
+ "pprof",
2426
+ "rowan",
2427
+ "schemars",
2428
+ "serde",
2429
+ "serde_json",
2430
+ "thiserror",
2431
+ "time",
2432
+ "toml",
2433
+ "tracing",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "taplo-cli"
2438
+ version = "0.10.0"
2439
+ dependencies = [
2440
+ "ansi_term",
2441
+ "anyhow",
2442
+ "async-ctrlc",
2443
+ "clap",
2444
+ "clap_complete",
2445
+ "codespan-reporting",
2446
+ "futures",
2447
+ "glob",
2448
+ "hex",
2449
+ "itertools",
2450
+ "lsp-async-stub",
2451
+ "once_cell",
2452
+ "prettydiff",
2453
+ "regex",
2454
+ "reqwest",
2455
+ "schemars",
2456
+ "serde",
2457
+ "serde_json",
2458
+ "taplo",
2459
+ "taplo-common",
2460
+ "taplo-lsp",
2461
+ "time",
2462
+ "tokio",
2463
+ "toml",
2464
+ "tracing",
2465
+ "tracing-subscriber",
2466
+ "url",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "taplo-common"
2471
+ version = "0.6.0"
2472
+ dependencies = [
2473
+ "ahash",
2474
+ "anyhow",
2475
+ "arc-swap",
2476
+ "async-recursion",
2477
+ "async-trait",
2478
+ "futures",
2479
+ "glob",
2480
+ "globset",
2481
+ "hex",
2482
+ "indexmap",
2483
+ "itertools",
2484
+ "json_value_merge",
2485
+ "jsonschema",
2486
+ "lru",
2487
+ "parking_lot",
2488
+ "percent-encoding",
2489
+ "regex",
2490
+ "reqwest",
2491
+ "schemars",
2492
+ "semver",
2493
+ "serde",
2494
+ "serde_json",
2495
+ "sha1",
2496
+ "tap",
2497
+ "taplo",
2498
+ "thiserror",
2499
+ "time",
2500
+ "tokio",
2501
+ "tracing",
2502
+ "tracing-subscriber",
2503
+ "url",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "taplo-lsp"
2508
+ version = "0.8.0"
2509
+ dependencies = [
2510
+ "anyhow",
2511
+ "arc-swap",
2512
+ "either",
2513
+ "figment",
2514
+ "futures",
2515
+ "indexmap",
2516
+ "itertools",
2517
+ "lsp-async-stub",
2518
+ "lsp-types",
2519
+ "once_cell",
2520
+ "parking_lot",
2521
+ "regex",
2522
+ "reqwest",
2523
+ "schemars",
2524
+ "serde",
2525
+ "serde_json",
2526
+ "tap",
2527
+ "taplo",
2528
+ "taplo-common",
2529
+ "time",
2530
+ "toml",
2531
+ "tracing",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "taplo-wasm"
2536
+ version = "0.2.1"
2537
+ dependencies = [
2538
+ "anyhow",
2539
+ "async-trait",
2540
+ "clap",
2541
+ "console_error_panic_hook",
2542
+ "futures",
2543
+ "getrandom",
2544
+ "indexmap",
2545
+ "js-sys",
2546
+ "lsp-async-stub",
2547
+ "serde",
2548
+ "serde-wasm-bindgen",
2549
+ "serde_json",
2550
+ "taplo",
2551
+ "taplo-cli",
2552
+ "taplo-common",
2553
+ "taplo-lsp",
2554
+ "time",
2555
+ "tokio",
2556
+ "tracing",
2557
+ "url",
2558
+ "wasm-bindgen",
2559
+ "wasm-bindgen-futures",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "target-lexicon"
2564
+ version = "0.12.16"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2567
+
2568
+ [[package]]
2569
+ name = "tempfile"
2570
+ version = "3.10.0"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67"
2573
+ dependencies = [
2574
+ "cfg-if",
2575
+ "fastrand",
2576
+ "rustix",
2577
+ "windows-sys 0.52.0",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "termcolor"
2582
+ version = "1.4.1"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2585
+ dependencies = [
2586
+ "winapi-util",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "text-size"
2591
+ version = "1.1.1"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
2594
+
2595
+ [[package]]
2596
+ name = "thiserror"
2597
+ version = "1.0.57"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
2600
+ dependencies = [
2601
+ "thiserror-impl",
2602
+ ]
2603
+
2604
+ [[package]]
2605
+ name = "thiserror-impl"
2606
+ version = "1.0.57"
2607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2608
+ checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
2609
+ dependencies = [
2610
+ "proc-macro2",
2611
+ "quote",
2612
+ "syn 2.0.118",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "thread_local"
2617
+ version = "1.1.7"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2620
+ dependencies = [
2621
+ "cfg-if",
2622
+ "once_cell",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "time"
2627
+ version = "0.3.36"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2630
+ dependencies = [
2631
+ "deranged",
2632
+ "itoa",
2633
+ "num-conv",
2634
+ "powerfmt",
2635
+ "serde",
2636
+ "time-core",
2637
+ "time-macros",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "time-core"
2642
+ version = "0.1.2"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2645
+
2646
+ [[package]]
2647
+ name = "time-macros"
2648
+ version = "0.2.18"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2651
+ dependencies = [
2652
+ "num-conv",
2653
+ "time-core",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "tinytemplate"
2658
+ version = "1.2.1"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2661
+ dependencies = [
2662
+ "serde",
2663
+ "serde_json",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "tinyvec"
2668
+ version = "1.6.0"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2671
+ dependencies = [
2672
+ "tinyvec_macros",
2673
+ ]
2674
+
2675
+ [[package]]
2676
+ name = "tinyvec_macros"
2677
+ version = "0.1.1"
2678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2679
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2680
+
2681
+ [[package]]
2682
+ name = "tokio"
2683
+ version = "1.36.0"
2684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2685
+ checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
2686
+ dependencies = [
2687
+ "backtrace",
2688
+ "bytes",
2689
+ "libc",
2690
+ "mio",
2691
+ "num_cpus",
2692
+ "parking_lot",
2693
+ "pin-project-lite",
2694
+ "socket2",
2695
+ "tokio-macros",
2696
+ "windows-sys 0.48.0",
2697
+ ]
2698
+
2699
+ [[package]]
2700
+ name = "tokio-macros"
2701
+ version = "2.2.0"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2704
+ dependencies = [
2705
+ "proc-macro2",
2706
+ "quote",
2707
+ "syn 2.0.118",
2708
+ ]
2709
+
2710
+ [[package]]
2711
+ name = "tokio-native-tls"
2712
+ version = "0.3.1"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2715
+ dependencies = [
2716
+ "native-tls",
2717
+ "tokio",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "tokio-rustls"
2722
+ version = "0.24.1"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2725
+ dependencies = [
2726
+ "rustls",
2727
+ "tokio",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "tokio-util"
2732
+ version = "0.7.11"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
2735
+ dependencies = [
2736
+ "bytes",
2737
+ "futures-core",
2738
+ "futures-sink",
2739
+ "pin-project-lite",
2740
+ "tokio",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "toml"
2745
+ version = "0.7.8"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
2748
+ dependencies = [
2749
+ "serde",
2750
+ "serde_spanned",
2751
+ "toml_datetime",
2752
+ "toml_edit",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "toml_datetime"
2757
+ version = "0.6.5"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
2760
+ dependencies = [
2761
+ "serde",
2762
+ ]
2763
+
2764
+ [[package]]
2765
+ name = "toml_edit"
2766
+ version = "0.19.15"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
2769
+ dependencies = [
2770
+ "indexmap",
2771
+ "serde",
2772
+ "serde_spanned",
2773
+ "toml_datetime",
2774
+ "winnow",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "tower-service"
2779
+ version = "0.3.2"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2782
+
2783
+ [[package]]
2784
+ name = "tracing"
2785
+ version = "0.1.40"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2788
+ dependencies = [
2789
+ "pin-project-lite",
2790
+ "tracing-attributes",
2791
+ "tracing-core",
2792
+ ]
2793
+
2794
+ [[package]]
2795
+ name = "tracing-attributes"
2796
+ version = "0.1.27"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2799
+ dependencies = [
2800
+ "proc-macro2",
2801
+ "quote",
2802
+ "syn 2.0.118",
2803
+ ]
2804
+
2805
+ [[package]]
2806
+ name = "tracing-core"
2807
+ version = "0.1.32"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2810
+ dependencies = [
2811
+ "once_cell",
2812
+ "valuable",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "tracing-log"
2817
+ version = "0.2.0"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2820
+ dependencies = [
2821
+ "log",
2822
+ "once_cell",
2823
+ "tracing-core",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "tracing-subscriber"
2828
+ version = "0.3.18"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
2831
+ dependencies = [
2832
+ "matchers",
2833
+ "nu-ansi-term",
2834
+ "once_cell",
2835
+ "regex",
2836
+ "sharded-slab",
2837
+ "smallvec",
2838
+ "thread_local",
2839
+ "tracing",
2840
+ "tracing-core",
2841
+ "tracing-log",
2842
+ ]
2843
+
2844
+ [[package]]
2845
+ name = "try-lock"
2846
+ version = "0.2.5"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2849
+
2850
+ [[package]]
2851
+ name = "typenum"
2852
+ version = "1.17.0"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2855
+
2856
+ [[package]]
2857
+ name = "uncased"
2858
+ version = "0.9.10"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
2861
+ dependencies = [
2862
+ "version_check",
2863
+ ]
2864
+
2865
+ [[package]]
2866
+ name = "unicode-bidi"
2867
+ version = "0.3.15"
2868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2869
+ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2870
+
2871
+ [[package]]
2872
+ name = "unicode-ident"
2873
+ version = "1.0.12"
2874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2875
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2876
+
2877
+ [[package]]
2878
+ name = "unicode-normalization"
2879
+ version = "0.1.22"
2880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2881
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2882
+ dependencies = [
2883
+ "tinyvec",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "unicode-width"
2888
+ version = "0.1.11"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2891
+
2892
+ [[package]]
2893
+ name = "unindent"
2894
+ version = "0.2.4"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2897
+
2898
+ [[package]]
2899
+ name = "untrusted"
2900
+ version = "0.9.0"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2903
+
2904
+ [[package]]
2905
+ name = "url"
2906
+ version = "2.5.0"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2909
+ dependencies = [
2910
+ "form_urlencoded",
2911
+ "idna",
2912
+ "percent-encoding",
2913
+ "serde",
2914
+ ]
2915
+
2916
+ [[package]]
2917
+ name = "utf8parse"
2918
+ version = "0.2.2"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2921
+
2922
+ [[package]]
2923
+ name = "uuid"
2924
+ version = "1.7.0"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
2927
+
2928
+ [[package]]
2929
+ name = "valuable"
2930
+ version = "0.1.0"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2933
+
2934
+ [[package]]
2935
+ name = "vcpkg"
2936
+ version = "0.2.15"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2939
+
2940
+ [[package]]
2941
+ name = "version_check"
2942
+ version = "0.9.4"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2945
+
2946
+ [[package]]
2947
+ name = "walkdir"
2948
+ version = "2.5.0"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2951
+ dependencies = [
2952
+ "same-file",
2953
+ "winapi-util",
2954
+ ]
2955
+
2956
+ [[package]]
2957
+ name = "want"
2958
+ version = "0.3.1"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2961
+ dependencies = [
2962
+ "try-lock",
2963
+ ]
2964
+
2965
+ [[package]]
2966
+ name = "wasi"
2967
+ version = "0.11.0+wasi-snapshot-preview1"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2970
+
2971
+ [[package]]
2972
+ name = "wasm-bindgen"
2973
+ version = "0.2.100"
2974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2975
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2976
+ dependencies = [
2977
+ "cfg-if",
2978
+ "once_cell",
2979
+ "rustversion",
2980
+ "wasm-bindgen-macro",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "wasm-bindgen-backend"
2985
+ version = "0.2.100"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2988
+ dependencies = [
2989
+ "bumpalo",
2990
+ "log",
2991
+ "proc-macro2",
2992
+ "quote",
2993
+ "syn 2.0.118",
2994
+ "wasm-bindgen-shared",
2995
+ ]
2996
+
2997
+ [[package]]
2998
+ name = "wasm-bindgen-futures"
2999
+ version = "0.4.45"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
3002
+ dependencies = [
3003
+ "cfg-if",
3004
+ "js-sys",
3005
+ "wasm-bindgen",
3006
+ "web-sys",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "wasm-bindgen-macro"
3011
+ version = "0.2.100"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3014
+ dependencies = [
3015
+ "quote",
3016
+ "wasm-bindgen-macro-support",
3017
+ ]
3018
+
3019
+ [[package]]
3020
+ name = "wasm-bindgen-macro-support"
3021
+ version = "0.2.100"
3022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3023
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3024
+ dependencies = [
3025
+ "proc-macro2",
3026
+ "quote",
3027
+ "syn 2.0.118",
3028
+ "wasm-bindgen-backend",
3029
+ "wasm-bindgen-shared",
3030
+ ]
3031
+
3032
+ [[package]]
3033
+ name = "wasm-bindgen-shared"
3034
+ version = "0.2.100"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3037
+ dependencies = [
3038
+ "unicode-ident",
3039
+ ]
3040
+
3041
+ [[package]]
3042
+ name = "web-sys"
3043
+ version = "0.3.68"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446"
3046
+ dependencies = [
3047
+ "js-sys",
3048
+ "wasm-bindgen",
3049
+ ]
3050
+
3051
+ [[package]]
3052
+ name = "webpki-roots"
3053
+ version = "0.25.4"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
3056
+
3057
+ [[package]]
3058
+ name = "winapi"
3059
+ version = "0.3.9"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3062
+ dependencies = [
3063
+ "winapi-i686-pc-windows-gnu",
3064
+ "winapi-x86_64-pc-windows-gnu",
3065
+ ]
3066
+
3067
+ [[package]]
3068
+ name = "winapi-i686-pc-windows-gnu"
3069
+ version = "0.4.0"
3070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3071
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3072
+
3073
+ [[package]]
3074
+ name = "winapi-util"
3075
+ version = "0.1.9"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3078
+ dependencies = [
3079
+ "windows-sys 0.52.0",
3080
+ ]
3081
+
3082
+ [[package]]
3083
+ name = "winapi-x86_64-pc-windows-gnu"
3084
+ version = "0.4.0"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3087
+
3088
+ [[package]]
3089
+ name = "windows-sys"
3090
+ version = "0.48.0"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3093
+ dependencies = [
3094
+ "windows-targets 0.48.5",
3095
+ ]
3096
+
3097
+ [[package]]
3098
+ name = "windows-sys"
3099
+ version = "0.52.0"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3102
+ dependencies = [
3103
+ "windows-targets 0.52.0",
3104
+ ]
3105
+
3106
+ [[package]]
3107
+ name = "windows-targets"
3108
+ version = "0.48.5"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3111
+ dependencies = [
3112
+ "windows_aarch64_gnullvm 0.48.5",
3113
+ "windows_aarch64_msvc 0.48.5",
3114
+ "windows_i686_gnu 0.48.5",
3115
+ "windows_i686_msvc 0.48.5",
3116
+ "windows_x86_64_gnu 0.48.5",
3117
+ "windows_x86_64_gnullvm 0.48.5",
3118
+ "windows_x86_64_msvc 0.48.5",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "windows-targets"
3123
+ version = "0.52.0"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
3126
+ dependencies = [
3127
+ "windows_aarch64_gnullvm 0.52.0",
3128
+ "windows_aarch64_msvc 0.52.0",
3129
+ "windows_i686_gnu 0.52.0",
3130
+ "windows_i686_msvc 0.52.0",
3131
+ "windows_x86_64_gnu 0.52.0",
3132
+ "windows_x86_64_gnullvm 0.52.0",
3133
+ "windows_x86_64_msvc 0.52.0",
3134
+ ]
3135
+
3136
+ [[package]]
3137
+ name = "windows_aarch64_gnullvm"
3138
+ version = "0.48.5"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3141
+
3142
+ [[package]]
3143
+ name = "windows_aarch64_gnullvm"
3144
+ version = "0.52.0"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
3147
+
3148
+ [[package]]
3149
+ name = "windows_aarch64_msvc"
3150
+ version = "0.48.5"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3153
+
3154
+ [[package]]
3155
+ name = "windows_aarch64_msvc"
3156
+ version = "0.52.0"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
3159
+
3160
+ [[package]]
3161
+ name = "windows_i686_gnu"
3162
+ version = "0.48.5"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3165
+
3166
+ [[package]]
3167
+ name = "windows_i686_gnu"
3168
+ version = "0.52.0"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
3171
+
3172
+ [[package]]
3173
+ name = "windows_i686_msvc"
3174
+ version = "0.48.5"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3177
+
3178
+ [[package]]
3179
+ name = "windows_i686_msvc"
3180
+ version = "0.52.0"
3181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3182
+ checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
3183
+
3184
+ [[package]]
3185
+ name = "windows_x86_64_gnu"
3186
+ version = "0.48.5"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3189
+
3190
+ [[package]]
3191
+ name = "windows_x86_64_gnu"
3192
+ version = "0.52.0"
3193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3194
+ checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
3195
+
3196
+ [[package]]
3197
+ name = "windows_x86_64_gnullvm"
3198
+ version = "0.48.5"
3199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3200
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3201
+
3202
+ [[package]]
3203
+ name = "windows_x86_64_gnullvm"
3204
+ version = "0.52.0"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
3207
+
3208
+ [[package]]
3209
+ name = "windows_x86_64_msvc"
3210
+ version = "0.48.5"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3213
+
3214
+ [[package]]
3215
+ name = "windows_x86_64_msvc"
3216
+ version = "0.52.0"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
3219
+
3220
+ [[package]]
3221
+ name = "winnow"
3222
+ version = "0.5.40"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
3225
+ dependencies = [
3226
+ "memchr",
3227
+ ]
3228
+
3229
+ [[package]]
3230
+ name = "winreg"
3231
+ version = "0.50.0"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
3234
+ dependencies = [
3235
+ "cfg-if",
3236
+ "windows-sys 0.48.0",
3237
+ ]
3238
+
3239
+ [[package]]
3240
+ name = "zerocopy"
3241
+ version = "0.7.32"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
3244
+ dependencies = [
3245
+ "zerocopy-derive",
3246
+ ]
3247
+
3248
+ [[package]]
3249
+ name = "zerocopy-derive"
3250
+ version = "0.7.32"
3251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3252
+ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
3253
+ dependencies = [
3254
+ "proc-macro2",
3255
+ "quote",
3256
+ "syn 2.0.118",
3257
+ ]