create-backbone-template 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/README.md +33 -0
  2. package/bin/create-backbone-template.js +5 -0
  3. package/package.json +30 -0
  4. package/src/create-backbone-template.js +204 -0
  5. package/template/.agents/skills/agent-browser/SKILL.md +55 -0
  6. package/template/.agents/skills/create-plan/SKILL.md +52 -0
  7. package/template/.agents/skills/create-plan/agents/openai.yaml +4 -0
  8. package/template/.agents/skills/create-pr-presentation/SKILL.md +86 -0
  9. package/template/.agents/skills/create-pr-presentation/agents/openai.yaml +4 -0
  10. package/template/.agents/skills/implement-plan/SKILL.md +26 -0
  11. package/template/.agents/skills/implement-plan/agents/openai.yaml +4 -0
  12. package/template/.agents/skills/review-plan/SKILL.md +38 -0
  13. package/template/.agents/skills/review-plan/agents/openai.yaml +4 -0
  14. package/template/.env.schema +30 -0
  15. package/template/.env.test +6 -0
  16. package/template/.oxlintrc.json +67 -0
  17. package/template/.vscode/extensions.json +3 -0
  18. package/template/.vscode/settings.json +23 -0
  19. package/template/AGENTS.md +55 -0
  20. package/template/Cargo.lock +2648 -0
  21. package/template/Cargo.toml +29 -0
  22. package/template/Justfile +140 -0
  23. package/template/README.md +72 -0
  24. package/template/TODO.md +1 -0
  25. package/template/_gitignore +12 -0
  26. package/template/buf.gen.yaml +7 -0
  27. package/template/buf.yaml +10 -0
  28. package/template/client/.oxfmtrc.json +8 -0
  29. package/template/client/.oxlintrc.json +57 -0
  30. package/template/client/README.md +19 -0
  31. package/template/client/_gitignore +5 -0
  32. package/template/client/index.html +12 -0
  33. package/template/client/package.json +47 -0
  34. package/template/client/packages/design-system/package.json +19 -0
  35. package/template/client/packages/design-system/src/index.ts +2 -0
  36. package/template/client/packages/design-system-basic/package.json +18 -0
  37. package/template/client/packages/design-system-basic/src/button.stories.tsx +50 -0
  38. package/template/client/packages/design-system-basic/src/button.tsx +26 -0
  39. package/template/client/packages/design-system-basic/src/empty-state.stories.tsx +18 -0
  40. package/template/client/packages/design-system-basic/src/empty-state.tsx +17 -0
  41. package/template/client/packages/design-system-basic/src/form-field.stories.tsx +15 -0
  42. package/template/client/packages/design-system-basic/src/form-field.tsx +10 -0
  43. package/template/client/packages/design-system-basic/src/form.stories.tsx +27 -0
  44. package/template/client/packages/design-system-basic/src/form.tsx +9 -0
  45. package/template/client/packages/design-system-basic/src/heading.stories.tsx +14 -0
  46. package/template/client/packages/design-system-basic/src/heading.tsx +25 -0
  47. package/template/client/packages/design-system-basic/src/index.tsx +15 -0
  48. package/template/client/packages/design-system-basic/src/inline.stories.tsx +13 -0
  49. package/template/client/packages/design-system-basic/src/inline.tsx +5 -0
  50. package/template/client/packages/design-system-basic/src/layout.stories.tsx +24 -0
  51. package/template/client/packages/design-system-basic/src/layout.tsx +14 -0
  52. package/template/client/packages/design-system-basic/src/loader.stories.tsx +8 -0
  53. package/template/client/packages/design-system-basic/src/loader.tsx +11 -0
  54. package/template/client/packages/design-system-basic/src/navigation.stories.tsx +16 -0
  55. package/template/client/packages/design-system-basic/src/navigation.tsx +18 -0
  56. package/template/client/packages/design-system-basic/src/notice.stories.tsx +13 -0
  57. package/template/client/packages/design-system-basic/src/notice.tsx +5 -0
  58. package/template/client/packages/design-system-basic/src/stack.stories.tsx +17 -0
  59. package/template/client/packages/design-system-basic/src/stack.tsx +5 -0
  60. package/template/client/packages/design-system-basic/src/styles.css +254 -0
  61. package/template/client/packages/design-system-basic/src/text-input.stories.tsx +13 -0
  62. package/template/client/packages/design-system-basic/src/text-input.tsx +5 -0
  63. package/template/client/packages/design-system-basic/src/text.stories.tsx +21 -0
  64. package/template/client/packages/design-system-basic/src/text.tsx +5 -0
  65. package/template/client/packages/design-system-contract/package.json +15 -0
  66. package/template/client/packages/design-system-contract/src/button.ts +10 -0
  67. package/template/client/packages/design-system-contract/src/empty-state.ts +9 -0
  68. package/template/client/packages/design-system-contract/src/form-field.ts +9 -0
  69. package/template/client/packages/design-system-contract/src/form.ts +9 -0
  70. package/template/client/packages/design-system-contract/src/heading.ts +9 -0
  71. package/template/client/packages/design-system-contract/src/index.ts +13 -0
  72. package/template/client/packages/design-system-contract/src/inline.ts +7 -0
  73. package/template/client/packages/design-system-contract/src/layout.ts +8 -0
  74. package/template/client/packages/design-system-contract/src/loader.ts +7 -0
  75. package/template/client/packages/design-system-contract/src/navigation.ts +13 -0
  76. package/template/client/packages/design-system-contract/src/notice.ts +8 -0
  77. package/template/client/packages/design-system-contract/src/stack.ts +8 -0
  78. package/template/client/packages/design-system-contract/src/text-input.ts +5 -0
  79. package/template/client/packages/design-system-contract/src/text.ts +9 -0
  80. package/template/client/packages/design-system-lint/fixtures/invalid/external-ui-import.tsx +5 -0
  81. package/template/client/packages/design-system-lint/fixtures/invalid/raw-dom-jsx.tsx +3 -0
  82. package/template/client/packages/design-system-lint/fixtures/invalid/two-violations.tsx +7 -0
  83. package/template/client/packages/design-system-lint/fixtures/valid/design-system-only.tsx +13 -0
  84. package/template/client/packages/design-system-lint/package.json +23 -0
  85. package/template/client/packages/design-system-lint/src/check-design-system-architecture.ts +22 -0
  86. package/template/client/packages/design-system-lint/src/design-system-architecture.ts +286 -0
  87. package/template/client/packages/design-system-lint/src/oxlint-plugin.ts +11 -0
  88. package/template/client/packages/design-system-lint/src/page-architecture.ts +382 -0
  89. package/template/client/packages/design-system-lint/src/rules.ts +111 -0
  90. package/template/client/packages/design-system-lint/test/design-system-architecture.test.ts +243 -0
  91. package/template/client/packages/design-system-lint/test/oxlint-fixtures.test.ts +159 -0
  92. package/template/client/packages/design-system-lint/test/page-architecture.test.ts +175 -0
  93. package/template/client/packages/design-system-lint/test/rules.test.ts +65 -0
  94. package/template/client/packages/design-system-lint/tsconfig.json +29 -0
  95. package/template/client/src/App.tsx +77 -0
  96. package/template/client/src/design-system-components.test.tsx +75 -0
  97. package/template/client/src/gen/helloworld/v1/helloworld_pb.ts +63 -0
  98. package/template/client/src/main.tsx +18 -0
  99. package/template/client/src/pages/hello/hello-page.stories.tsx +20 -0
  100. package/template/client/src/pages/hello/hello-page.test.tsx +90 -0
  101. package/template/client/src/pages/hello/hello-page.tsx +126 -0
  102. package/template/client/src/pages/page.ts +20 -0
  103. package/template/client/src/testing/create-preview-events.test.ts +36 -0
  104. package/template/client/src/testing/create-preview-events.ts +30 -0
  105. package/template/client/src/vite-env.d.ts +1 -0
  106. package/template/client/tsconfig.json +32 -0
  107. package/template/client/vite.config.ts +21 -0
  108. package/template/client/vite.ladle.config.ts +5 -0
  109. package/template/e2e/.gherkin-lintrc +20 -0
  110. package/template/e2e/.oxfmtrc.json +15 -0
  111. package/template/e2e/.oxlintrc.json +37 -0
  112. package/template/e2e/_gitignore +4 -0
  113. package/template/e2e/features/helloworld.feature +10 -0
  114. package/template/e2e/package.json +42 -0
  115. package/template/e2e/playwright.config.ts +16 -0
  116. package/template/e2e/support/app-gherkin.ts +4 -0
  117. package/template/e2e/support/fixtures.ts +236 -0
  118. package/template/e2e/support/gherkin-fixtures/duplicate-id.feature +9 -0
  119. package/template/e2e/support/gherkin-fixtures/duplicate-id.spec.ts +7 -0
  120. package/template/e2e/support/gherkin-fixtures/extra-implementation.spec.ts +7 -0
  121. package/template/e2e/support/gherkin-fixtures/extra-step.spec.ts +10 -0
  122. package/template/e2e/support/gherkin-fixtures/happy-path.spec.ts +4 -0
  123. package/template/e2e/support/gherkin-fixtures/missing-id.feature +4 -0
  124. package/template/e2e/support/gherkin-fixtures/missing-id.spec.ts +7 -0
  125. package/template/e2e/support/gherkin-fixtures/missing-implementation.spec.ts +7 -0
  126. package/template/e2e/support/gherkin-fixtures/missing-step.spec.ts +7 -0
  127. package/template/e2e/support/gherkin-fixtures/playwright.config.ts +7 -0
  128. package/template/e2e/support/gherkin-fixtures/scenario-outline.feature +9 -0
  129. package/template/e2e/support/gherkin-fixtures/scenario-outline.spec.ts +7 -0
  130. package/template/e2e/support/gherkin-fixtures/step-mismatch.spec.ts +9 -0
  131. package/template/e2e/support/gherkin-fixtures/valid-implementations.ts +23 -0
  132. package/template/e2e/support/gherkin-fixtures/valid-scenarios.feature +26 -0
  133. package/template/e2e/support/gherkin.test.ts +184 -0
  134. package/template/e2e/support/gherkin.ts +321 -0
  135. package/template/e2e/support/oxlint-plugin.test.ts +328 -0
  136. package/template/e2e/support/oxlint-plugin.ts +485 -0
  137. package/template/e2e/tests/helloworld.spec.ts +39 -0
  138. package/template/e2e/tsconfig.json +26 -0
  139. package/template/e2e/tsconfig.oxlint-plugin.json +12 -0
  140. package/template/package.json +9 -0
  141. package/template/pnpm-lock.yaml +10723 -0
  142. package/template/pnpm-workspace.yaml +8 -0
  143. package/template/pr-slide/README.md +95 -0
  144. package/template/pr-slide/package.json +23 -0
  145. package/template/pr-slide/src/cli.js +262 -0
  146. package/template/pr-slide/src/generate-pr-deck.js +833 -0
  147. package/template/pr-slide/src/git-context.js +91 -0
  148. package/template/pr-slide/src/presentation-paths.js +9 -0
  149. package/template/pr-slide/src/presentations.js +53 -0
  150. package/template/pr-slide/test/generate-pr-deck.test.js +118 -0
  151. package/template/pr-slide/test/presentation-paths.test.js +14 -0
  152. package/template/pr-slide/test/presentations.test.js +50 -0
  153. package/template/proto/helloworld/v1/helloworld.proto +15 -0
  154. package/template/scripts/run-e2e.sh +10 -0
  155. package/template/server/Cargo.toml +26 -0
  156. package/template/server/build.rs +9 -0
  157. package/template/server/dylint/backbone_server_lints/.cargo/config.toml +6 -0
  158. package/template/server/dylint/backbone_server_lints/Cargo.lock +1581 -0
  159. package/template/server/dylint/backbone_server_lints/Cargo.toml +21 -0
  160. package/template/server/dylint/backbone_server_lints/README.md +5 -0
  161. package/template/server/dylint/backbone_server_lints/_gitignore +1 -0
  162. package/template/server/dylint/backbone_server_lints/rust-toolchain +3 -0
  163. package/template/server/dylint/backbone_server_lints/src/lib.rs +612 -0
  164. package/template/server/dylint/backbone_server_lints/ui/lib.rs +4 -0
  165. package/template/server/dylint/backbone_server_lints/ui/lib.stderr +10 -0
  166. package/template/server/dylint/backbone_server_lints/ui/long_file.rs +303 -0
  167. package/template/server/dylint/backbone_server_lints/ui/long_file.stderr +6 -0
  168. package/template/server/dylint/backbone_server_lints/ui/main.rs +59 -0
  169. package/template/server/dylint/backbone_server_lints/ui/main.stderr +85 -0
  170. package/template/server/migrations/20260520120000_create_projects.sql +12 -0
  171. package/template/server/migrations/20260524160000_create_hello_world_inputs.sql +12 -0
  172. package/template/server/src/config.rs +27 -0
  173. package/template/server/src/db/hello_world.rs +34 -0
  174. package/template/server/src/db/hello_world_tests.rs +11 -0
  175. package/template/server/src/db/mod.rs +39 -0
  176. package/template/server/src/lib.rs +10 -0
  177. package/template/server/src/main.rs +43 -0
  178. package/template/server/src/rpc/greeter/mod.rs +31 -0
  179. package/template/server/src/rpc/greeter/say_hello.rs +27 -0
  180. package/template/server/src/rpc/mod.rs +8 -0
  181. package/template/server/src/state.rs +13 -0
  182. package/template/skills-lock.json +11 -0
@@ -0,0 +1,2648 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "anyhow"
28
+ version = "1.0.102"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
31
+
32
+ [[package]]
33
+ name = "async-compression"
34
+ version = "0.4.42"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
37
+ dependencies = [
38
+ "compression-codecs",
39
+ "compression-core",
40
+ "pin-project-lite",
41
+ "tokio",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "atoi"
46
+ version = "2.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
49
+ dependencies = [
50
+ "num-traits",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "atomic-waker"
55
+ version = "1.1.2"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
58
+
59
+ [[package]]
60
+ name = "autocfg"
61
+ version = "1.5.0"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
64
+
65
+ [[package]]
66
+ name = "axum"
67
+ version = "0.8.9"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
70
+ dependencies = [
71
+ "axum-core",
72
+ "bytes",
73
+ "form_urlencoded",
74
+ "futures-util",
75
+ "http",
76
+ "http-body",
77
+ "http-body-util",
78
+ "hyper",
79
+ "hyper-util",
80
+ "itoa",
81
+ "matchit",
82
+ "memchr",
83
+ "mime",
84
+ "percent-encoding",
85
+ "pin-project-lite",
86
+ "serde_core",
87
+ "serde_json",
88
+ "serde_path_to_error",
89
+ "serde_urlencoded",
90
+ "sync_wrapper",
91
+ "tokio",
92
+ "tower",
93
+ "tower-layer",
94
+ "tower-service",
95
+ "tracing",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "axum-core"
100
+ version = "0.5.6"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
103
+ dependencies = [
104
+ "bytes",
105
+ "futures-core",
106
+ "http",
107
+ "http-body",
108
+ "http-body-util",
109
+ "mime",
110
+ "pin-project-lite",
111
+ "sync_wrapper",
112
+ "tower-layer",
113
+ "tower-service",
114
+ "tracing",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "base64"
119
+ version = "0.22.1"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
122
+
123
+ [[package]]
124
+ name = "base64ct"
125
+ version = "1.8.3"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
128
+
129
+ [[package]]
130
+ name = "bitflags"
131
+ version = "2.11.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
134
+ dependencies = [
135
+ "serde_core",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "block-buffer"
140
+ version = "0.10.4"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
143
+ dependencies = [
144
+ "generic-array",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "buffa"
149
+ version = "0.5.2"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "e7a22fed63b429c4928fd5ed18dcacd3a98d0df1f06cd7cf651b2bbf3dbf0500"
152
+ dependencies = [
153
+ "base64",
154
+ "bytes",
155
+ "hashbrown 0.15.5",
156
+ "once_cell",
157
+ "serde",
158
+ "serde_json",
159
+ "thiserror",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "buffa-codegen"
164
+ version = "0.5.2"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "dd9774d97c281d07a61006775c675940371c170ae1b454de0e9c013e0acd19f6"
167
+ dependencies = [
168
+ "buffa",
169
+ "buffa-descriptor",
170
+ "prettyplease",
171
+ "proc-macro2",
172
+ "quote",
173
+ "syn",
174
+ "thiserror",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "buffa-descriptor"
179
+ version = "0.5.2"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "c7b942f9242ea5a79c92486460073a0a36cccc314e69fbc2ff08f55467c47b37"
182
+ dependencies = [
183
+ "buffa",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "buffa-types"
188
+ version = "0.5.2"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "5d406a92c781273688fa21eb2641b54b2cf4e6b52e4a1339fd12279b8220313c"
191
+ dependencies = [
192
+ "buffa",
193
+ "bytes",
194
+ "serde",
195
+ "serde_json",
196
+ "thiserror",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "bumpalo"
201
+ version = "3.20.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
204
+
205
+ [[package]]
206
+ name = "byteorder"
207
+ version = "1.5.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
210
+
211
+ [[package]]
212
+ name = "bytes"
213
+ version = "1.11.1"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
216
+ dependencies = [
217
+ "serde",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "cc"
222
+ version = "1.2.62"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
225
+ dependencies = [
226
+ "find-msvc-tools",
227
+ "jobserver",
228
+ "libc",
229
+ "shlex",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "cfg-if"
234
+ version = "1.0.4"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
237
+
238
+ [[package]]
239
+ name = "compression-codecs"
240
+ version = "0.4.38"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
243
+ dependencies = [
244
+ "compression-core",
245
+ "flate2",
246
+ "memchr",
247
+ "zstd",
248
+ "zstd-safe",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "compression-core"
253
+ version = "0.4.32"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
256
+
257
+ [[package]]
258
+ name = "concurrent-queue"
259
+ version = "2.5.0"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
262
+ dependencies = [
263
+ "crossbeam-utils",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "connectrpc"
268
+ version = "0.4.2"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "55cb80f9eb09b593a96880eb1c2588ac6319b129519de8c672f9b8b4ffdeaece"
271
+ dependencies = [
272
+ "async-compression",
273
+ "axum",
274
+ "base64",
275
+ "buffa",
276
+ "bytes",
277
+ "flate2",
278
+ "futures",
279
+ "http",
280
+ "http-body",
281
+ "http-body-util",
282
+ "percent-encoding",
283
+ "pin-project",
284
+ "serde",
285
+ "serde_json",
286
+ "thiserror",
287
+ "tokio",
288
+ "tokio-util",
289
+ "tower",
290
+ "tracing",
291
+ "wasm-bindgen-futures",
292
+ "zstd",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "connectrpc-build"
297
+ version = "0.4.2"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "eec3203af15f7075997d16f8ea0a614bcad86879abe9f8ea70c4df69e74f3c14"
300
+ dependencies = [
301
+ "anyhow",
302
+ "buffa",
303
+ "buffa-codegen",
304
+ "connectrpc-codegen",
305
+ "tempfile",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "connectrpc-codegen"
310
+ version = "0.4.2"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "77590b8d66a279f1741bc56bd358f82ce57f26f5a9576fbb8329bce30ea1e96e"
313
+ dependencies = [
314
+ "anyhow",
315
+ "buffa",
316
+ "buffa-codegen",
317
+ "heck",
318
+ "prettyplease",
319
+ "proc-macro2",
320
+ "quote",
321
+ "syn",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "const-oid"
326
+ version = "0.9.6"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
329
+
330
+ [[package]]
331
+ name = "cpufeatures"
332
+ version = "0.2.17"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
335
+ dependencies = [
336
+ "libc",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "crc"
341
+ version = "3.4.0"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
344
+ dependencies = [
345
+ "crc-catalog",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "crc-catalog"
350
+ version = "2.5.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
353
+
354
+ [[package]]
355
+ name = "crc32fast"
356
+ version = "1.5.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
359
+ dependencies = [
360
+ "cfg-if",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "crossbeam-queue"
365
+ version = "0.3.12"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
368
+ dependencies = [
369
+ "crossbeam-utils",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "crossbeam-utils"
374
+ version = "0.8.21"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
377
+
378
+ [[package]]
379
+ name = "crypto-common"
380
+ version = "0.1.7"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
383
+ dependencies = [
384
+ "generic-array",
385
+ "typenum",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "der"
390
+ version = "0.7.10"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
393
+ dependencies = [
394
+ "const-oid",
395
+ "pem-rfc7468",
396
+ "zeroize",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "digest"
401
+ version = "0.10.7"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
404
+ dependencies = [
405
+ "block-buffer",
406
+ "const-oid",
407
+ "crypto-common",
408
+ "subtle",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "displaydoc"
413
+ version = "0.2.5"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
416
+ dependencies = [
417
+ "proc-macro2",
418
+ "quote",
419
+ "syn",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "dotenvy"
424
+ version = "0.15.7"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
427
+
428
+ [[package]]
429
+ name = "either"
430
+ version = "1.15.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
433
+ dependencies = [
434
+ "serde",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "equivalent"
439
+ version = "1.0.2"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
442
+
443
+ [[package]]
444
+ name = "errno"
445
+ version = "0.3.14"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
448
+ dependencies = [
449
+ "libc",
450
+ "windows-sys 0.61.2",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "etcetera"
455
+ version = "0.8.0"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
458
+ dependencies = [
459
+ "cfg-if",
460
+ "home",
461
+ "windows-sys 0.48.0",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "event-listener"
466
+ version = "5.4.1"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
469
+ dependencies = [
470
+ "concurrent-queue",
471
+ "parking",
472
+ "pin-project-lite",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "fastrand"
477
+ version = "2.4.1"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
480
+
481
+ [[package]]
482
+ name = "find-msvc-tools"
483
+ version = "0.1.9"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
486
+
487
+ [[package]]
488
+ name = "flate2"
489
+ version = "1.1.9"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
492
+ dependencies = [
493
+ "crc32fast",
494
+ "miniz_oxide",
495
+ "zlib-rs",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "flume"
500
+ version = "0.11.1"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
503
+ dependencies = [
504
+ "futures-core",
505
+ "futures-sink",
506
+ "spin",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "fnv"
511
+ version = "1.0.7"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
514
+
515
+ [[package]]
516
+ name = "foldhash"
517
+ version = "0.1.5"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
520
+
521
+ [[package]]
522
+ name = "form_urlencoded"
523
+ version = "1.2.2"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
526
+ dependencies = [
527
+ "percent-encoding",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "futures"
532
+ version = "0.3.32"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
535
+ dependencies = [
536
+ "futures-channel",
537
+ "futures-core",
538
+ "futures-executor",
539
+ "futures-io",
540
+ "futures-sink",
541
+ "futures-task",
542
+ "futures-util",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "futures-channel"
547
+ version = "0.3.32"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
550
+ dependencies = [
551
+ "futures-core",
552
+ "futures-sink",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "futures-core"
557
+ version = "0.3.32"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
560
+
561
+ [[package]]
562
+ name = "futures-executor"
563
+ version = "0.3.32"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
566
+ dependencies = [
567
+ "futures-core",
568
+ "futures-task",
569
+ "futures-util",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "futures-intrusive"
574
+ version = "0.5.0"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
577
+ dependencies = [
578
+ "futures-core",
579
+ "lock_api",
580
+ "parking_lot",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "futures-io"
585
+ version = "0.3.32"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
588
+
589
+ [[package]]
590
+ name = "futures-macro"
591
+ version = "0.3.32"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
594
+ dependencies = [
595
+ "proc-macro2",
596
+ "quote",
597
+ "syn",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "futures-sink"
602
+ version = "0.3.32"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
605
+
606
+ [[package]]
607
+ name = "futures-task"
608
+ version = "0.3.32"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
611
+
612
+ [[package]]
613
+ name = "futures-util"
614
+ version = "0.3.32"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
617
+ dependencies = [
618
+ "futures-channel",
619
+ "futures-core",
620
+ "futures-io",
621
+ "futures-macro",
622
+ "futures-sink",
623
+ "futures-task",
624
+ "memchr",
625
+ "pin-project-lite",
626
+ "slab",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "generic-array"
631
+ version = "0.14.7"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
634
+ dependencies = [
635
+ "typenum",
636
+ "version_check",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "getrandom"
641
+ version = "0.2.17"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
644
+ dependencies = [
645
+ "cfg-if",
646
+ "libc",
647
+ "wasi",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "getrandom"
652
+ version = "0.3.4"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
655
+ dependencies = [
656
+ "cfg-if",
657
+ "libc",
658
+ "r-efi 5.3.0",
659
+ "wasip2",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "getrandom"
664
+ version = "0.4.2"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
667
+ dependencies = [
668
+ "cfg-if",
669
+ "libc",
670
+ "r-efi 6.0.0",
671
+ "wasip2",
672
+ "wasip3",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "h2"
677
+ version = "0.4.14"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
680
+ dependencies = [
681
+ "atomic-waker",
682
+ "bytes",
683
+ "fnv",
684
+ "futures-core",
685
+ "futures-sink",
686
+ "http",
687
+ "indexmap",
688
+ "slab",
689
+ "tokio",
690
+ "tokio-util",
691
+ "tracing",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "hashbrown"
696
+ version = "0.15.5"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
699
+ dependencies = [
700
+ "allocator-api2",
701
+ "equivalent",
702
+ "foldhash",
703
+ "serde",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "hashbrown"
708
+ version = "0.17.1"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
711
+
712
+ [[package]]
713
+ name = "hashlink"
714
+ version = "0.10.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
717
+ dependencies = [
718
+ "hashbrown 0.15.5",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "heck"
723
+ version = "0.5.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
726
+
727
+ [[package]]
728
+ name = "hex"
729
+ version = "0.4.3"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
732
+
733
+ [[package]]
734
+ name = "hkdf"
735
+ version = "0.12.4"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
738
+ dependencies = [
739
+ "hmac",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "hmac"
744
+ version = "0.12.1"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
747
+ dependencies = [
748
+ "digest",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "home"
753
+ version = "0.5.12"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
756
+ dependencies = [
757
+ "windows-sys 0.61.2",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "http"
762
+ version = "1.4.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
765
+ dependencies = [
766
+ "bytes",
767
+ "itoa",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "http-body"
772
+ version = "1.0.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
775
+ dependencies = [
776
+ "bytes",
777
+ "http",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "http-body-util"
782
+ version = "0.1.3"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
785
+ dependencies = [
786
+ "bytes",
787
+ "futures-core",
788
+ "http",
789
+ "http-body",
790
+ "pin-project-lite",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "httparse"
795
+ version = "1.10.1"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
798
+
799
+ [[package]]
800
+ name = "httpdate"
801
+ version = "1.0.3"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
804
+
805
+ [[package]]
806
+ name = "hyper"
807
+ version = "1.9.0"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
810
+ dependencies = [
811
+ "atomic-waker",
812
+ "bytes",
813
+ "futures-channel",
814
+ "futures-core",
815
+ "h2",
816
+ "http",
817
+ "http-body",
818
+ "httparse",
819
+ "httpdate",
820
+ "itoa",
821
+ "pin-project-lite",
822
+ "smallvec",
823
+ "tokio",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "hyper-util"
828
+ version = "0.1.20"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
831
+ dependencies = [
832
+ "bytes",
833
+ "http",
834
+ "http-body",
835
+ "hyper",
836
+ "pin-project-lite",
837
+ "tokio",
838
+ "tower-service",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "icu_collections"
843
+ version = "2.2.0"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
846
+ dependencies = [
847
+ "displaydoc",
848
+ "potential_utf",
849
+ "utf8_iter",
850
+ "yoke",
851
+ "zerofrom",
852
+ "zerovec",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "icu_locale_core"
857
+ version = "2.2.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
860
+ dependencies = [
861
+ "displaydoc",
862
+ "litemap",
863
+ "tinystr",
864
+ "writeable",
865
+ "zerovec",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "icu_normalizer"
870
+ version = "2.2.0"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
873
+ dependencies = [
874
+ "icu_collections",
875
+ "icu_normalizer_data",
876
+ "icu_properties",
877
+ "icu_provider",
878
+ "smallvec",
879
+ "zerovec",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "icu_normalizer_data"
884
+ version = "2.2.0"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
887
+
888
+ [[package]]
889
+ name = "icu_properties"
890
+ version = "2.2.0"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
893
+ dependencies = [
894
+ "icu_collections",
895
+ "icu_locale_core",
896
+ "icu_properties_data",
897
+ "icu_provider",
898
+ "zerotrie",
899
+ "zerovec",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "icu_properties_data"
904
+ version = "2.2.0"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
907
+
908
+ [[package]]
909
+ name = "icu_provider"
910
+ version = "2.2.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
913
+ dependencies = [
914
+ "displaydoc",
915
+ "icu_locale_core",
916
+ "writeable",
917
+ "yoke",
918
+ "zerofrom",
919
+ "zerotrie",
920
+ "zerovec",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "id-arena"
925
+ version = "2.3.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
928
+
929
+ [[package]]
930
+ name = "idna"
931
+ version = "1.1.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
934
+ dependencies = [
935
+ "idna_adapter",
936
+ "smallvec",
937
+ "utf8_iter",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "idna_adapter"
942
+ version = "1.2.2"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
945
+ dependencies = [
946
+ "icu_normalizer",
947
+ "icu_properties",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "indexmap"
952
+ version = "2.14.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
955
+ dependencies = [
956
+ "equivalent",
957
+ "hashbrown 0.17.1",
958
+ "serde",
959
+ "serde_core",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "itoa"
964
+ version = "1.0.18"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
967
+
968
+ [[package]]
969
+ name = "jobserver"
970
+ version = "0.1.34"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
973
+ dependencies = [
974
+ "getrandom 0.3.4",
975
+ "libc",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "js-sys"
980
+ version = "0.3.98"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
983
+ dependencies = [
984
+ "cfg-if",
985
+ "futures-util",
986
+ "once_cell",
987
+ "wasm-bindgen",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "lazy_static"
992
+ version = "1.5.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
995
+ dependencies = [
996
+ "spin",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "leb128fmt"
1001
+ version = "0.1.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1004
+
1005
+ [[package]]
1006
+ name = "libc"
1007
+ version = "0.2.186"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1010
+
1011
+ [[package]]
1012
+ name = "libm"
1013
+ version = "0.2.16"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1016
+
1017
+ [[package]]
1018
+ name = "libredox"
1019
+ version = "0.1.16"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
1022
+ dependencies = [
1023
+ "bitflags",
1024
+ "libc",
1025
+ "plain",
1026
+ "redox_syscall 0.7.5",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "libsqlite3-sys"
1031
+ version = "0.30.1"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1034
+ dependencies = [
1035
+ "cc",
1036
+ "pkg-config",
1037
+ "vcpkg",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "linux-raw-sys"
1042
+ version = "0.12.1"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1045
+
1046
+ [[package]]
1047
+ name = "litemap"
1048
+ version = "0.8.2"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1051
+
1052
+ [[package]]
1053
+ name = "lock_api"
1054
+ version = "0.4.14"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1057
+ dependencies = [
1058
+ "scopeguard",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "log"
1063
+ version = "0.4.29"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1066
+
1067
+ [[package]]
1068
+ name = "matchers"
1069
+ version = "0.2.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1072
+ dependencies = [
1073
+ "regex-automata",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "matchit"
1078
+ version = "0.8.4"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1081
+
1082
+ [[package]]
1083
+ name = "md-5"
1084
+ version = "0.10.6"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1087
+ dependencies = [
1088
+ "cfg-if",
1089
+ "digest",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "memchr"
1094
+ version = "2.8.0"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1097
+
1098
+ [[package]]
1099
+ name = "mime"
1100
+ version = "0.3.17"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1103
+
1104
+ [[package]]
1105
+ name = "miniz_oxide"
1106
+ version = "0.8.9"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1109
+ dependencies = [
1110
+ "adler2",
1111
+ "simd-adler32",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "mio"
1116
+ version = "1.2.0"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1119
+ dependencies = [
1120
+ "libc",
1121
+ "wasi",
1122
+ "windows-sys 0.61.2",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "nu-ansi-term"
1127
+ version = "0.50.3"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1130
+ dependencies = [
1131
+ "windows-sys 0.61.2",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "num-bigint-dig"
1136
+ version = "0.8.6"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1139
+ dependencies = [
1140
+ "lazy_static",
1141
+ "libm",
1142
+ "num-integer",
1143
+ "num-iter",
1144
+ "num-traits",
1145
+ "rand",
1146
+ "smallvec",
1147
+ "zeroize",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "num-integer"
1152
+ version = "0.1.46"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1155
+ dependencies = [
1156
+ "num-traits",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "num-iter"
1161
+ version = "0.1.45"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1164
+ dependencies = [
1165
+ "autocfg",
1166
+ "num-integer",
1167
+ "num-traits",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "num-traits"
1172
+ version = "0.2.19"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1175
+ dependencies = [
1176
+ "autocfg",
1177
+ "libm",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "once_cell"
1182
+ version = "1.21.4"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1185
+
1186
+ [[package]]
1187
+ name = "parking"
1188
+ version = "2.2.1"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1191
+
1192
+ [[package]]
1193
+ name = "parking_lot"
1194
+ version = "0.12.5"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1197
+ dependencies = [
1198
+ "lock_api",
1199
+ "parking_lot_core",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "parking_lot_core"
1204
+ version = "0.9.12"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1207
+ dependencies = [
1208
+ "cfg-if",
1209
+ "libc",
1210
+ "redox_syscall 0.5.18",
1211
+ "smallvec",
1212
+ "windows-link",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "pem-rfc7468"
1217
+ version = "0.7.0"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1220
+ dependencies = [
1221
+ "base64ct",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "percent-encoding"
1226
+ version = "2.3.2"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1229
+
1230
+ [[package]]
1231
+ name = "pin-project"
1232
+ version = "1.1.13"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
1235
+ dependencies = [
1236
+ "pin-project-internal",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "pin-project-internal"
1241
+ version = "1.1.13"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
1244
+ dependencies = [
1245
+ "proc-macro2",
1246
+ "quote",
1247
+ "syn",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "pin-project-lite"
1252
+ version = "0.2.17"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1255
+
1256
+ [[package]]
1257
+ name = "pkcs1"
1258
+ version = "0.7.5"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1261
+ dependencies = [
1262
+ "der",
1263
+ "pkcs8",
1264
+ "spki",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "pkcs8"
1269
+ version = "0.10.2"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1272
+ dependencies = [
1273
+ "der",
1274
+ "spki",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "pkg-config"
1279
+ version = "0.3.33"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1282
+
1283
+ [[package]]
1284
+ name = "plain"
1285
+ version = "0.2.3"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1288
+
1289
+ [[package]]
1290
+ name = "potential_utf"
1291
+ version = "0.1.5"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1294
+ dependencies = [
1295
+ "zerovec",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "ppv-lite86"
1300
+ version = "0.2.21"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1303
+ dependencies = [
1304
+ "zerocopy",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "prettyplease"
1309
+ version = "0.2.37"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1312
+ dependencies = [
1313
+ "proc-macro2",
1314
+ "syn",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "proc-macro2"
1319
+ version = "1.0.106"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1322
+ dependencies = [
1323
+ "unicode-ident",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "quote"
1328
+ version = "1.0.45"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1331
+ dependencies = [
1332
+ "proc-macro2",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "r-efi"
1337
+ version = "5.3.0"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1340
+
1341
+ [[package]]
1342
+ name = "r-efi"
1343
+ version = "6.0.0"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1346
+
1347
+ [[package]]
1348
+ name = "rand"
1349
+ version = "0.8.6"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1352
+ dependencies = [
1353
+ "libc",
1354
+ "rand_chacha",
1355
+ "rand_core",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "rand_chacha"
1360
+ version = "0.3.1"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1363
+ dependencies = [
1364
+ "ppv-lite86",
1365
+ "rand_core",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "rand_core"
1370
+ version = "0.6.4"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1373
+ dependencies = [
1374
+ "getrandom 0.2.17",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "redox_syscall"
1379
+ version = "0.5.18"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1382
+ dependencies = [
1383
+ "bitflags",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "redox_syscall"
1388
+ version = "0.7.5"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "4666a1a60d8412eab19d94f6d13dcc9cea0a5ef4fdf6a5db306537413c661b1b"
1391
+ dependencies = [
1392
+ "bitflags",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "regex-automata"
1397
+ version = "0.4.14"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1400
+ dependencies = [
1401
+ "aho-corasick",
1402
+ "memchr",
1403
+ "regex-syntax",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "regex-syntax"
1408
+ version = "0.8.10"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1411
+
1412
+ [[package]]
1413
+ name = "rsa"
1414
+ version = "0.9.10"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1417
+ dependencies = [
1418
+ "const-oid",
1419
+ "digest",
1420
+ "num-bigint-dig",
1421
+ "num-integer",
1422
+ "num-traits",
1423
+ "pkcs1",
1424
+ "pkcs8",
1425
+ "rand_core",
1426
+ "signature",
1427
+ "spki",
1428
+ "subtle",
1429
+ "zeroize",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "rustix"
1434
+ version = "1.1.4"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1437
+ dependencies = [
1438
+ "bitflags",
1439
+ "errno",
1440
+ "libc",
1441
+ "linux-raw-sys",
1442
+ "windows-sys 0.61.2",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "rustversion"
1447
+ version = "1.0.22"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1450
+
1451
+ [[package]]
1452
+ name = "ryu"
1453
+ version = "1.0.23"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1456
+
1457
+ [[package]]
1458
+ name = "scopeguard"
1459
+ version = "1.2.0"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1462
+
1463
+ [[package]]
1464
+ name = "semver"
1465
+ version = "1.0.28"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1468
+
1469
+ [[package]]
1470
+ name = "serde"
1471
+ version = "1.0.228"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1474
+ dependencies = [
1475
+ "serde_core",
1476
+ "serde_derive",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "serde_core"
1481
+ version = "1.0.228"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1484
+ dependencies = [
1485
+ "serde_derive",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "serde_derive"
1490
+ version = "1.0.228"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1493
+ dependencies = [
1494
+ "proc-macro2",
1495
+ "quote",
1496
+ "syn",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "serde_json"
1501
+ version = "1.0.149"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1504
+ dependencies = [
1505
+ "itoa",
1506
+ "memchr",
1507
+ "serde",
1508
+ "serde_core",
1509
+ "zmij",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "serde_path_to_error"
1514
+ version = "0.1.20"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1517
+ dependencies = [
1518
+ "itoa",
1519
+ "serde",
1520
+ "serde_core",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "serde_urlencoded"
1525
+ version = "0.7.1"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1528
+ dependencies = [
1529
+ "form_urlencoded",
1530
+ "itoa",
1531
+ "ryu",
1532
+ "serde",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "server"
1537
+ version = "0.1.0"
1538
+ dependencies = [
1539
+ "anyhow",
1540
+ "axum",
1541
+ "buffa",
1542
+ "buffa-types",
1543
+ "connectrpc",
1544
+ "connectrpc-build",
1545
+ "http-body",
1546
+ "serde",
1547
+ "sqlx",
1548
+ "tokio",
1549
+ "tower-http",
1550
+ "tracing",
1551
+ "tracing-subscriber",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "sha1"
1556
+ version = "0.10.6"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1559
+ dependencies = [
1560
+ "cfg-if",
1561
+ "cpufeatures",
1562
+ "digest",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "sha2"
1567
+ version = "0.10.9"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1570
+ dependencies = [
1571
+ "cfg-if",
1572
+ "cpufeatures",
1573
+ "digest",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "sharded-slab"
1578
+ version = "0.1.7"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1581
+ dependencies = [
1582
+ "lazy_static",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "shlex"
1587
+ version = "1.3.0"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1590
+
1591
+ [[package]]
1592
+ name = "signal-hook-registry"
1593
+ version = "1.4.8"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1596
+ dependencies = [
1597
+ "errno",
1598
+ "libc",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "signature"
1603
+ version = "2.2.0"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1606
+ dependencies = [
1607
+ "digest",
1608
+ "rand_core",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "simd-adler32"
1613
+ version = "0.3.9"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1616
+
1617
+ [[package]]
1618
+ name = "slab"
1619
+ version = "0.4.12"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1622
+
1623
+ [[package]]
1624
+ name = "smallvec"
1625
+ version = "1.15.1"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1628
+ dependencies = [
1629
+ "serde",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "socket2"
1634
+ version = "0.6.3"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1637
+ dependencies = [
1638
+ "libc",
1639
+ "windows-sys 0.61.2",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "spin"
1644
+ version = "0.9.8"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1647
+ dependencies = [
1648
+ "lock_api",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "spki"
1653
+ version = "0.7.3"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1656
+ dependencies = [
1657
+ "base64ct",
1658
+ "der",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "sqlx"
1663
+ version = "0.8.6"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
1666
+ dependencies = [
1667
+ "sqlx-core",
1668
+ "sqlx-macros",
1669
+ "sqlx-mysql",
1670
+ "sqlx-postgres",
1671
+ "sqlx-sqlite",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "sqlx-core"
1676
+ version = "0.8.6"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
1679
+ dependencies = [
1680
+ "base64",
1681
+ "bytes",
1682
+ "crc",
1683
+ "crossbeam-queue",
1684
+ "either",
1685
+ "event-listener",
1686
+ "futures-core",
1687
+ "futures-intrusive",
1688
+ "futures-io",
1689
+ "futures-util",
1690
+ "hashbrown 0.15.5",
1691
+ "hashlink",
1692
+ "indexmap",
1693
+ "log",
1694
+ "memchr",
1695
+ "once_cell",
1696
+ "percent-encoding",
1697
+ "serde",
1698
+ "serde_json",
1699
+ "sha2",
1700
+ "smallvec",
1701
+ "thiserror",
1702
+ "tokio",
1703
+ "tokio-stream",
1704
+ "tracing",
1705
+ "url",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "sqlx-macros"
1710
+ version = "0.8.6"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
1713
+ dependencies = [
1714
+ "proc-macro2",
1715
+ "quote",
1716
+ "sqlx-core",
1717
+ "sqlx-macros-core",
1718
+ "syn",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "sqlx-macros-core"
1723
+ version = "0.8.6"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
1726
+ dependencies = [
1727
+ "dotenvy",
1728
+ "either",
1729
+ "heck",
1730
+ "hex",
1731
+ "once_cell",
1732
+ "proc-macro2",
1733
+ "quote",
1734
+ "serde",
1735
+ "serde_json",
1736
+ "sha2",
1737
+ "sqlx-core",
1738
+ "sqlx-sqlite",
1739
+ "syn",
1740
+ "tokio",
1741
+ "url",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "sqlx-mysql"
1746
+ version = "0.8.6"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
1749
+ dependencies = [
1750
+ "atoi",
1751
+ "base64",
1752
+ "bitflags",
1753
+ "byteorder",
1754
+ "bytes",
1755
+ "crc",
1756
+ "digest",
1757
+ "dotenvy",
1758
+ "either",
1759
+ "futures-channel",
1760
+ "futures-core",
1761
+ "futures-io",
1762
+ "futures-util",
1763
+ "generic-array",
1764
+ "hex",
1765
+ "hkdf",
1766
+ "hmac",
1767
+ "itoa",
1768
+ "log",
1769
+ "md-5",
1770
+ "memchr",
1771
+ "once_cell",
1772
+ "percent-encoding",
1773
+ "rand",
1774
+ "rsa",
1775
+ "sha1",
1776
+ "sha2",
1777
+ "smallvec",
1778
+ "sqlx-core",
1779
+ "stringprep",
1780
+ "thiserror",
1781
+ "tracing",
1782
+ "whoami",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "sqlx-postgres"
1787
+ version = "0.8.6"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
1790
+ dependencies = [
1791
+ "atoi",
1792
+ "base64",
1793
+ "bitflags",
1794
+ "byteorder",
1795
+ "crc",
1796
+ "dotenvy",
1797
+ "etcetera",
1798
+ "futures-channel",
1799
+ "futures-core",
1800
+ "futures-util",
1801
+ "hex",
1802
+ "hkdf",
1803
+ "hmac",
1804
+ "home",
1805
+ "itoa",
1806
+ "log",
1807
+ "md-5",
1808
+ "memchr",
1809
+ "once_cell",
1810
+ "rand",
1811
+ "serde",
1812
+ "serde_json",
1813
+ "sha2",
1814
+ "smallvec",
1815
+ "sqlx-core",
1816
+ "stringprep",
1817
+ "thiserror",
1818
+ "tracing",
1819
+ "whoami",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "sqlx-sqlite"
1824
+ version = "0.8.6"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
1827
+ dependencies = [
1828
+ "atoi",
1829
+ "flume",
1830
+ "futures-channel",
1831
+ "futures-core",
1832
+ "futures-executor",
1833
+ "futures-intrusive",
1834
+ "futures-util",
1835
+ "libsqlite3-sys",
1836
+ "log",
1837
+ "percent-encoding",
1838
+ "serde",
1839
+ "serde_urlencoded",
1840
+ "sqlx-core",
1841
+ "thiserror",
1842
+ "tracing",
1843
+ "url",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "stable_deref_trait"
1848
+ version = "1.2.1"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1851
+
1852
+ [[package]]
1853
+ name = "stringprep"
1854
+ version = "0.1.5"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
1857
+ dependencies = [
1858
+ "unicode-bidi",
1859
+ "unicode-normalization",
1860
+ "unicode-properties",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "subtle"
1865
+ version = "2.6.1"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1868
+
1869
+ [[package]]
1870
+ name = "syn"
1871
+ version = "2.0.117"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1874
+ dependencies = [
1875
+ "proc-macro2",
1876
+ "quote",
1877
+ "unicode-ident",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "sync_wrapper"
1882
+ version = "1.0.2"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1885
+
1886
+ [[package]]
1887
+ name = "synstructure"
1888
+ version = "0.13.2"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1891
+ dependencies = [
1892
+ "proc-macro2",
1893
+ "quote",
1894
+ "syn",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "tempfile"
1899
+ version = "3.27.0"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1902
+ dependencies = [
1903
+ "fastrand",
1904
+ "getrandom 0.4.2",
1905
+ "once_cell",
1906
+ "rustix",
1907
+ "windows-sys 0.61.2",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "thiserror"
1912
+ version = "2.0.18"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1915
+ dependencies = [
1916
+ "thiserror-impl",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "thiserror-impl"
1921
+ version = "2.0.18"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1924
+ dependencies = [
1925
+ "proc-macro2",
1926
+ "quote",
1927
+ "syn",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "thread_local"
1932
+ version = "1.1.9"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1935
+ dependencies = [
1936
+ "cfg-if",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "tinystr"
1941
+ version = "0.8.3"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1944
+ dependencies = [
1945
+ "displaydoc",
1946
+ "zerovec",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "tinyvec"
1951
+ version = "1.11.0"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1954
+ dependencies = [
1955
+ "tinyvec_macros",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "tinyvec_macros"
1960
+ version = "0.1.1"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1963
+
1964
+ [[package]]
1965
+ name = "tokio"
1966
+ version = "1.52.3"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1969
+ dependencies = [
1970
+ "bytes",
1971
+ "libc",
1972
+ "mio",
1973
+ "pin-project-lite",
1974
+ "signal-hook-registry",
1975
+ "socket2",
1976
+ "tokio-macros",
1977
+ "windows-sys 0.61.2",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "tokio-macros"
1982
+ version = "2.7.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1985
+ dependencies = [
1986
+ "proc-macro2",
1987
+ "quote",
1988
+ "syn",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "tokio-stream"
1993
+ version = "0.1.18"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
1996
+ dependencies = [
1997
+ "futures-core",
1998
+ "pin-project-lite",
1999
+ "tokio",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "tokio-util"
2004
+ version = "0.7.18"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2007
+ dependencies = [
2008
+ "bytes",
2009
+ "futures-core",
2010
+ "futures-sink",
2011
+ "pin-project-lite",
2012
+ "tokio",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "tower"
2017
+ version = "0.5.3"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2020
+ dependencies = [
2021
+ "futures-core",
2022
+ "futures-util",
2023
+ "pin-project-lite",
2024
+ "sync_wrapper",
2025
+ "tokio",
2026
+ "tokio-util",
2027
+ "tower-layer",
2028
+ "tower-service",
2029
+ "tracing",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "tower-http"
2034
+ version = "0.6.11"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2037
+ dependencies = [
2038
+ "bitflags",
2039
+ "bytes",
2040
+ "http",
2041
+ "http-body",
2042
+ "pin-project-lite",
2043
+ "tower-layer",
2044
+ "tower-service",
2045
+ "tracing",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "tower-layer"
2050
+ version = "0.3.3"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2053
+
2054
+ [[package]]
2055
+ name = "tower-service"
2056
+ version = "0.3.3"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2059
+
2060
+ [[package]]
2061
+ name = "tracing"
2062
+ version = "0.1.44"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2065
+ dependencies = [
2066
+ "log",
2067
+ "pin-project-lite",
2068
+ "tracing-attributes",
2069
+ "tracing-core",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "tracing-attributes"
2074
+ version = "0.1.31"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2077
+ dependencies = [
2078
+ "proc-macro2",
2079
+ "quote",
2080
+ "syn",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "tracing-core"
2085
+ version = "0.1.36"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2088
+ dependencies = [
2089
+ "once_cell",
2090
+ "valuable",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "tracing-log"
2095
+ version = "0.2.0"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2098
+ dependencies = [
2099
+ "log",
2100
+ "once_cell",
2101
+ "tracing-core",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "tracing-subscriber"
2106
+ version = "0.3.23"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2109
+ dependencies = [
2110
+ "matchers",
2111
+ "nu-ansi-term",
2112
+ "once_cell",
2113
+ "regex-automata",
2114
+ "sharded-slab",
2115
+ "smallvec",
2116
+ "thread_local",
2117
+ "tracing",
2118
+ "tracing-core",
2119
+ "tracing-log",
2120
+ ]
2121
+
2122
+ [[package]]
2123
+ name = "typenum"
2124
+ version = "1.20.0"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2127
+
2128
+ [[package]]
2129
+ name = "unicode-bidi"
2130
+ version = "0.3.18"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2133
+
2134
+ [[package]]
2135
+ name = "unicode-ident"
2136
+ version = "1.0.24"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2139
+
2140
+ [[package]]
2141
+ name = "unicode-normalization"
2142
+ version = "0.1.25"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2145
+ dependencies = [
2146
+ "tinyvec",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "unicode-properties"
2151
+ version = "0.1.4"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
2154
+
2155
+ [[package]]
2156
+ name = "unicode-xid"
2157
+ version = "0.2.6"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2160
+
2161
+ [[package]]
2162
+ name = "url"
2163
+ version = "2.5.8"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2166
+ dependencies = [
2167
+ "form_urlencoded",
2168
+ "idna",
2169
+ "percent-encoding",
2170
+ "serde",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "utf8_iter"
2175
+ version = "1.0.4"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2178
+
2179
+ [[package]]
2180
+ name = "valuable"
2181
+ version = "0.1.1"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2184
+
2185
+ [[package]]
2186
+ name = "vcpkg"
2187
+ version = "0.2.15"
2188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2189
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2190
+
2191
+ [[package]]
2192
+ name = "version_check"
2193
+ version = "0.9.5"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2196
+
2197
+ [[package]]
2198
+ name = "wasi"
2199
+ version = "0.11.1+wasi-snapshot-preview1"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2202
+
2203
+ [[package]]
2204
+ name = "wasip2"
2205
+ version = "1.0.3+wasi-0.2.9"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2208
+ dependencies = [
2209
+ "wit-bindgen 0.57.1",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "wasip3"
2214
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2217
+ dependencies = [
2218
+ "wit-bindgen 0.51.0",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "wasite"
2223
+ version = "0.1.0"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
2226
+
2227
+ [[package]]
2228
+ name = "wasm-bindgen"
2229
+ version = "0.2.121"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
2232
+ dependencies = [
2233
+ "cfg-if",
2234
+ "once_cell",
2235
+ "rustversion",
2236
+ "wasm-bindgen-macro",
2237
+ "wasm-bindgen-shared",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "wasm-bindgen-futures"
2242
+ version = "0.4.71"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
2245
+ dependencies = [
2246
+ "js-sys",
2247
+ "wasm-bindgen",
2248
+ ]
2249
+
2250
+ [[package]]
2251
+ name = "wasm-bindgen-macro"
2252
+ version = "0.2.121"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
2255
+ dependencies = [
2256
+ "quote",
2257
+ "wasm-bindgen-macro-support",
2258
+ ]
2259
+
2260
+ [[package]]
2261
+ name = "wasm-bindgen-macro-support"
2262
+ version = "0.2.121"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
2265
+ dependencies = [
2266
+ "bumpalo",
2267
+ "proc-macro2",
2268
+ "quote",
2269
+ "syn",
2270
+ "wasm-bindgen-shared",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "wasm-bindgen-shared"
2275
+ version = "0.2.121"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
2278
+ dependencies = [
2279
+ "unicode-ident",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "wasm-encoder"
2284
+ version = "0.244.0"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2287
+ dependencies = [
2288
+ "leb128fmt",
2289
+ "wasmparser",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "wasm-metadata"
2294
+ version = "0.244.0"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2297
+ dependencies = [
2298
+ "anyhow",
2299
+ "indexmap",
2300
+ "wasm-encoder",
2301
+ "wasmparser",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "wasmparser"
2306
+ version = "0.244.0"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2309
+ dependencies = [
2310
+ "bitflags",
2311
+ "hashbrown 0.15.5",
2312
+ "indexmap",
2313
+ "semver",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "whoami"
2318
+ version = "1.6.1"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
2321
+ dependencies = [
2322
+ "libredox",
2323
+ "wasite",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "windows-link"
2328
+ version = "0.2.1"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2331
+
2332
+ [[package]]
2333
+ name = "windows-sys"
2334
+ version = "0.48.0"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2337
+ dependencies = [
2338
+ "windows-targets",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "windows-sys"
2343
+ version = "0.61.2"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2346
+ dependencies = [
2347
+ "windows-link",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "windows-targets"
2352
+ version = "0.48.5"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2355
+ dependencies = [
2356
+ "windows_aarch64_gnullvm",
2357
+ "windows_aarch64_msvc",
2358
+ "windows_i686_gnu",
2359
+ "windows_i686_msvc",
2360
+ "windows_x86_64_gnu",
2361
+ "windows_x86_64_gnullvm",
2362
+ "windows_x86_64_msvc",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "windows_aarch64_gnullvm"
2367
+ version = "0.48.5"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2370
+
2371
+ [[package]]
2372
+ name = "windows_aarch64_msvc"
2373
+ version = "0.48.5"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2376
+
2377
+ [[package]]
2378
+ name = "windows_i686_gnu"
2379
+ version = "0.48.5"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2382
+
2383
+ [[package]]
2384
+ name = "windows_i686_msvc"
2385
+ version = "0.48.5"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2388
+
2389
+ [[package]]
2390
+ name = "windows_x86_64_gnu"
2391
+ version = "0.48.5"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2394
+
2395
+ [[package]]
2396
+ name = "windows_x86_64_gnullvm"
2397
+ version = "0.48.5"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2400
+
2401
+ [[package]]
2402
+ name = "windows_x86_64_msvc"
2403
+ version = "0.48.5"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2406
+
2407
+ [[package]]
2408
+ name = "wit-bindgen"
2409
+ version = "0.51.0"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2412
+ dependencies = [
2413
+ "wit-bindgen-rust-macro",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "wit-bindgen"
2418
+ version = "0.57.1"
2419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2420
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2421
+
2422
+ [[package]]
2423
+ name = "wit-bindgen-core"
2424
+ version = "0.51.0"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2427
+ dependencies = [
2428
+ "anyhow",
2429
+ "heck",
2430
+ "wit-parser",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "wit-bindgen-rust"
2435
+ version = "0.51.0"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2438
+ dependencies = [
2439
+ "anyhow",
2440
+ "heck",
2441
+ "indexmap",
2442
+ "prettyplease",
2443
+ "syn",
2444
+ "wasm-metadata",
2445
+ "wit-bindgen-core",
2446
+ "wit-component",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "wit-bindgen-rust-macro"
2451
+ version = "0.51.0"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2454
+ dependencies = [
2455
+ "anyhow",
2456
+ "prettyplease",
2457
+ "proc-macro2",
2458
+ "quote",
2459
+ "syn",
2460
+ "wit-bindgen-core",
2461
+ "wit-bindgen-rust",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "wit-component"
2466
+ version = "0.244.0"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2469
+ dependencies = [
2470
+ "anyhow",
2471
+ "bitflags",
2472
+ "indexmap",
2473
+ "log",
2474
+ "serde",
2475
+ "serde_derive",
2476
+ "serde_json",
2477
+ "wasm-encoder",
2478
+ "wasm-metadata",
2479
+ "wasmparser",
2480
+ "wit-parser",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "wit-parser"
2485
+ version = "0.244.0"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2488
+ dependencies = [
2489
+ "anyhow",
2490
+ "id-arena",
2491
+ "indexmap",
2492
+ "log",
2493
+ "semver",
2494
+ "serde",
2495
+ "serde_derive",
2496
+ "serde_json",
2497
+ "unicode-xid",
2498
+ "wasmparser",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "writeable"
2503
+ version = "0.6.3"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2506
+
2507
+ [[package]]
2508
+ name = "yoke"
2509
+ version = "0.8.2"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2512
+ dependencies = [
2513
+ "stable_deref_trait",
2514
+ "yoke-derive",
2515
+ "zerofrom",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "yoke-derive"
2520
+ version = "0.8.2"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2523
+ dependencies = [
2524
+ "proc-macro2",
2525
+ "quote",
2526
+ "syn",
2527
+ "synstructure",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "zerocopy"
2532
+ version = "0.8.48"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2535
+ dependencies = [
2536
+ "zerocopy-derive",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "zerocopy-derive"
2541
+ version = "0.8.48"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2544
+ dependencies = [
2545
+ "proc-macro2",
2546
+ "quote",
2547
+ "syn",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "zerofrom"
2552
+ version = "0.1.8"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2555
+ dependencies = [
2556
+ "zerofrom-derive",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "zerofrom-derive"
2561
+ version = "0.1.7"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2564
+ dependencies = [
2565
+ "proc-macro2",
2566
+ "quote",
2567
+ "syn",
2568
+ "synstructure",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "zeroize"
2573
+ version = "1.8.2"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2576
+
2577
+ [[package]]
2578
+ name = "zerotrie"
2579
+ version = "0.2.4"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2582
+ dependencies = [
2583
+ "displaydoc",
2584
+ "yoke",
2585
+ "zerofrom",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "zerovec"
2590
+ version = "0.11.6"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2593
+ dependencies = [
2594
+ "yoke",
2595
+ "zerofrom",
2596
+ "zerovec-derive",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "zerovec-derive"
2601
+ version = "0.11.3"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2604
+ dependencies = [
2605
+ "proc-macro2",
2606
+ "quote",
2607
+ "syn",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "zlib-rs"
2612
+ version = "0.6.3"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
2615
+
2616
+ [[package]]
2617
+ name = "zmij"
2618
+ version = "1.0.21"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2621
+
2622
+ [[package]]
2623
+ name = "zstd"
2624
+ version = "0.13.3"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2627
+ dependencies = [
2628
+ "zstd-safe",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "zstd-safe"
2633
+ version = "7.2.4"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2636
+ dependencies = [
2637
+ "zstd-sys",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "zstd-sys"
2642
+ version = "2.0.16+zstd.1.5.7"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
2645
+ dependencies = [
2646
+ "cc",
2647
+ "pkg-config",
2648
+ ]