pipelex-tools 0.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. pipelex_tools-0.1.4/Cargo.lock +3130 -0
  2. pipelex_tools-0.1.4/Cargo.toml +57 -0
  3. pipelex_tools-0.1.4/LICENSE +22 -0
  4. pipelex_tools-0.1.4/PKG-INFO +164 -0
  5. pipelex_tools-0.1.4/README.md +128 -0
  6. pipelex_tools-0.1.4/crates/lsp-async-stub/.gitignore +2 -0
  7. pipelex_tools-0.1.4/crates/lsp-async-stub/Cargo.toml +30 -0
  8. pipelex_tools-0.1.4/crates/lsp-async-stub/README.md +9 -0
  9. pipelex_tools-0.1.4/crates/lsp-async-stub/src/handler.rs +185 -0
  10. pipelex_tools-0.1.4/crates/lsp-async-stub/src/lib.rs +631 -0
  11. pipelex_tools-0.1.4/crates/lsp-async-stub/src/listen/stdio.rs +21 -0
  12. pipelex_tools-0.1.4/crates/lsp-async-stub/src/listen/tcp.rs +46 -0
  13. pipelex_tools-0.1.4/crates/lsp-async-stub/src/listen.rs +211 -0
  14. pipelex_tools-0.1.4/crates/lsp-async-stub/src/rpc.rs +322 -0
  15. pipelex_tools-0.1.4/crates/lsp-async-stub/src/util.rs +273 -0
  16. pipelex_tools-0.1.4/crates/pipelex-cli/Cargo.toml +50 -0
  17. pipelex_tools-0.1.4/crates/pipelex-cli/bin/plxt.rs +40 -0
  18. pipelex_tools-0.1.4/crates/pipelex-cli/src/args.rs +84 -0
  19. pipelex_tools-0.1.4/crates/pipelex-cli/src/commands/config.rs +13 -0
  20. pipelex_tools-0.1.4/crates/pipelex-cli/src/commands/lsp.rs +34 -0
  21. pipelex_tools-0.1.4/crates/pipelex-cli/src/commands/mod.rs +72 -0
  22. pipelex_tools-0.1.4/crates/pipelex-cli/src/lib.rs +21 -0
  23. pipelex_tools-0.1.4/crates/pipelex-common/Cargo.toml +28 -0
  24. pipelex_tools-0.1.4/crates/pipelex-common/src/config.rs +3 -0
  25. pipelex_tools-0.1.4/crates/pipelex-common/src/environment.rs +332 -0
  26. pipelex_tools-0.1.4/crates/pipelex-common/src/lib.rs +5 -0
  27. pipelex_tools-0.1.4/crates/taplo/CHANGELOG.md +200 -0
  28. pipelex_tools-0.1.4/crates/taplo/Cargo.toml +53 -0
  29. pipelex_tools-0.1.4/crates/taplo/benches/profile.rs +22 -0
  30. pipelex_tools-0.1.4/crates/taplo/benches/taplo.rs +50 -0
  31. pipelex_tools-0.1.4/crates/taplo/examples/parse.rs +19 -0
  32. pipelex_tools-0.1.4/crates/taplo/src/dom/error.rs +32 -0
  33. pipelex_tools-0.1.4/crates/taplo/src/dom/from_syntax.rs +691 -0
  34. pipelex_tools-0.1.4/crates/taplo/src/dom/index.rs +61 -0
  35. pipelex_tools-0.1.4/crates/taplo/src/dom/mod.rs +398 -0
  36. pipelex_tools-0.1.4/crates/taplo/src/dom/node/nodes.rs +777 -0
  37. pipelex_tools-0.1.4/crates/taplo/src/dom/node.rs +665 -0
  38. pipelex_tools-0.1.4/crates/taplo/src/dom/rewrite.rs +200 -0
  39. pipelex_tools-0.1.4/crates/taplo/src/dom/serde.rs +270 -0
  40. pipelex_tools-0.1.4/crates/taplo/src/dom/to_toml.rs +191 -0
  41. pipelex_tools-0.1.4/crates/taplo/src/formatter/macros.rs +109 -0
  42. pipelex_tools-0.1.4/crates/taplo/src/formatter/mod.rs +1331 -0
  43. pipelex_tools-0.1.4/crates/taplo/src/lib.rs +69 -0
  44. pipelex_tools-0.1.4/crates/taplo/src/parser/macros.rs +21 -0
  45. pipelex_tools-0.1.4/crates/taplo/src/parser/mod.rs +941 -0
  46. pipelex_tools-0.1.4/crates/taplo/src/syntax.rs +277 -0
  47. pipelex_tools-0.1.4/crates/taplo/src/tests/formatter.rs +1178 -0
  48. pipelex_tools-0.1.4/crates/taplo/src/tests/generated/invalid.rs +373 -0
  49. pipelex_tools-0.1.4/crates/taplo/src/tests/mod.rs +29 -0
  50. pipelex_tools-0.1.4/crates/taplo/src/util/escape.rs +177 -0
  51. pipelex_tools-0.1.4/crates/taplo/src/util/iter.rs +49 -0
  52. pipelex_tools-0.1.4/crates/taplo/src/util/mod.rs +186 -0
  53. pipelex_tools-0.1.4/crates/taplo/src/util/shared.rs +76 -0
  54. pipelex_tools-0.1.4/crates/taplo/src/util/syntax.rs +16 -0
  55. pipelex_tools-0.1.4/crates/taplo-cli/CHANGELOG.md +84 -0
  56. pipelex_tools-0.1.4/crates/taplo-cli/Cargo.toml +63 -0
  57. pipelex_tools-0.1.4/crates/taplo-cli/README.md +5 -0
  58. pipelex_tools-0.1.4/crates/taplo-cli/bin/taplo.rs +37 -0
  59. pipelex_tools-0.1.4/crates/taplo-cli/src/args.rs +255 -0
  60. pipelex_tools-0.1.4/crates/taplo-cli/src/commands/config.rs +27 -0
  61. pipelex_tools-0.1.4/crates/taplo-cli/src/commands/format.rs +311 -0
  62. pipelex_tools-0.1.4/crates/taplo-cli/src/commands/lint.rs +160 -0
  63. pipelex_tools-0.1.4/crates/taplo-cli/src/commands/lsp.rs +33 -0
  64. pipelex_tools-0.1.4/crates/taplo-cli/src/commands/mod.rs +55 -0
  65. pipelex_tools-0.1.4/crates/taplo-cli/src/commands/queries.rs +234 -0
  66. pipelex_tools-0.1.4/crates/taplo-cli/src/commands/toml_test.rs +135 -0
  67. pipelex_tools-0.1.4/crates/taplo-cli/src/lib.rs +153 -0
  68. pipelex_tools-0.1.4/crates/taplo-cli/src/printing.rs +155 -0
  69. pipelex_tools-0.1.4/crates/taplo-common/CHANGELOG.md +35 -0
  70. pipelex_tools-0.1.4/crates/taplo-common/Cargo.toml +56 -0
  71. pipelex_tools-0.1.4/crates/taplo-common/src/config.rs +383 -0
  72. pipelex_tools-0.1.4/crates/taplo-common/src/convert.rs +11 -0
  73. pipelex_tools-0.1.4/crates/taplo-common/src/environment/native.rs +133 -0
  74. pipelex_tools-0.1.4/crates/taplo-common/src/environment.rs +98 -0
  75. pipelex_tools-0.1.4/crates/taplo-common/src/lib.rs +30 -0
  76. pipelex_tools-0.1.4/crates/taplo-common/src/log.rs +103 -0
  77. pipelex_tools-0.1.4/crates/taplo-common/src/schema/associations.rs +543 -0
  78. pipelex_tools-0.1.4/crates/taplo-common/src/schema/cache.rs +144 -0
  79. pipelex_tools-0.1.4/crates/taplo-common/src/schema/ext.rs +111 -0
  80. pipelex_tools-0.1.4/crates/taplo-common/src/schema/mod.rs +749 -0
  81. pipelex_tools-0.1.4/crates/taplo-common/src/util.rs +170 -0
  82. pipelex_tools-0.1.4/crates/taplo-lsp/.gitignore +5 -0
  83. pipelex_tools-0.1.4/crates/taplo-lsp/CHANGELOG.md +24 -0
  84. pipelex_tools-0.1.4/crates/taplo-lsp/Cargo.toml +44 -0
  85. pipelex_tools-0.1.4/crates/taplo-lsp/README.md +3 -0
  86. pipelex_tools-0.1.4/crates/taplo-lsp/src/config.rs +140 -0
  87. pipelex_tools-0.1.4/crates/taplo-lsp/src/diagnostics.rs +339 -0
  88. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/completion.rs +770 -0
  89. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/configuration.rs +102 -0
  90. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/conversion.rs +68 -0
  91. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/document_symbols.rs +169 -0
  92. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/documents.rs +185 -0
  93. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/folding_ranges.rs +223 -0
  94. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/formatting.rs +79 -0
  95. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/goto_definition.rs +183 -0
  96. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/hover.rs +295 -0
  97. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/initialize.rs +124 -0
  98. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/links.rs +98 -0
  99. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/rename.rs +161 -0
  100. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/schema.rs +141 -0
  101. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/semantic_tokens.rs +160 -0
  102. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/tests/goto_definition.rs +228 -0
  103. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/tests/mod.rs +50 -0
  104. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers/workspaces.rs +128 -0
  105. pipelex_tools-0.1.4/crates/taplo-lsp/src/handlers.rs +47 -0
  106. pipelex_tools-0.1.4/crates/taplo-lsp/src/lib.rs +61 -0
  107. pipelex_tools-0.1.4/crates/taplo-lsp/src/lsp_ext/notification.rs +65 -0
  108. pipelex_tools-0.1.4/crates/taplo-lsp/src/lsp_ext/request.rs +104 -0
  109. pipelex_tools-0.1.4/crates/taplo-lsp/src/lsp_ext.rs +2 -0
  110. pipelex_tools-0.1.4/crates/taplo-lsp/src/query.rs +467 -0
  111. pipelex_tools-0.1.4/crates/taplo-lsp/src/world.rs +299 -0
  112. pipelex_tools-0.1.4/pyproject.toml +52 -0
@@ -0,0 +1,3130 @@
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.48",
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.48",
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.48",
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.48",
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.48",
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 = "inferno"
1020
+ version = "0.11.19"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "321f0f839cd44a4686e9504b0a62b4d69a50b62072144c71c68f5873c167b8d9"
1023
+ dependencies = [
1024
+ "ahash",
1025
+ "indexmap",
1026
+ "is-terminal",
1027
+ "itoa",
1028
+ "log",
1029
+ "num-format",
1030
+ "once_cell",
1031
+ "quick-xml",
1032
+ "rgb",
1033
+ "str_stack",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "ipnet"
1038
+ version = "2.9.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1041
+
1042
+ [[package]]
1043
+ name = "is-terminal"
1044
+ version = "0.4.12"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
1047
+ dependencies = [
1048
+ "hermit-abi",
1049
+ "libc",
1050
+ "windows-sys 0.52.0",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "is_terminal_polyfill"
1055
+ version = "1.70.1"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1058
+
1059
+ [[package]]
1060
+ name = "iso8601"
1061
+ version = "0.6.1"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153"
1064
+ dependencies = [
1065
+ "nom",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "itertools"
1070
+ version = "0.10.5"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1073
+ dependencies = [
1074
+ "either",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "itoa"
1079
+ version = "1.0.10"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
1082
+
1083
+ [[package]]
1084
+ name = "js-sys"
1085
+ version = "0.3.72"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
1088
+ dependencies = [
1089
+ "wasm-bindgen",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "json_value_merge"
1094
+ version = "2.0.0"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "2b0a3aadd8aaadfe2be6fd22bbdb5dbc63494ce22b7c124211f684fd757b3215"
1097
+ dependencies = [
1098
+ "serde_json",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "jsonschema"
1103
+ version = "0.17.1"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "2a071f4f7efc9a9118dfb627a0a94ef247986e1ab8606a4c806ae2b3aa3b6978"
1106
+ dependencies = [
1107
+ "ahash",
1108
+ "anyhow",
1109
+ "base64",
1110
+ "bytecount",
1111
+ "fancy-regex",
1112
+ "fraction",
1113
+ "getrandom",
1114
+ "iso8601",
1115
+ "itoa",
1116
+ "memchr",
1117
+ "num-cmp",
1118
+ "once_cell",
1119
+ "parking_lot",
1120
+ "percent-encoding",
1121
+ "regex",
1122
+ "serde",
1123
+ "serde_json",
1124
+ "time",
1125
+ "url",
1126
+ "uuid",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "lazy_static"
1131
+ version = "1.4.0"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1134
+
1135
+ [[package]]
1136
+ name = "libc"
1137
+ version = "0.2.161"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
1140
+
1141
+ [[package]]
1142
+ name = "linux-raw-sys"
1143
+ version = "0.4.13"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
1146
+
1147
+ [[package]]
1148
+ name = "lock_api"
1149
+ version = "0.4.11"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
1152
+ dependencies = [
1153
+ "autocfg",
1154
+ "scopeguard",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "log"
1159
+ version = "0.4.20"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
1162
+
1163
+ [[package]]
1164
+ name = "logos"
1165
+ version = "0.12.1"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1"
1168
+ dependencies = [
1169
+ "logos-derive",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "logos-derive"
1174
+ version = "0.12.1"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c"
1177
+ dependencies = [
1178
+ "beef",
1179
+ "fnv",
1180
+ "proc-macro2",
1181
+ "quote",
1182
+ "regex-syntax 0.6.29",
1183
+ "syn 1.0.109",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "lru"
1188
+ version = "0.11.1"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21"
1191
+ dependencies = [
1192
+ "hashbrown",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "lsp-async-stub"
1197
+ version = "0.7.0"
1198
+ dependencies = [
1199
+ "anyhow",
1200
+ "async-trait",
1201
+ "futures",
1202
+ "getrandom",
1203
+ "lsp-types",
1204
+ "rowan",
1205
+ "serde",
1206
+ "serde_json",
1207
+ "tokio",
1208
+ "tracing",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "lsp-types"
1213
+ version = "0.93.2"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "9be6e9c7e2d18f651974370d7aff703f9513e0df6e464fd795660edc77e6ca51"
1216
+ dependencies = [
1217
+ "bitflags 1.3.2",
1218
+ "serde",
1219
+ "serde_json",
1220
+ "serde_repr",
1221
+ "url",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "matchers"
1226
+ version = "0.1.0"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1229
+ dependencies = [
1230
+ "regex-automata 0.1.10",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "memchr"
1235
+ version = "2.7.1"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
1238
+
1239
+ [[package]]
1240
+ name = "memmap2"
1241
+ version = "0.9.4"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
1244
+ dependencies = [
1245
+ "libc",
1246
+ ]
1247
+
1248
+ [[package]]
1249
+ name = "memoffset"
1250
+ version = "0.9.0"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
1253
+ dependencies = [
1254
+ "autocfg",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "mime"
1259
+ version = "0.3.17"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1262
+
1263
+ [[package]]
1264
+ name = "minimal-lexical"
1265
+ version = "0.2.1"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1268
+
1269
+ [[package]]
1270
+ name = "miniz_oxide"
1271
+ version = "0.7.2"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1274
+ dependencies = [
1275
+ "adler",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "mio"
1280
+ version = "0.8.11"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1283
+ dependencies = [
1284
+ "libc",
1285
+ "wasi",
1286
+ "windows-sys 0.48.0",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "native-tls"
1291
+ version = "0.2.11"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
1294
+ dependencies = [
1295
+ "lazy_static",
1296
+ "libc",
1297
+ "log",
1298
+ "openssl",
1299
+ "openssl-probe",
1300
+ "openssl-sys",
1301
+ "schannel",
1302
+ "security-framework",
1303
+ "security-framework-sys",
1304
+ "tempfile",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "nix"
1309
+ version = "0.26.4"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
1312
+ dependencies = [
1313
+ "bitflags 1.3.2",
1314
+ "cfg-if",
1315
+ "libc",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "nix"
1320
+ version = "0.27.1"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
1323
+ dependencies = [
1324
+ "bitflags 2.4.2",
1325
+ "cfg-if",
1326
+ "libc",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "nom"
1331
+ version = "7.1.3"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1334
+ dependencies = [
1335
+ "memchr",
1336
+ "minimal-lexical",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "nu-ansi-term"
1341
+ version = "0.46.0"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1344
+ dependencies = [
1345
+ "overload",
1346
+ "winapi",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "num"
1351
+ version = "0.4.3"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1354
+ dependencies = [
1355
+ "num-bigint",
1356
+ "num-complex",
1357
+ "num-integer",
1358
+ "num-iter",
1359
+ "num-rational",
1360
+ "num-traits",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "num-bigint"
1365
+ version = "0.4.6"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1368
+ dependencies = [
1369
+ "num-integer",
1370
+ "num-traits",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "num-cmp"
1375
+ version = "0.1.0"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
1378
+
1379
+ [[package]]
1380
+ name = "num-complex"
1381
+ version = "0.4.6"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1384
+ dependencies = [
1385
+ "num-traits",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "num-conv"
1390
+ version = "0.1.0"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1393
+
1394
+ [[package]]
1395
+ name = "num-format"
1396
+ version = "0.4.4"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
1399
+ dependencies = [
1400
+ "arrayvec",
1401
+ "itoa",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "num-integer"
1406
+ version = "0.1.46"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1409
+ dependencies = [
1410
+ "num-traits",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "num-iter"
1415
+ version = "0.1.45"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1418
+ dependencies = [
1419
+ "autocfg",
1420
+ "num-integer",
1421
+ "num-traits",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "num-rational"
1426
+ version = "0.4.2"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1429
+ dependencies = [
1430
+ "num-bigint",
1431
+ "num-integer",
1432
+ "num-traits",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "num-traits"
1437
+ version = "0.2.19"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1440
+ dependencies = [
1441
+ "autocfg",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "num_cpus"
1446
+ version = "1.16.0"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1449
+ dependencies = [
1450
+ "hermit-abi",
1451
+ "libc",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "object"
1456
+ version = "0.32.2"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
1459
+ dependencies = [
1460
+ "memchr",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "once_cell"
1465
+ version = "1.20.2"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1468
+
1469
+ [[package]]
1470
+ name = "oorandom"
1471
+ version = "11.1.3"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
1474
+
1475
+ [[package]]
1476
+ name = "openssl"
1477
+ version = "0.10.66"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
1480
+ dependencies = [
1481
+ "bitflags 2.4.2",
1482
+ "cfg-if",
1483
+ "foreign-types",
1484
+ "libc",
1485
+ "once_cell",
1486
+ "openssl-macros",
1487
+ "openssl-sys",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "openssl-macros"
1492
+ version = "0.1.1"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1495
+ dependencies = [
1496
+ "proc-macro2",
1497
+ "quote",
1498
+ "syn 2.0.48",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "openssl-probe"
1503
+ version = "0.1.5"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1506
+
1507
+ [[package]]
1508
+ name = "openssl-sys"
1509
+ version = "0.9.103"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
1512
+ dependencies = [
1513
+ "cc",
1514
+ "libc",
1515
+ "pkg-config",
1516
+ "vcpkg",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "overload"
1521
+ version = "0.1.1"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1524
+
1525
+ [[package]]
1526
+ name = "pad"
1527
+ version = "0.1.6"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3"
1530
+ dependencies = [
1531
+ "unicode-width",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "parking_lot"
1536
+ version = "0.12.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1539
+ dependencies = [
1540
+ "lock_api",
1541
+ "parking_lot_core",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "parking_lot_core"
1546
+ version = "0.9.9"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
1549
+ dependencies = [
1550
+ "cfg-if",
1551
+ "libc",
1552
+ "redox_syscall",
1553
+ "smallvec",
1554
+ "windows-targets 0.48.5",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "percent-encoding"
1559
+ version = "2.3.1"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1562
+
1563
+ [[package]]
1564
+ name = "pin-project-lite"
1565
+ version = "0.2.13"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
1568
+
1569
+ [[package]]
1570
+ name = "pin-utils"
1571
+ version = "0.1.0"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1574
+
1575
+ [[package]]
1576
+ name = "pipelex-cli"
1577
+ version = "0.1.4"
1578
+ dependencies = [
1579
+ "anyhow",
1580
+ "async-ctrlc",
1581
+ "clap",
1582
+ "clap_complete",
1583
+ "lsp-async-stub",
1584
+ "pipelex-common",
1585
+ "reqwest",
1586
+ "taplo-cli",
1587
+ "taplo-common",
1588
+ "taplo-lsp",
1589
+ "tokio",
1590
+ "toml",
1591
+ "tracing",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "pipelex-common"
1596
+ version = "0.1.0"
1597
+ dependencies = [
1598
+ "anyhow",
1599
+ "async-trait",
1600
+ "futures",
1601
+ "taplo",
1602
+ "taplo-common",
1603
+ "time",
1604
+ "tokio",
1605
+ "tracing",
1606
+ "url",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "pipelex-lsp"
1611
+ version = "0.1.0"
1612
+ dependencies = [
1613
+ "futures",
1614
+ "lsp-async-stub",
1615
+ "pipelex-common",
1616
+ "taplo-common",
1617
+ "taplo-lsp",
1618
+ "tracing",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "pipelex-wasm"
1623
+ version = "0.1.0"
1624
+ dependencies = [
1625
+ "anyhow",
1626
+ "async-trait",
1627
+ "clap",
1628
+ "console_error_panic_hook",
1629
+ "futures",
1630
+ "getrandom",
1631
+ "indexmap",
1632
+ "js-sys",
1633
+ "lsp-async-stub",
1634
+ "pipelex-cli",
1635
+ "pipelex-common",
1636
+ "serde",
1637
+ "serde-wasm-bindgen",
1638
+ "serde_json",
1639
+ "taplo",
1640
+ "taplo-cli",
1641
+ "taplo-common",
1642
+ "taplo-lsp",
1643
+ "time",
1644
+ "tokio",
1645
+ "tracing",
1646
+ "url",
1647
+ "wasm-bindgen",
1648
+ "wasm-bindgen-futures",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "pkg-config"
1653
+ version = "0.3.30"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
1656
+
1657
+ [[package]]
1658
+ name = "plotters"
1659
+ version = "0.3.5"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
1662
+ dependencies = [
1663
+ "num-traits",
1664
+ "plotters-backend",
1665
+ "plotters-svg",
1666
+ "wasm-bindgen",
1667
+ "web-sys",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "plotters-backend"
1672
+ version = "0.3.5"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
1675
+
1676
+ [[package]]
1677
+ name = "plotters-svg"
1678
+ version = "0.3.5"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
1681
+ dependencies = [
1682
+ "plotters-backend",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "powerfmt"
1687
+ version = "0.2.0"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1690
+
1691
+ [[package]]
1692
+ name = "pprof"
1693
+ version = "0.14.0"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "ebbe2f8898beba44815fdc9e5a4ae9c929e21c5dc29b0c774a15555f7f58d6d0"
1696
+ dependencies = [
1697
+ "aligned-vec",
1698
+ "backtrace",
1699
+ "cfg-if",
1700
+ "criterion",
1701
+ "findshlibs",
1702
+ "inferno",
1703
+ "libc",
1704
+ "log",
1705
+ "nix 0.26.4",
1706
+ "once_cell",
1707
+ "parking_lot",
1708
+ "smallvec",
1709
+ "symbolic-demangle",
1710
+ "tempfile",
1711
+ "thiserror",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "prettydiff"
1716
+ version = "0.6.4"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "8ff1fec61082821f8236cf6c0c14e8172b62ce8a72a0eedc30d3b247bb68dc11"
1719
+ dependencies = [
1720
+ "ansi_term",
1721
+ "pad",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "proc-macro2"
1726
+ version = "1.0.78"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
1729
+ dependencies = [
1730
+ "unicode-ident",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "quick-xml"
1735
+ version = "0.26.0"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
1738
+ dependencies = [
1739
+ "memchr",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "quote"
1744
+ version = "1.0.35"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
1747
+ dependencies = [
1748
+ "proc-macro2",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "rayon"
1753
+ version = "1.8.1"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
1756
+ dependencies = [
1757
+ "either",
1758
+ "rayon-core",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "rayon-core"
1763
+ version = "1.12.1"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1766
+ dependencies = [
1767
+ "crossbeam-deque",
1768
+ "crossbeam-utils",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "redox_syscall"
1773
+ version = "0.4.1"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1776
+ dependencies = [
1777
+ "bitflags 1.3.2",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "regex"
1782
+ version = "1.10.3"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
1785
+ dependencies = [
1786
+ "aho-corasick",
1787
+ "memchr",
1788
+ "regex-automata 0.4.5",
1789
+ "regex-syntax 0.8.5",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "regex-automata"
1794
+ version = "0.1.10"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1797
+ dependencies = [
1798
+ "regex-syntax 0.6.29",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "regex-automata"
1803
+ version = "0.4.5"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
1806
+ dependencies = [
1807
+ "aho-corasick",
1808
+ "memchr",
1809
+ "regex-syntax 0.8.5",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "regex-syntax"
1814
+ version = "0.6.29"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1817
+
1818
+ [[package]]
1819
+ name = "regex-syntax"
1820
+ version = "0.8.5"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1823
+
1824
+ [[package]]
1825
+ name = "reqwest"
1826
+ version = "0.11.27"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
1829
+ dependencies = [
1830
+ "base64",
1831
+ "bytes",
1832
+ "encoding_rs",
1833
+ "futures-core",
1834
+ "futures-util",
1835
+ "h2",
1836
+ "http",
1837
+ "http-body",
1838
+ "hyper",
1839
+ "hyper-rustls",
1840
+ "hyper-tls",
1841
+ "ipnet",
1842
+ "js-sys",
1843
+ "log",
1844
+ "mime",
1845
+ "native-tls",
1846
+ "once_cell",
1847
+ "percent-encoding",
1848
+ "pin-project-lite",
1849
+ "rustls",
1850
+ "rustls-pemfile",
1851
+ "serde",
1852
+ "serde_json",
1853
+ "serde_urlencoded",
1854
+ "sync_wrapper",
1855
+ "system-configuration",
1856
+ "tokio",
1857
+ "tokio-native-tls",
1858
+ "tokio-rustls",
1859
+ "tower-service",
1860
+ "url",
1861
+ "wasm-bindgen",
1862
+ "wasm-bindgen-futures",
1863
+ "web-sys",
1864
+ "webpki-roots",
1865
+ "winreg",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "rgb"
1870
+ version = "0.8.37"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8"
1873
+ dependencies = [
1874
+ "bytemuck",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "ring"
1879
+ version = "0.17.7"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
1882
+ dependencies = [
1883
+ "cc",
1884
+ "getrandom",
1885
+ "libc",
1886
+ "spin",
1887
+ "untrusted",
1888
+ "windows-sys 0.48.0",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "rowan"
1893
+ version = "0.15.15"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "32a58fa8a7ccff2aec4f39cc45bf5f985cec7125ab271cf681c279fd00192b49"
1896
+ dependencies = [
1897
+ "countme",
1898
+ "hashbrown",
1899
+ "memoffset",
1900
+ "rustc-hash",
1901
+ "text-size",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "rustc-demangle"
1906
+ version = "0.1.23"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
1909
+
1910
+ [[package]]
1911
+ name = "rustc-hash"
1912
+ version = "1.1.0"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1915
+
1916
+ [[package]]
1917
+ name = "rustix"
1918
+ version = "0.38.31"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949"
1921
+ dependencies = [
1922
+ "bitflags 2.4.2",
1923
+ "errno",
1924
+ "libc",
1925
+ "linux-raw-sys",
1926
+ "windows-sys 0.52.0",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "rustls"
1931
+ version = "0.21.12"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
1934
+ dependencies = [
1935
+ "log",
1936
+ "ring",
1937
+ "rustls-webpki",
1938
+ "sct",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "rustls-pemfile"
1943
+ version = "1.0.4"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
1946
+ dependencies = [
1947
+ "base64",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "rustls-webpki"
1952
+ version = "0.101.7"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
1955
+ dependencies = [
1956
+ "ring",
1957
+ "untrusted",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "rustversion"
1962
+ version = "1.0.19"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
1965
+
1966
+ [[package]]
1967
+ name = "ryu"
1968
+ version = "1.0.16"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
1971
+
1972
+ [[package]]
1973
+ name = "same-file"
1974
+ version = "1.0.6"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1977
+ dependencies = [
1978
+ "winapi-util",
1979
+ ]
1980
+
1981
+ [[package]]
1982
+ name = "schannel"
1983
+ version = "0.1.23"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
1986
+ dependencies = [
1987
+ "windows-sys 0.52.0",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "schemars"
1992
+ version = "0.8.16"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "45a28f4c49489add4ce10783f7911893516f15afe45d015608d41faca6bc4d29"
1995
+ dependencies = [
1996
+ "dyn-clone",
1997
+ "schemars_derive",
1998
+ "serde",
1999
+ "serde_json",
2000
+ "url",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "schemars_derive"
2005
+ version = "0.8.16"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "c767fd6fa65d9ccf9cf026122c1b555f2ef9a4f0cea69da4d7dbc3e258d30967"
2008
+ dependencies = [
2009
+ "proc-macro2",
2010
+ "quote",
2011
+ "serde_derive_internals",
2012
+ "syn 1.0.109",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "scopeguard"
2017
+ version = "1.2.0"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2020
+
2021
+ [[package]]
2022
+ name = "sct"
2023
+ version = "0.7.1"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2026
+ dependencies = [
2027
+ "ring",
2028
+ "untrusted",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "security-framework"
2033
+ version = "2.9.2"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
2036
+ dependencies = [
2037
+ "bitflags 1.3.2",
2038
+ "core-foundation",
2039
+ "core-foundation-sys",
2040
+ "libc",
2041
+ "security-framework-sys",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "security-framework-sys"
2046
+ version = "2.9.1"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
2049
+ dependencies = [
2050
+ "core-foundation-sys",
2051
+ "libc",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "semver"
2056
+ version = "1.0.21"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
2059
+ dependencies = [
2060
+ "serde",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "serde"
2065
+ version = "1.0.196"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32"
2068
+ dependencies = [
2069
+ "serde_derive",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "serde-wasm-bindgen"
2074
+ version = "0.6.5"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2077
+ dependencies = [
2078
+ "js-sys",
2079
+ "serde",
2080
+ "wasm-bindgen",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "serde_derive"
2085
+ version = "1.0.196"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67"
2088
+ dependencies = [
2089
+ "proc-macro2",
2090
+ "quote",
2091
+ "syn 2.0.48",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "serde_derive_internals"
2096
+ version = "0.26.0"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c"
2099
+ dependencies = [
2100
+ "proc-macro2",
2101
+ "quote",
2102
+ "syn 1.0.109",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "serde_json"
2107
+ version = "1.0.113"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
2110
+ dependencies = [
2111
+ "indexmap",
2112
+ "itoa",
2113
+ "ryu",
2114
+ "serde",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "serde_repr"
2119
+ version = "0.1.18"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb"
2122
+ dependencies = [
2123
+ "proc-macro2",
2124
+ "quote",
2125
+ "syn 2.0.48",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "serde_spanned"
2130
+ version = "0.6.5"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
2133
+ dependencies = [
2134
+ "serde",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "serde_urlencoded"
2139
+ version = "0.7.1"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2142
+ dependencies = [
2143
+ "form_urlencoded",
2144
+ "itoa",
2145
+ "ryu",
2146
+ "serde",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "sha1"
2151
+ version = "0.10.6"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2154
+ dependencies = [
2155
+ "cfg-if",
2156
+ "cpufeatures",
2157
+ "digest",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "sharded-slab"
2162
+ version = "0.1.7"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2165
+ dependencies = [
2166
+ "lazy_static",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "slab"
2171
+ version = "0.4.9"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2174
+ dependencies = [
2175
+ "autocfg",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "smallvec"
2180
+ version = "1.13.1"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
2183
+
2184
+ [[package]]
2185
+ name = "socket2"
2186
+ version = "0.5.5"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
2189
+ dependencies = [
2190
+ "libc",
2191
+ "windows-sys 0.48.0",
2192
+ ]
2193
+
2194
+ [[package]]
2195
+ name = "spin"
2196
+ version = "0.9.8"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2199
+
2200
+ [[package]]
2201
+ name = "stable_deref_trait"
2202
+ version = "1.2.0"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2205
+
2206
+ [[package]]
2207
+ name = "str_stack"
2208
+ version = "0.1.0"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
2211
+
2212
+ [[package]]
2213
+ name = "strsim"
2214
+ version = "0.11.1"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2217
+
2218
+ [[package]]
2219
+ name = "symbolic-common"
2220
+ version = "12.10.0"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "16629323a4ec5268ad23a575110a724ad4544aae623451de600c747bf87b36cf"
2223
+ dependencies = [
2224
+ "debugid",
2225
+ "memmap2",
2226
+ "stable_deref_trait",
2227
+ "uuid",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "symbolic-demangle"
2232
+ version = "12.10.0"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "48c043a45f08f41187414592b3ceb53fb0687da57209cc77401767fb69d5b596"
2235
+ dependencies = [
2236
+ "cpp_demangle",
2237
+ "rustc-demangle",
2238
+ "symbolic-common",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "syn"
2243
+ version = "1.0.109"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2246
+ dependencies = [
2247
+ "proc-macro2",
2248
+ "quote",
2249
+ "unicode-ident",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "syn"
2254
+ version = "2.0.48"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
2257
+ dependencies = [
2258
+ "proc-macro2",
2259
+ "quote",
2260
+ "unicode-ident",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "sync_wrapper"
2265
+ version = "0.1.2"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2268
+
2269
+ [[package]]
2270
+ name = "system-configuration"
2271
+ version = "0.5.1"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
2274
+ dependencies = [
2275
+ "bitflags 1.3.2",
2276
+ "core-foundation",
2277
+ "system-configuration-sys",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "system-configuration-sys"
2282
+ version = "0.5.0"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
2285
+ dependencies = [
2286
+ "core-foundation-sys",
2287
+ "libc",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "tap"
2292
+ version = "1.0.1"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2295
+
2296
+ [[package]]
2297
+ name = "taplo"
2298
+ version = "0.14.0"
2299
+ dependencies = [
2300
+ "ahash",
2301
+ "arc-swap",
2302
+ "assert-json-diff",
2303
+ "criterion",
2304
+ "difference",
2305
+ "either",
2306
+ "globset",
2307
+ "itertools",
2308
+ "logos",
2309
+ "once_cell",
2310
+ "pprof",
2311
+ "rowan",
2312
+ "schemars",
2313
+ "serde",
2314
+ "serde_json",
2315
+ "thiserror",
2316
+ "time",
2317
+ "toml",
2318
+ "tracing",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "taplo-cli"
2323
+ version = "0.10.0"
2324
+ dependencies = [
2325
+ "ansi_term",
2326
+ "anyhow",
2327
+ "async-ctrlc",
2328
+ "clap",
2329
+ "clap_complete",
2330
+ "codespan-reporting",
2331
+ "futures",
2332
+ "glob",
2333
+ "hex",
2334
+ "itertools",
2335
+ "lsp-async-stub",
2336
+ "once_cell",
2337
+ "prettydiff",
2338
+ "regex",
2339
+ "reqwest",
2340
+ "schemars",
2341
+ "serde",
2342
+ "serde_json",
2343
+ "taplo",
2344
+ "taplo-common",
2345
+ "taplo-lsp",
2346
+ "time",
2347
+ "tokio",
2348
+ "toml",
2349
+ "tracing",
2350
+ "tracing-subscriber",
2351
+ "url",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "taplo-common"
2356
+ version = "0.6.0"
2357
+ dependencies = [
2358
+ "ahash",
2359
+ "anyhow",
2360
+ "arc-swap",
2361
+ "async-recursion",
2362
+ "async-trait",
2363
+ "futures",
2364
+ "glob",
2365
+ "globset",
2366
+ "hex",
2367
+ "indexmap",
2368
+ "itertools",
2369
+ "json_value_merge",
2370
+ "jsonschema",
2371
+ "lru",
2372
+ "parking_lot",
2373
+ "percent-encoding",
2374
+ "regex",
2375
+ "reqwest",
2376
+ "schemars",
2377
+ "semver",
2378
+ "serde",
2379
+ "serde_json",
2380
+ "sha1",
2381
+ "tap",
2382
+ "taplo",
2383
+ "thiserror",
2384
+ "time",
2385
+ "tokio",
2386
+ "tracing",
2387
+ "tracing-subscriber",
2388
+ "url",
2389
+ ]
2390
+
2391
+ [[package]]
2392
+ name = "taplo-lsp"
2393
+ version = "0.8.0"
2394
+ dependencies = [
2395
+ "anyhow",
2396
+ "arc-swap",
2397
+ "either",
2398
+ "figment",
2399
+ "futures",
2400
+ "indexmap",
2401
+ "itertools",
2402
+ "lsp-async-stub",
2403
+ "lsp-types",
2404
+ "once_cell",
2405
+ "parking_lot",
2406
+ "regex",
2407
+ "reqwest",
2408
+ "schemars",
2409
+ "serde",
2410
+ "serde_json",
2411
+ "tap",
2412
+ "taplo",
2413
+ "taplo-common",
2414
+ "time",
2415
+ "toml",
2416
+ "tracing",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "taplo-wasm"
2421
+ version = "0.2.1"
2422
+ dependencies = [
2423
+ "anyhow",
2424
+ "async-trait",
2425
+ "clap",
2426
+ "console_error_panic_hook",
2427
+ "futures",
2428
+ "getrandom",
2429
+ "indexmap",
2430
+ "js-sys",
2431
+ "lsp-async-stub",
2432
+ "serde",
2433
+ "serde-wasm-bindgen",
2434
+ "serde_json",
2435
+ "taplo",
2436
+ "taplo-cli",
2437
+ "taplo-common",
2438
+ "taplo-lsp",
2439
+ "time",
2440
+ "tokio",
2441
+ "tracing",
2442
+ "url",
2443
+ "wasm-bindgen",
2444
+ "wasm-bindgen-futures",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "tempfile"
2449
+ version = "3.10.0"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67"
2452
+ dependencies = [
2453
+ "cfg-if",
2454
+ "fastrand",
2455
+ "rustix",
2456
+ "windows-sys 0.52.0",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "termcolor"
2461
+ version = "1.4.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2464
+ dependencies = [
2465
+ "winapi-util",
2466
+ ]
2467
+
2468
+ [[package]]
2469
+ name = "text-size"
2470
+ version = "1.1.1"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
2473
+
2474
+ [[package]]
2475
+ name = "thiserror"
2476
+ version = "1.0.57"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
2479
+ dependencies = [
2480
+ "thiserror-impl",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "thiserror-impl"
2485
+ version = "1.0.57"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
2488
+ dependencies = [
2489
+ "proc-macro2",
2490
+ "quote",
2491
+ "syn 2.0.48",
2492
+ ]
2493
+
2494
+ [[package]]
2495
+ name = "thread_local"
2496
+ version = "1.1.7"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2499
+ dependencies = [
2500
+ "cfg-if",
2501
+ "once_cell",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "time"
2506
+ version = "0.3.36"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2509
+ dependencies = [
2510
+ "deranged",
2511
+ "itoa",
2512
+ "num-conv",
2513
+ "powerfmt",
2514
+ "serde",
2515
+ "time-core",
2516
+ "time-macros",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "time-core"
2521
+ version = "0.1.2"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2524
+
2525
+ [[package]]
2526
+ name = "time-macros"
2527
+ version = "0.2.18"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2530
+ dependencies = [
2531
+ "num-conv",
2532
+ "time-core",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "tinytemplate"
2537
+ version = "1.2.1"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2540
+ dependencies = [
2541
+ "serde",
2542
+ "serde_json",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "tinyvec"
2547
+ version = "1.6.0"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2550
+ dependencies = [
2551
+ "tinyvec_macros",
2552
+ ]
2553
+
2554
+ [[package]]
2555
+ name = "tinyvec_macros"
2556
+ version = "0.1.1"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2559
+
2560
+ [[package]]
2561
+ name = "tokio"
2562
+ version = "1.36.0"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
2565
+ dependencies = [
2566
+ "backtrace",
2567
+ "bytes",
2568
+ "libc",
2569
+ "mio",
2570
+ "num_cpus",
2571
+ "parking_lot",
2572
+ "pin-project-lite",
2573
+ "socket2",
2574
+ "tokio-macros",
2575
+ "windows-sys 0.48.0",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "tokio-macros"
2580
+ version = "2.2.0"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2583
+ dependencies = [
2584
+ "proc-macro2",
2585
+ "quote",
2586
+ "syn 2.0.48",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "tokio-native-tls"
2591
+ version = "0.3.1"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2594
+ dependencies = [
2595
+ "native-tls",
2596
+ "tokio",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "tokio-rustls"
2601
+ version = "0.24.1"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2604
+ dependencies = [
2605
+ "rustls",
2606
+ "tokio",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "tokio-util"
2611
+ version = "0.7.11"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
2614
+ dependencies = [
2615
+ "bytes",
2616
+ "futures-core",
2617
+ "futures-sink",
2618
+ "pin-project-lite",
2619
+ "tokio",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "toml"
2624
+ version = "0.7.8"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
2627
+ dependencies = [
2628
+ "serde",
2629
+ "serde_spanned",
2630
+ "toml_datetime",
2631
+ "toml_edit",
2632
+ ]
2633
+
2634
+ [[package]]
2635
+ name = "toml_datetime"
2636
+ version = "0.6.5"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
2639
+ dependencies = [
2640
+ "serde",
2641
+ ]
2642
+
2643
+ [[package]]
2644
+ name = "toml_edit"
2645
+ version = "0.19.15"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
2648
+ dependencies = [
2649
+ "indexmap",
2650
+ "serde",
2651
+ "serde_spanned",
2652
+ "toml_datetime",
2653
+ "winnow",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "tower-service"
2658
+ version = "0.3.2"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2661
+
2662
+ [[package]]
2663
+ name = "tracing"
2664
+ version = "0.1.40"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2667
+ dependencies = [
2668
+ "pin-project-lite",
2669
+ "tracing-attributes",
2670
+ "tracing-core",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "tracing-attributes"
2675
+ version = "0.1.27"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2678
+ dependencies = [
2679
+ "proc-macro2",
2680
+ "quote",
2681
+ "syn 2.0.48",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "tracing-core"
2686
+ version = "0.1.32"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2689
+ dependencies = [
2690
+ "once_cell",
2691
+ "valuable",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "tracing-log"
2696
+ version = "0.2.0"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2699
+ dependencies = [
2700
+ "log",
2701
+ "once_cell",
2702
+ "tracing-core",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "tracing-subscriber"
2707
+ version = "0.3.18"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
2710
+ dependencies = [
2711
+ "matchers",
2712
+ "nu-ansi-term",
2713
+ "once_cell",
2714
+ "regex",
2715
+ "sharded-slab",
2716
+ "smallvec",
2717
+ "thread_local",
2718
+ "tracing",
2719
+ "tracing-core",
2720
+ "tracing-log",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "try-lock"
2725
+ version = "0.2.5"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2728
+
2729
+ [[package]]
2730
+ name = "typenum"
2731
+ version = "1.17.0"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2734
+
2735
+ [[package]]
2736
+ name = "uncased"
2737
+ version = "0.9.10"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
2740
+ dependencies = [
2741
+ "version_check",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "unicode-bidi"
2746
+ version = "0.3.15"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2749
+
2750
+ [[package]]
2751
+ name = "unicode-ident"
2752
+ version = "1.0.12"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2755
+
2756
+ [[package]]
2757
+ name = "unicode-normalization"
2758
+ version = "0.1.22"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2761
+ dependencies = [
2762
+ "tinyvec",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "unicode-width"
2767
+ version = "0.1.11"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2770
+
2771
+ [[package]]
2772
+ name = "untrusted"
2773
+ version = "0.9.0"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2776
+
2777
+ [[package]]
2778
+ name = "url"
2779
+ version = "2.5.0"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2782
+ dependencies = [
2783
+ "form_urlencoded",
2784
+ "idna",
2785
+ "percent-encoding",
2786
+ "serde",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "utf8parse"
2791
+ version = "0.2.2"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2794
+
2795
+ [[package]]
2796
+ name = "uuid"
2797
+ version = "1.7.0"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
2800
+
2801
+ [[package]]
2802
+ name = "valuable"
2803
+ version = "0.1.0"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2806
+
2807
+ [[package]]
2808
+ name = "vcpkg"
2809
+ version = "0.2.15"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2812
+
2813
+ [[package]]
2814
+ name = "version_check"
2815
+ version = "0.9.4"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2818
+
2819
+ [[package]]
2820
+ name = "walkdir"
2821
+ version = "2.5.0"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2824
+ dependencies = [
2825
+ "same-file",
2826
+ "winapi-util",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "want"
2831
+ version = "0.3.1"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2834
+ dependencies = [
2835
+ "try-lock",
2836
+ ]
2837
+
2838
+ [[package]]
2839
+ name = "wasi"
2840
+ version = "0.11.0+wasi-snapshot-preview1"
2841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2842
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2843
+
2844
+ [[package]]
2845
+ name = "wasm-bindgen"
2846
+ version = "0.2.100"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2849
+ dependencies = [
2850
+ "cfg-if",
2851
+ "once_cell",
2852
+ "rustversion",
2853
+ "wasm-bindgen-macro",
2854
+ ]
2855
+
2856
+ [[package]]
2857
+ name = "wasm-bindgen-backend"
2858
+ version = "0.2.100"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2861
+ dependencies = [
2862
+ "bumpalo",
2863
+ "log",
2864
+ "proc-macro2",
2865
+ "quote",
2866
+ "syn 2.0.48",
2867
+ "wasm-bindgen-shared",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "wasm-bindgen-futures"
2872
+ version = "0.4.45"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
2875
+ dependencies = [
2876
+ "cfg-if",
2877
+ "js-sys",
2878
+ "wasm-bindgen",
2879
+ "web-sys",
2880
+ ]
2881
+
2882
+ [[package]]
2883
+ name = "wasm-bindgen-macro"
2884
+ version = "0.2.100"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2887
+ dependencies = [
2888
+ "quote",
2889
+ "wasm-bindgen-macro-support",
2890
+ ]
2891
+
2892
+ [[package]]
2893
+ name = "wasm-bindgen-macro-support"
2894
+ version = "0.2.100"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2897
+ dependencies = [
2898
+ "proc-macro2",
2899
+ "quote",
2900
+ "syn 2.0.48",
2901
+ "wasm-bindgen-backend",
2902
+ "wasm-bindgen-shared",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "wasm-bindgen-shared"
2907
+ version = "0.2.100"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2910
+ dependencies = [
2911
+ "unicode-ident",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "web-sys"
2916
+ version = "0.3.68"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446"
2919
+ dependencies = [
2920
+ "js-sys",
2921
+ "wasm-bindgen",
2922
+ ]
2923
+
2924
+ [[package]]
2925
+ name = "webpki-roots"
2926
+ version = "0.25.4"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
2929
+
2930
+ [[package]]
2931
+ name = "winapi"
2932
+ version = "0.3.9"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2935
+ dependencies = [
2936
+ "winapi-i686-pc-windows-gnu",
2937
+ "winapi-x86_64-pc-windows-gnu",
2938
+ ]
2939
+
2940
+ [[package]]
2941
+ name = "winapi-i686-pc-windows-gnu"
2942
+ version = "0.4.0"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2945
+
2946
+ [[package]]
2947
+ name = "winapi-util"
2948
+ version = "0.1.9"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2951
+ dependencies = [
2952
+ "windows-sys 0.52.0",
2953
+ ]
2954
+
2955
+ [[package]]
2956
+ name = "winapi-x86_64-pc-windows-gnu"
2957
+ version = "0.4.0"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2960
+
2961
+ [[package]]
2962
+ name = "windows-sys"
2963
+ version = "0.48.0"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2966
+ dependencies = [
2967
+ "windows-targets 0.48.5",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "windows-sys"
2972
+ version = "0.52.0"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2975
+ dependencies = [
2976
+ "windows-targets 0.52.0",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "windows-targets"
2981
+ version = "0.48.5"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2984
+ dependencies = [
2985
+ "windows_aarch64_gnullvm 0.48.5",
2986
+ "windows_aarch64_msvc 0.48.5",
2987
+ "windows_i686_gnu 0.48.5",
2988
+ "windows_i686_msvc 0.48.5",
2989
+ "windows_x86_64_gnu 0.48.5",
2990
+ "windows_x86_64_gnullvm 0.48.5",
2991
+ "windows_x86_64_msvc 0.48.5",
2992
+ ]
2993
+
2994
+ [[package]]
2995
+ name = "windows-targets"
2996
+ version = "0.52.0"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
2999
+ dependencies = [
3000
+ "windows_aarch64_gnullvm 0.52.0",
3001
+ "windows_aarch64_msvc 0.52.0",
3002
+ "windows_i686_gnu 0.52.0",
3003
+ "windows_i686_msvc 0.52.0",
3004
+ "windows_x86_64_gnu 0.52.0",
3005
+ "windows_x86_64_gnullvm 0.52.0",
3006
+ "windows_x86_64_msvc 0.52.0",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "windows_aarch64_gnullvm"
3011
+ version = "0.48.5"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3014
+
3015
+ [[package]]
3016
+ name = "windows_aarch64_gnullvm"
3017
+ version = "0.52.0"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
3020
+
3021
+ [[package]]
3022
+ name = "windows_aarch64_msvc"
3023
+ version = "0.48.5"
3024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3025
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3026
+
3027
+ [[package]]
3028
+ name = "windows_aarch64_msvc"
3029
+ version = "0.52.0"
3030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3031
+ checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
3032
+
3033
+ [[package]]
3034
+ name = "windows_i686_gnu"
3035
+ version = "0.48.5"
3036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3037
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3038
+
3039
+ [[package]]
3040
+ name = "windows_i686_gnu"
3041
+ version = "0.52.0"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
3044
+
3045
+ [[package]]
3046
+ name = "windows_i686_msvc"
3047
+ version = "0.48.5"
3048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3049
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3050
+
3051
+ [[package]]
3052
+ name = "windows_i686_msvc"
3053
+ version = "0.52.0"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
3056
+
3057
+ [[package]]
3058
+ name = "windows_x86_64_gnu"
3059
+ version = "0.48.5"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3062
+
3063
+ [[package]]
3064
+ name = "windows_x86_64_gnu"
3065
+ version = "0.52.0"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
3068
+
3069
+ [[package]]
3070
+ name = "windows_x86_64_gnullvm"
3071
+ version = "0.48.5"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3074
+
3075
+ [[package]]
3076
+ name = "windows_x86_64_gnullvm"
3077
+ version = "0.52.0"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
3080
+
3081
+ [[package]]
3082
+ name = "windows_x86_64_msvc"
3083
+ version = "0.48.5"
3084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3085
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3086
+
3087
+ [[package]]
3088
+ name = "windows_x86_64_msvc"
3089
+ version = "0.52.0"
3090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
+ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
3092
+
3093
+ [[package]]
3094
+ name = "winnow"
3095
+ version = "0.5.40"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
3098
+ dependencies = [
3099
+ "memchr",
3100
+ ]
3101
+
3102
+ [[package]]
3103
+ name = "winreg"
3104
+ version = "0.50.0"
3105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3106
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
3107
+ dependencies = [
3108
+ "cfg-if",
3109
+ "windows-sys 0.48.0",
3110
+ ]
3111
+
3112
+ [[package]]
3113
+ name = "zerocopy"
3114
+ version = "0.7.32"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
3117
+ dependencies = [
3118
+ "zerocopy-derive",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "zerocopy-derive"
3123
+ version = "0.7.32"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
3126
+ dependencies = [
3127
+ "proc-macro2",
3128
+ "quote",
3129
+ "syn 2.0.48",
3130
+ ]