newt-agent-py 0.6.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. newt_agent_py-0.6.6/Cargo.lock +5004 -0
  2. newt_agent_py-0.6.6/Cargo.toml +145 -0
  3. newt_agent_py-0.6.6/LICENSE +190 -0
  4. newt_agent_py-0.6.6/PKG-INFO +228 -0
  5. newt_agent_py-0.6.6/README.md +199 -0
  6. newt_agent_py-0.6.6/newt-acp-worker/Cargo.toml +48 -0
  7. newt_agent_py-0.6.6/newt-acp-worker/src/diff.rs +206 -0
  8. newt_agent_py-0.6.6/newt-acp-worker/src/identity.rs +374 -0
  9. newt_agent_py-0.6.6/newt-acp-worker/src/lib.rs +228 -0
  10. newt_agent_py-0.6.6/newt-acp-worker/src/prom.rs +277 -0
  11. newt_agent_py-0.6.6/newt-acp-worker/src/pyo3_module.rs +190 -0
  12. newt_agent_py-0.6.6/newt-acp-worker/src/server.rs +682 -0
  13. newt_agent_py-0.6.6/newt-acp-worker/tests/acp_tests.rs +971 -0
  14. newt_agent_py-0.6.6/newt-acp-worker/tests/no_synthetic_keys.rs +255 -0
  15. newt_agent_py-0.6.6/newt-acp-worker/tests/no_top_leak.rs +237 -0
  16. newt_agent_py-0.6.6/newt-agent-py/Cargo.toml +30 -0
  17. newt_agent_py-0.6.6/newt-agent-py/build.rs +11 -0
  18. newt_agent_py-0.6.6/newt-agent-py/python/newt_agent/__init__.py +75 -0
  19. newt_agent_py-0.6.6/newt-agent-py/src/lib.rs +20 -0
  20. newt_agent_py-0.6.6/newt-agent-py/tests/conftest.py +13 -0
  21. newt_agent_py-0.6.6/newt-agent-py/tests/test_acp_worker.py +66 -0
  22. newt_agent_py-0.6.6/newt-agent-py/tests/test_coder.py +72 -0
  23. newt_agent_py-0.6.6/newt-agent-py/tests/test_core.py +80 -0
  24. newt_agent_py-0.6.6/newt-agent-py/tests/test_eval.py +146 -0
  25. newt_agent_py-0.6.6/newt-agent-py/tests/test_inference.py +101 -0
  26. newt_agent_py-0.6.6/newt-agent-py/tests/test_mcp.py +41 -0
  27. newt_agent_py-0.6.6/newt-agent-py/tests/test_tools.py +100 -0
  28. newt_agent_py-0.6.6/newt-coder/Cargo.toml +53 -0
  29. newt_agent_py-0.6.6/newt-coder/src/coder.rs +921 -0
  30. newt_agent_py-0.6.6/newt-coder/src/emission.rs +388 -0
  31. newt_agent_py-0.6.6/newt-coder/src/error.rs +156 -0
  32. newt_agent_py-0.6.6/newt-coder/src/lib.rs +40 -0
  33. newt_agent_py-0.6.6/newt-coder/src/prompt.rs +230 -0
  34. newt_agent_py-0.6.6/newt-coder/src/pyo3_module.rs +224 -0
  35. newt_agent_py-0.6.6/newt-coder/src/workspace_scan.rs +210 -0
  36. newt_agent_py-0.6.6/newt-coder/tests/coder_smoke.rs +419 -0
  37. newt_agent_py-0.6.6/newt-coder/tests/parent_key_chain_rooting.rs +170 -0
  38. newt_agent_py-0.6.6/newt-core/Cargo.toml +48 -0
  39. newt_agent_py-0.6.6/newt-core/src/caveats.rs +171 -0
  40. newt_agent_py-0.6.6/newt-core/src/config.rs +988 -0
  41. newt_agent_py-0.6.6/newt-core/src/dgx.rs +824 -0
  42. newt_agent_py-0.6.6/newt-core/src/error.rs +24 -0
  43. newt_agent_py-0.6.6/newt-core/src/lib.rs +37 -0
  44. newt_agent_py-0.6.6/newt-core/src/memory.rs +1521 -0
  45. newt_agent_py-0.6.6/newt-core/src/metrics.rs +227 -0
  46. newt_agent_py-0.6.6/newt-core/src/model_id.rs +75 -0
  47. newt_agent_py-0.6.6/newt-core/src/pricing.rs +330 -0
  48. newt_agent_py-0.6.6/newt-core/src/pyo3_module.rs +488 -0
  49. newt_agent_py-0.6.6/newt-core/src/router.rs +172 -0
  50. newt_agent_py-0.6.6/newt-core/src/session.rs +86 -0
  51. newt_agent_py-0.6.6/newt-eval/Cargo.toml +54 -0
  52. newt_agent_py-0.6.6/newt-eval/README.md +152 -0
  53. newt_agent_py-0.6.6/newt-eval/cases/001-rename-function/case.toml +44 -0
  54. newt_agent_py-0.6.6/newt-eval/cases/002-add-doc-comment/case.toml +31 -0
  55. newt_agent_py-0.6.6/newt-eval/cases/003-add-error-handling/case.toml +47 -0
  56. newt_agent_py-0.6.6/newt-eval/cases/004-add-test-case/case.toml +37 -0
  57. newt_agent_py-0.6.6/newt-eval/cases/005-extract-constant/case.toml +37 -0
  58. newt_agent_py-0.6.6/newt-eval/cases/006-handle-empty-input/case.toml +49 -0
  59. newt_agent_py-0.6.6/newt-eval/cases/007-add-struct-method/case.toml +53 -0
  60. newt_agent_py-0.6.6/newt-eval/cases/008-extract-helper/case.toml +47 -0
  61. newt_agent_py-0.6.6/newt-eval/cases/010-decompose-god-function/case.toml +62 -0
  62. newt_agent_py-0.6.6/newt-eval/cases/011-state-machine-drain/case.toml +49 -0
  63. newt_agent_py-0.6.6/newt-eval/cases/012-trait-display-enum/case.toml +65 -0
  64. newt_agent_py-0.6.6/newt-eval/cases/013-generic-bounds/case.toml +46 -0
  65. newt_agent_py-0.6.6/newt-eval/cases/014-multi-file-extract/case.toml +51 -0
  66. newt_agent_py-0.6.6/newt-eval/cases/CASE_AUTHORING.md +73 -0
  67. newt_agent_py-0.6.6/newt-eval/cases-deferred/006-cross-host-rename/case.toml +65 -0
  68. newt_agent_py-0.6.6/newt-eval/cases-deferred/README.md +29 -0
  69. newt_agent_py-0.6.6/newt-eval/src/bin/newt-eval.rs +393 -0
  70. newt_agent_py-0.6.6/newt-eval/src/cases.rs +359 -0
  71. newt_agent_py-0.6.6/newt-eval/src/evaluators.rs +787 -0
  72. newt_agent_py-0.6.6/newt-eval/src/lib.rs +51 -0
  73. newt_agent_py-0.6.6/newt-eval/src/lint.rs +164 -0
  74. newt_agent_py-0.6.6/newt-eval/src/pyo3_module.rs +531 -0
  75. newt_agent_py-0.6.6/newt-eval/src/runner.rs +438 -0
  76. newt_agent_py-0.6.6/newt-eval/src/scorecard.rs +290 -0
  77. newt_agent_py-0.6.6/newt-eval/src/worker_bin.rs +372 -0
  78. newt_agent_py-0.6.6/newt-eval/tests/case_prompt_lint.rs +26 -0
  79. newt_agent_py-0.6.6/newt-eval/tests/cli.rs +156 -0
  80. newt_agent_py-0.6.6/newt-eval/tests/mock_e2e.rs +171 -0
  81. newt_agent_py-0.6.6/newt-identity/Cargo.toml +31 -0
  82. newt_agent_py-0.6.6/newt-identity/src/lib.rs +449 -0
  83. newt_agent_py-0.6.6/newt-inference/Cargo.toml +54 -0
  84. newt_agent_py-0.6.6/newt-inference/src/backend.rs +180 -0
  85. newt_agent_py-0.6.6/newt-inference/src/lib.rs +21 -0
  86. newt_agent_py-0.6.6/newt-inference/src/local.rs +514 -0
  87. newt_agent_py-0.6.6/newt-inference/src/provider_plugin.rs +521 -0
  88. newt_agent_py-0.6.6/newt-inference/src/pyo3_module.rs +521 -0
  89. newt_agent_py-0.6.6/newt-inference/src/registry.rs +50 -0
  90. newt_agent_py-0.6.6/newt-inference/src/stream.rs +146 -0
  91. newt_agent_py-0.6.6/newt-inference/tests/ollama_tests.rs +407 -0
  92. newt_agent_py-0.6.6/newt-inference/tests/openai_auth_tests.rs +138 -0
  93. newt_agent_py-0.6.6/newt-inference/tests/registry_tests.rs +76 -0
  94. newt_agent_py-0.6.6/newt-inference/tests/vllm_tests.rs +371 -0
  95. newt_agent_py-0.6.6/newt-mcp-server/Cargo.toml +71 -0
  96. newt_agent_py-0.6.6/newt-mcp-server/python/newt_mcp_server/__init__.py +50 -0
  97. newt_agent_py-0.6.6/newt-mcp-server/python/newt_mcp_server/__main__.py +5 -0
  98. newt_agent_py-0.6.6/newt-mcp-server/src/caveats.rs +247 -0
  99. newt_agent_py-0.6.6/newt-mcp-server/src/handlers.rs +1077 -0
  100. newt_agent_py-0.6.6/newt-mcp-server/src/lib.rs +79 -0
  101. newt_agent_py-0.6.6/newt-mcp-server/src/main.rs +18 -0
  102. newt_agent_py-0.6.6/newt-mcp-server/src/pyo3_module.rs +139 -0
  103. newt_agent_py-0.6.6/newt-mcp-server/src/server.rs +278 -0
  104. newt_agent_py-0.6.6/newt-mcp-server/tests/goal_run_tests.rs +236 -0
  105. newt_agent_py-0.6.6/newt-tools/Cargo.toml +46 -0
  106. newt_agent_py-0.6.6/newt-tools/src/lib.rs +22 -0
  107. newt_agent_py-0.6.6/newt-tools/src/ls.rs +119 -0
  108. newt_agent_py-0.6.6/newt-tools/src/patch.rs +1104 -0
  109. newt_agent_py-0.6.6/newt-tools/src/pyo3_module.rs +128 -0
  110. newt_agent_py-0.6.6/newt-tools/src/read.rs +81 -0
  111. newt_agent_py-0.6.6/newt-tools/src/search.rs +155 -0
  112. newt_agent_py-0.6.6/newt-tools/tests/apply_parity.rs +255 -0
  113. newt_agent_py-0.6.6/plugins-protocol/Cargo.toml +20 -0
  114. newt_agent_py-0.6.6/plugins-protocol/src/lib.rs +198 -0
  115. newt_agent_py-0.6.6/pyproject.toml +66 -0
  116. newt_agent_py-0.6.6/tests/common/Cargo.toml +19 -0
  117. newt_agent_py-0.6.6/tests/common/src/lib.rs +190 -0
@@ -0,0 +1,5004 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
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 = "agent-bridle"
13
+ version = "0.1.0"
14
+ source = "git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=5adfd91f12f29a496108eba05cbca59c8ab86aeb#5adfd91f12f29a496108eba05cbca59c8ab86aeb"
15
+ dependencies = [
16
+ "agent-bridle-core 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=5adfd91f12f29a496108eba05cbca59c8ab86aeb)",
17
+ "agent-bridle-tool-shell 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=5adfd91f12f29a496108eba05cbca59c8ab86aeb)",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "agent-bridle"
22
+ version = "0.1.0"
23
+ source = "git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=c00259af499924527cb31350cba91f093dd432c9#c00259af499924527cb31350cba91f093dd432c9"
24
+ dependencies = [
25
+ "agent-bridle-core 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=c00259af499924527cb31350cba91f093dd432c9)",
26
+ "agent-bridle-tool-shell 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=c00259af499924527cb31350cba91f093dd432c9)",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "agent-bridle-core"
31
+ version = "0.1.0"
32
+ source = "git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=5adfd91f12f29a496108eba05cbca59c8ab86aeb#5adfd91f12f29a496108eba05cbca59c8ab86aeb"
33
+ dependencies = [
34
+ "agent-mesh-protocol",
35
+ "anyhow",
36
+ "async-trait",
37
+ "serde",
38
+ "serde_json",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "agent-bridle-core"
43
+ version = "0.1.0"
44
+ source = "git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=c00259af499924527cb31350cba91f093dd432c9#c00259af499924527cb31350cba91f093dd432c9"
45
+ dependencies = [
46
+ "agent-mesh-protocol",
47
+ "anyhow",
48
+ "async-trait",
49
+ "serde",
50
+ "serde_json",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "agent-bridle-tool-shell"
55
+ version = "0.1.0"
56
+ source = "git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=5adfd91f12f29a496108eba05cbca59c8ab86aeb#5adfd91f12f29a496108eba05cbca59c8ab86aeb"
57
+ dependencies = [
58
+ "agent-bridle-core 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=5adfd91f12f29a496108eba05cbca59c8ab86aeb)",
59
+ "anyhow",
60
+ "async-trait",
61
+ "brush-builtins",
62
+ "brush-core",
63
+ "brush-coreutils-builtins",
64
+ "serde",
65
+ "serde_json",
66
+ "tokio",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "agent-bridle-tool-shell"
71
+ version = "0.1.0"
72
+ source = "git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=c00259af499924527cb31350cba91f093dd432c9#c00259af499924527cb31350cba91f093dd432c9"
73
+ dependencies = [
74
+ "agent-bridle-core 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=c00259af499924527cb31350cba91f093dd432c9)",
75
+ "anyhow",
76
+ "async-trait",
77
+ "brush-builtins",
78
+ "brush-core",
79
+ "brush-coreutils-builtins",
80
+ "serde",
81
+ "serde_json",
82
+ "tokio",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "agent-mesh-protocol"
87
+ version = "0.6.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "eca2348e2ef39fb8b3d01d64ff626d73dea03e0379bafc01ee48e2d6d6e1e119"
90
+ dependencies = [
91
+ "blake3",
92
+ "ed25519-dalek",
93
+ "hex",
94
+ "rand 0.8.6",
95
+ "serde",
96
+ "serde_bytes",
97
+ "serde_json",
98
+ "ssh-key",
99
+ "thiserror 2.0.18",
100
+ "tracing",
101
+ "zeroize",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "ahash"
106
+ version = "0.8.12"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
109
+ dependencies = [
110
+ "cfg-if",
111
+ "once_cell",
112
+ "version_check",
113
+ "zerocopy",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "aho-corasick"
118
+ version = "1.1.4"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
121
+ dependencies = [
122
+ "memchr",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "allocator-api2"
127
+ version = "0.2.21"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
130
+
131
+ [[package]]
132
+ name = "android_system_properties"
133
+ version = "0.1.5"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
136
+ dependencies = [
137
+ "libc",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "anstream"
142
+ version = "1.0.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
145
+ dependencies = [
146
+ "anstyle",
147
+ "anstyle-parse",
148
+ "anstyle-query",
149
+ "anstyle-wincon",
150
+ "colorchoice",
151
+ "is_terminal_polyfill",
152
+ "utf8parse",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "anstyle"
157
+ version = "1.0.14"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
160
+
161
+ [[package]]
162
+ name = "anstyle-parse"
163
+ version = "1.0.0"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
166
+ dependencies = [
167
+ "utf8parse",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "anstyle-query"
172
+ version = "1.1.5"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
175
+ dependencies = [
176
+ "windows-sys 0.61.2",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "anstyle-wincon"
181
+ version = "3.0.11"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
184
+ dependencies = [
185
+ "anstyle",
186
+ "once_cell_polyfill",
187
+ "windows-sys 0.61.2",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "anyhow"
192
+ version = "1.0.102"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
195
+
196
+ [[package]]
197
+ name = "archery"
198
+ version = "1.2.2"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "70e0a5f99dfebb87bb342d0f53bb92c81842e100bbb915223e38349580e5441d"
201
+ dependencies = [
202
+ "triomphe",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "arrayref"
207
+ version = "0.3.9"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
210
+
211
+ [[package]]
212
+ name = "arrayvec"
213
+ version = "0.7.6"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
216
+
217
+ [[package]]
218
+ name = "assert-json-diff"
219
+ version = "2.0.2"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
222
+ dependencies = [
223
+ "serde",
224
+ "serde_json",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "assert_cmd"
229
+ version = "2.2.2"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
232
+ dependencies = [
233
+ "anstyle",
234
+ "bstr",
235
+ "libc",
236
+ "predicates",
237
+ "predicates-core",
238
+ "predicates-tree",
239
+ "wait-timeout",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "async-recursion"
244
+ version = "1.1.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
247
+ dependencies = [
248
+ "proc-macro2",
249
+ "quote",
250
+ "syn",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "async-trait"
255
+ version = "0.1.89"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
258
+ dependencies = [
259
+ "proc-macro2",
260
+ "quote",
261
+ "syn",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "atomic-waker"
266
+ version = "1.1.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
269
+
270
+ [[package]]
271
+ name = "autocfg"
272
+ version = "1.5.1"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
275
+
276
+ [[package]]
277
+ name = "base16ct"
278
+ version = "0.2.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
281
+
282
+ [[package]]
283
+ name = "base64"
284
+ version = "0.22.1"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
287
+
288
+ [[package]]
289
+ name = "base64ct"
290
+ version = "1.8.3"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
293
+
294
+ [[package]]
295
+ name = "bigdecimal"
296
+ version = "0.4.10"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
299
+ dependencies = [
300
+ "autocfg",
301
+ "libm",
302
+ "num-bigint",
303
+ "num-integer",
304
+ "num-traits",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "bit-set"
309
+ version = "0.8.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
312
+ dependencies = [
313
+ "bit-vec",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "bit-vec"
318
+ version = "0.8.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
321
+
322
+ [[package]]
323
+ name = "bitflags"
324
+ version = "2.12.1"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
327
+
328
+ [[package]]
329
+ name = "blake3"
330
+ version = "1.8.5"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
333
+ dependencies = [
334
+ "arrayref",
335
+ "arrayvec",
336
+ "cc",
337
+ "cfg-if",
338
+ "constant_time_eq",
339
+ "cpufeatures 0.3.0",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "block-buffer"
344
+ version = "0.10.4"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
347
+ dependencies = [
348
+ "generic-array",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "bon"
353
+ version = "3.9.1"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe"
356
+ dependencies = [
357
+ "bon-macros",
358
+ "rustversion",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "bon-macros"
363
+ version = "3.9.1"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c"
366
+ dependencies = [
367
+ "darling 0.23.0",
368
+ "ident_case",
369
+ "prettyplease",
370
+ "proc-macro2",
371
+ "quote",
372
+ "rustversion",
373
+ "syn",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "brush-builtins"
378
+ version = "0.2.0"
379
+ source = "git+https://github.com/hartsock/brush?rev=4e65a0627d4d363a5af473bc68bd40862ce9f011#4e65a0627d4d363a5af473bc68bd40862ce9f011"
380
+ dependencies = [
381
+ "brush-core",
382
+ "brush-parser",
383
+ "cfg-if",
384
+ "chrono",
385
+ "clap",
386
+ "fancy-regex",
387
+ "itertools 0.14.0",
388
+ "nix 0.31.3",
389
+ "procfs",
390
+ "rlimit",
391
+ "strum 0.28.0",
392
+ "thiserror 2.0.18",
393
+ "tokio",
394
+ "tracing",
395
+ "uucore",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "brush-core"
400
+ version = "0.5.0"
401
+ source = "git+https://github.com/hartsock/brush?rev=4e65a0627d4d363a5af473bc68bd40862ce9f011#4e65a0627d4d363a5af473bc68bd40862ce9f011"
402
+ dependencies = [
403
+ "async-recursion",
404
+ "async-trait",
405
+ "bon",
406
+ "brush-parser",
407
+ "cached",
408
+ "cfg-if",
409
+ "check_elevation",
410
+ "chrono",
411
+ "clap",
412
+ "color-print",
413
+ "command-fds",
414
+ "fancy-regex",
415
+ "futures",
416
+ "getrandom 0.4.2",
417
+ "hostname",
418
+ "inherent",
419
+ "itertools 0.14.0",
420
+ "libc",
421
+ "nix 0.31.3",
422
+ "normalize-path",
423
+ "rand 0.10.1",
424
+ "rpds",
425
+ "strum 0.28.0",
426
+ "strum_macros 0.28.0",
427
+ "terminfo",
428
+ "thiserror 2.0.18",
429
+ "tokio",
430
+ "tracing",
431
+ "uuid",
432
+ "uzers",
433
+ "whoami",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "brush-coreutils-builtins"
438
+ version = "0.1.0"
439
+ source = "git+https://github.com/hartsock/brush?rev=4e65a0627d4d363a5af473bc68bd40862ce9f011#4e65a0627d4d363a5af473bc68bd40862ce9f011"
440
+ dependencies = [
441
+ "uucore",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "brush-parser"
446
+ version = "0.4.0"
447
+ source = "git+https://github.com/hartsock/brush?rev=4e65a0627d4d363a5af473bc68bd40862ce9f011#4e65a0627d4d363a5af473bc68bd40862ce9f011"
448
+ dependencies = [
449
+ "bon",
450
+ "cached",
451
+ "getrandom 0.4.2",
452
+ "indenter",
453
+ "peg",
454
+ "thiserror 2.0.18",
455
+ "tracing",
456
+ "utf8-chars",
457
+ "uuid",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "bstr"
462
+ version = "1.12.1"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
465
+ dependencies = [
466
+ "memchr",
467
+ "regex-automata",
468
+ "serde",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "bumpalo"
473
+ version = "3.20.3"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
476
+
477
+ [[package]]
478
+ name = "bytes"
479
+ version = "1.11.1"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
482
+
483
+ [[package]]
484
+ name = "cached"
485
+ version = "0.59.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "53b6f5d101f0f6322c8646a45b7c581a673e476329040d97565815c2461dd0c4"
488
+ dependencies = [
489
+ "ahash",
490
+ "cached_proc_macro",
491
+ "cached_proc_macro_types",
492
+ "hashbrown 0.16.1",
493
+ "once_cell",
494
+ "parking_lot",
495
+ "thiserror 2.0.18",
496
+ "web-time",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "cached_proc_macro"
501
+ version = "0.27.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "8ebcf9c75f17a17d55d11afc98e46167d4790a263f428891b8705ab2f793eca3"
504
+ dependencies = [
505
+ "darling 0.20.11",
506
+ "proc-macro2",
507
+ "quote",
508
+ "syn",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "cached_proc_macro_types"
513
+ version = "0.1.1"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0"
516
+
517
+ [[package]]
518
+ name = "camino"
519
+ version = "1.2.2"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
522
+ dependencies = [
523
+ "serde_core",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "cargo-platform"
528
+ version = "0.3.3"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
531
+ dependencies = [
532
+ "serde",
533
+ "serde_core",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "cargo_metadata"
538
+ version = "0.23.1"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
541
+ dependencies = [
542
+ "camino",
543
+ "cargo-platform",
544
+ "semver",
545
+ "serde",
546
+ "serde_json",
547
+ "thiserror 2.0.18",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "cassowary"
552
+ version = "0.3.0"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
555
+
556
+ [[package]]
557
+ name = "castaway"
558
+ version = "0.2.4"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
561
+ dependencies = [
562
+ "rustversion",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "cc"
567
+ version = "1.2.63"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
570
+ dependencies = [
571
+ "find-msvc-tools",
572
+ "shlex",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "cfg-if"
577
+ version = "1.0.4"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
580
+
581
+ [[package]]
582
+ name = "cfg_aliases"
583
+ version = "0.1.1"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
586
+
587
+ [[package]]
588
+ name = "cfg_aliases"
589
+ version = "0.2.1"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
592
+
593
+ [[package]]
594
+ name = "chacha20"
595
+ version = "0.10.0"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
598
+ dependencies = [
599
+ "cfg-if",
600
+ "cpufeatures 0.3.0",
601
+ "rand_core 0.10.1",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "check_elevation"
606
+ version = "0.2.7"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "a7fe1fbbd8bd3174109071530f12932ff471eeff30d83e9c485d6ff424ac534b"
609
+ dependencies = [
610
+ "windows",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "chrono"
615
+ version = "0.4.44"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
618
+ dependencies = [
619
+ "iana-time-zone",
620
+ "js-sys",
621
+ "num-traits",
622
+ "serde",
623
+ "wasm-bindgen",
624
+ "windows-link",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "cipher"
629
+ version = "0.4.4"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
632
+ dependencies = [
633
+ "crypto-common",
634
+ "inout",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "clap"
639
+ version = "4.6.1"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
642
+ dependencies = [
643
+ "clap_builder",
644
+ "clap_derive",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "clap_builder"
649
+ version = "4.6.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
652
+ dependencies = [
653
+ "anstream",
654
+ "anstyle",
655
+ "clap_lex",
656
+ "strsim",
657
+ "terminal_size",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "clap_derive"
662
+ version = "4.6.1"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
665
+ dependencies = [
666
+ "heck",
667
+ "proc-macro2",
668
+ "quote",
669
+ "syn",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "clap_lex"
674
+ version = "1.1.0"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
677
+
678
+ [[package]]
679
+ name = "clipboard-win"
680
+ version = "5.4.1"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
683
+ dependencies = [
684
+ "error-code",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "color-print"
689
+ version = "0.3.7"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "3aa954171903797d5623e047d9ab69d91b493657917bdfb8c2c80ecaf9cdb6f4"
692
+ dependencies = [
693
+ "color-print-proc-macro",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "color-print-proc-macro"
698
+ version = "0.3.7"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "692186b5ebe54007e45a59aea47ece9eb4108e141326c304cdc91699a7118a22"
701
+ dependencies = [
702
+ "nom",
703
+ "proc-macro2",
704
+ "quote",
705
+ "syn",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "colorchoice"
710
+ version = "1.0.5"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
713
+
714
+ [[package]]
715
+ name = "command-fds"
716
+ version = "0.3.3"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "1b60b5124979fccd9addd89d8b97a1d6eebb4950694520c75ddd722535ea443f"
719
+ dependencies = [
720
+ "nix 0.31.3",
721
+ "thiserror 2.0.18",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "compact_str"
726
+ version = "0.8.2"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e"
729
+ dependencies = [
730
+ "castaway",
731
+ "cfg-if",
732
+ "itoa",
733
+ "rustversion",
734
+ "ryu",
735
+ "static_assertions",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "const-oid"
740
+ version = "0.9.6"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
743
+
744
+ [[package]]
745
+ name = "constant_time_eq"
746
+ version = "0.4.2"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
749
+
750
+ [[package]]
751
+ name = "core-foundation"
752
+ version = "0.10.1"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
755
+ dependencies = [
756
+ "core-foundation-sys",
757
+ "libc",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "core-foundation-sys"
762
+ version = "0.8.7"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
765
+
766
+ [[package]]
767
+ name = "cpufeatures"
768
+ version = "0.2.17"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
771
+ dependencies = [
772
+ "libc",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "cpufeatures"
777
+ version = "0.3.0"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
780
+ dependencies = [
781
+ "libc",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "crc32fast"
786
+ version = "1.5.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
789
+ dependencies = [
790
+ "cfg-if",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "crossterm"
795
+ version = "0.28.1"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
798
+ dependencies = [
799
+ "bitflags",
800
+ "crossterm_winapi",
801
+ "mio",
802
+ "parking_lot",
803
+ "rustix 0.38.44",
804
+ "signal-hook",
805
+ "signal-hook-mio",
806
+ "winapi",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "crossterm_winapi"
811
+ version = "0.9.1"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
814
+ dependencies = [
815
+ "winapi",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "crypto-bigint"
820
+ version = "0.5.5"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
823
+ dependencies = [
824
+ "generic-array",
825
+ "rand_core 0.6.4",
826
+ "subtle",
827
+ "zeroize",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "crypto-common"
832
+ version = "0.1.7"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
835
+ dependencies = [
836
+ "generic-array",
837
+ "typenum",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "curve25519-dalek"
842
+ version = "4.1.3"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
845
+ dependencies = [
846
+ "cfg-if",
847
+ "cpufeatures 0.2.17",
848
+ "curve25519-dalek-derive",
849
+ "digest",
850
+ "fiat-crypto",
851
+ "rustc_version",
852
+ "subtle",
853
+ "zeroize",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "curve25519-dalek-derive"
858
+ version = "0.1.1"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
861
+ dependencies = [
862
+ "proc-macro2",
863
+ "quote",
864
+ "syn",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "darling"
869
+ version = "0.20.11"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
872
+ dependencies = [
873
+ "darling_core 0.20.11",
874
+ "darling_macro 0.20.11",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "darling"
879
+ version = "0.23.0"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
882
+ dependencies = [
883
+ "darling_core 0.23.0",
884
+ "darling_macro 0.23.0",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "darling_core"
889
+ version = "0.20.11"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
892
+ dependencies = [
893
+ "fnv",
894
+ "ident_case",
895
+ "proc-macro2",
896
+ "quote",
897
+ "strsim",
898
+ "syn",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "darling_core"
903
+ version = "0.23.0"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
906
+ dependencies = [
907
+ "ident_case",
908
+ "proc-macro2",
909
+ "quote",
910
+ "strsim",
911
+ "syn",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "darling_macro"
916
+ version = "0.20.11"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
919
+ dependencies = [
920
+ "darling_core 0.20.11",
921
+ "quote",
922
+ "syn",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "darling_macro"
927
+ version = "0.23.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
930
+ dependencies = [
931
+ "darling_core 0.23.0",
932
+ "quote",
933
+ "syn",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "deadpool"
938
+ version = "0.12.3"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
941
+ dependencies = [
942
+ "deadpool-runtime",
943
+ "lazy_static",
944
+ "num_cpus",
945
+ "tokio",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "deadpool-runtime"
950
+ version = "0.1.4"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
953
+
954
+ [[package]]
955
+ name = "der"
956
+ version = "0.7.10"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
959
+ dependencies = [
960
+ "const-oid",
961
+ "pem-rfc7468",
962
+ "zeroize",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "difflib"
967
+ version = "0.4.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
970
+
971
+ [[package]]
972
+ name = "diffy"
973
+ version = "0.4.2"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "b545b8c50194bdd008283985ab0b31dba153cfd5b3066a92770634fbc0d7d291"
976
+ dependencies = [
977
+ "nu-ansi-term",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "digest"
982
+ version = "0.10.7"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
985
+ dependencies = [
986
+ "block-buffer",
987
+ "const-oid",
988
+ "crypto-common",
989
+ "subtle",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "displaydoc"
994
+ version = "0.2.6"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
997
+ dependencies = [
998
+ "proc-macro2",
999
+ "quote",
1000
+ "syn",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "ecdsa"
1005
+ version = "0.16.9"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1008
+ dependencies = [
1009
+ "der",
1010
+ "digest",
1011
+ "elliptic-curve",
1012
+ "rfc6979",
1013
+ "signature",
1014
+ "spki",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "ed25519"
1019
+ version = "2.2.3"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
1022
+ dependencies = [
1023
+ "pkcs8",
1024
+ "serde",
1025
+ "signature",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "ed25519-dalek"
1030
+ version = "2.2.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
1033
+ dependencies = [
1034
+ "curve25519-dalek",
1035
+ "ed25519",
1036
+ "rand_core 0.6.4",
1037
+ "serde",
1038
+ "sha2",
1039
+ "subtle",
1040
+ "zeroize",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "either"
1045
+ version = "1.16.0"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1048
+
1049
+ [[package]]
1050
+ name = "elliptic-curve"
1051
+ version = "0.13.8"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1054
+ dependencies = [
1055
+ "base16ct",
1056
+ "crypto-bigint",
1057
+ "digest",
1058
+ "ff",
1059
+ "generic-array",
1060
+ "group",
1061
+ "pkcs8",
1062
+ "rand_core 0.6.4",
1063
+ "sec1",
1064
+ "subtle",
1065
+ "zeroize",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "equivalent"
1070
+ version = "1.0.2"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1073
+
1074
+ [[package]]
1075
+ name = "errno"
1076
+ version = "0.3.14"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1079
+ dependencies = [
1080
+ "libc",
1081
+ "windows-sys 0.61.2",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "error-code"
1086
+ version = "3.3.2"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
1089
+
1090
+ [[package]]
1091
+ name = "fancy-regex"
1092
+ version = "0.18.0"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
1095
+ dependencies = [
1096
+ "bit-set",
1097
+ "regex-automata",
1098
+ "regex-syntax",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "fastrand"
1103
+ version = "2.4.1"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1106
+
1107
+ [[package]]
1108
+ name = "fd-lock"
1109
+ version = "4.0.4"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
1112
+ dependencies = [
1113
+ "cfg-if",
1114
+ "rustix 1.1.4",
1115
+ "windows-sys 0.59.0",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "ff"
1120
+ version = "0.13.1"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
1123
+ dependencies = [
1124
+ "rand_core 0.6.4",
1125
+ "subtle",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "fiat-crypto"
1130
+ version = "0.2.9"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
1133
+
1134
+ [[package]]
1135
+ name = "find-msvc-tools"
1136
+ version = "0.1.9"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1139
+
1140
+ [[package]]
1141
+ name = "flate2"
1142
+ version = "1.1.9"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1145
+ dependencies = [
1146
+ "crc32fast",
1147
+ "miniz_oxide",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "float-cmp"
1152
+ version = "0.10.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
1155
+ dependencies = [
1156
+ "num-traits",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "fluent"
1161
+ version = "0.17.0"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "8137a6d5a2c50d6b0ebfcb9aaa91a28154e0a70605f112d30cb0cd4a78670477"
1164
+ dependencies = [
1165
+ "fluent-bundle",
1166
+ "unic-langid",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "fluent-bundle"
1171
+ version = "0.16.0"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "01203cb8918f5711e73891b347816d932046f95f54207710bda99beaeb423bf4"
1174
+ dependencies = [
1175
+ "fluent-langneg",
1176
+ "fluent-syntax",
1177
+ "intl-memoizer",
1178
+ "intl_pluralrules",
1179
+ "rustc-hash",
1180
+ "self_cell",
1181
+ "smallvec",
1182
+ "unic-langid",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "fluent-langneg"
1187
+ version = "0.13.1"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "7eebbe59450baee8282d71676f3bfed5689aeab00b27545e83e5f14b1195e8b0"
1190
+ dependencies = [
1191
+ "unic-langid",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "fluent-syntax"
1196
+ version = "0.12.0"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "54f0d287c53ffd184d04d8677f590f4ac5379785529e5e08b1c8083acdd5c198"
1199
+ dependencies = [
1200
+ "memchr",
1201
+ "thiserror 2.0.18",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "fnv"
1206
+ version = "1.0.7"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1209
+
1210
+ [[package]]
1211
+ name = "foldhash"
1212
+ version = "0.1.5"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1215
+
1216
+ [[package]]
1217
+ name = "foldhash"
1218
+ version = "0.2.0"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1221
+
1222
+ [[package]]
1223
+ name = "form_urlencoded"
1224
+ version = "1.2.2"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1227
+ dependencies = [
1228
+ "percent-encoding",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "fs_extra"
1233
+ version = "1.3.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1236
+
1237
+ [[package]]
1238
+ name = "futures"
1239
+ version = "0.3.32"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1242
+ dependencies = [
1243
+ "futures-channel",
1244
+ "futures-core",
1245
+ "futures-executor",
1246
+ "futures-io",
1247
+ "futures-sink",
1248
+ "futures-task",
1249
+ "futures-util",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "futures-channel"
1254
+ version = "0.3.32"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1257
+ dependencies = [
1258
+ "futures-core",
1259
+ "futures-sink",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "futures-core"
1264
+ version = "0.3.32"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1267
+
1268
+ [[package]]
1269
+ name = "futures-executor"
1270
+ version = "0.3.32"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1273
+ dependencies = [
1274
+ "futures-core",
1275
+ "futures-task",
1276
+ "futures-util",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "futures-io"
1281
+ version = "0.3.32"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1284
+
1285
+ [[package]]
1286
+ name = "futures-macro"
1287
+ version = "0.3.32"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1290
+ dependencies = [
1291
+ "proc-macro2",
1292
+ "quote",
1293
+ "syn",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "futures-sink"
1298
+ version = "0.3.32"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1301
+
1302
+ [[package]]
1303
+ name = "futures-task"
1304
+ version = "0.3.32"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1307
+
1308
+ [[package]]
1309
+ name = "futures-util"
1310
+ version = "0.3.32"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1313
+ dependencies = [
1314
+ "futures-channel",
1315
+ "futures-core",
1316
+ "futures-io",
1317
+ "futures-macro",
1318
+ "futures-sink",
1319
+ "futures-task",
1320
+ "memchr",
1321
+ "pin-project-lite",
1322
+ "slab",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "generic-array"
1327
+ version = "0.14.7"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1330
+ dependencies = [
1331
+ "typenum",
1332
+ "version_check",
1333
+ "zeroize",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "getrandom"
1338
+ version = "0.2.17"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1341
+ dependencies = [
1342
+ "cfg-if",
1343
+ "js-sys",
1344
+ "libc",
1345
+ "wasi 0.11.1+wasi-snapshot-preview1",
1346
+ "wasm-bindgen",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "getrandom"
1351
+ version = "0.3.4"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1354
+ dependencies = [
1355
+ "cfg-if",
1356
+ "js-sys",
1357
+ "libc",
1358
+ "r-efi 5.3.0",
1359
+ "wasip2",
1360
+ "wasm-bindgen",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "getrandom"
1365
+ version = "0.4.2"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1368
+ dependencies = [
1369
+ "cfg-if",
1370
+ "js-sys",
1371
+ "libc",
1372
+ "r-efi 6.0.0",
1373
+ "rand_core 0.10.1",
1374
+ "wasip2",
1375
+ "wasip3",
1376
+ "wasm-bindgen",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "glob"
1381
+ version = "0.3.3"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1384
+
1385
+ [[package]]
1386
+ name = "group"
1387
+ version = "0.13.0"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1390
+ dependencies = [
1391
+ "ff",
1392
+ "rand_core 0.6.4",
1393
+ "subtle",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "h2"
1398
+ version = "0.4.14"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
1401
+ dependencies = [
1402
+ "atomic-waker",
1403
+ "bytes",
1404
+ "fnv",
1405
+ "futures-core",
1406
+ "futures-sink",
1407
+ "http",
1408
+ "indexmap",
1409
+ "slab",
1410
+ "tokio",
1411
+ "tokio-util",
1412
+ "tracing",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "hashbrown"
1417
+ version = "0.15.5"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1420
+ dependencies = [
1421
+ "allocator-api2",
1422
+ "equivalent",
1423
+ "foldhash 0.1.5",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "hashbrown"
1428
+ version = "0.16.1"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1431
+ dependencies = [
1432
+ "allocator-api2",
1433
+ "equivalent",
1434
+ "foldhash 0.2.0",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "hashbrown"
1439
+ version = "0.17.1"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1442
+
1443
+ [[package]]
1444
+ name = "heck"
1445
+ version = "0.5.0"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1448
+
1449
+ [[package]]
1450
+ name = "hermit-abi"
1451
+ version = "0.5.2"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1454
+
1455
+ [[package]]
1456
+ name = "hex"
1457
+ version = "0.4.3"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1460
+
1461
+ [[package]]
1462
+ name = "hmac"
1463
+ version = "0.12.1"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1466
+ dependencies = [
1467
+ "digest",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "hostname"
1472
+ version = "0.4.2"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
1475
+ dependencies = [
1476
+ "cfg-if",
1477
+ "libc",
1478
+ "windows-link",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "http"
1483
+ version = "1.4.1"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
1486
+ dependencies = [
1487
+ "bytes",
1488
+ "itoa",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "http-body"
1493
+ version = "1.0.1"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1496
+ dependencies = [
1497
+ "bytes",
1498
+ "http",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "http-body-util"
1503
+ version = "0.1.3"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1506
+ dependencies = [
1507
+ "bytes",
1508
+ "futures-core",
1509
+ "http",
1510
+ "http-body",
1511
+ "pin-project-lite",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "httparse"
1516
+ version = "1.10.1"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1519
+
1520
+ [[package]]
1521
+ name = "httpdate"
1522
+ version = "1.0.3"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1525
+
1526
+ [[package]]
1527
+ name = "hyper"
1528
+ version = "1.10.1"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1531
+ dependencies = [
1532
+ "atomic-waker",
1533
+ "bytes",
1534
+ "futures-channel",
1535
+ "futures-core",
1536
+ "h2",
1537
+ "http",
1538
+ "http-body",
1539
+ "httparse",
1540
+ "httpdate",
1541
+ "itoa",
1542
+ "pin-project-lite",
1543
+ "smallvec",
1544
+ "tokio",
1545
+ "want",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "hyper-rustls"
1550
+ version = "0.27.9"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1553
+ dependencies = [
1554
+ "http",
1555
+ "hyper",
1556
+ "hyper-util",
1557
+ "rustls",
1558
+ "rustls-native-certs",
1559
+ "tokio",
1560
+ "tokio-rustls",
1561
+ "tower-service",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "hyper-util"
1566
+ version = "0.1.20"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1569
+ dependencies = [
1570
+ "base64",
1571
+ "bytes",
1572
+ "futures-channel",
1573
+ "futures-util",
1574
+ "http",
1575
+ "http-body",
1576
+ "hyper",
1577
+ "ipnet",
1578
+ "libc",
1579
+ "percent-encoding",
1580
+ "pin-project-lite",
1581
+ "socket2",
1582
+ "tokio",
1583
+ "tower-service",
1584
+ "tracing",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "iana-time-zone"
1589
+ version = "0.1.65"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1592
+ dependencies = [
1593
+ "android_system_properties",
1594
+ "core-foundation-sys",
1595
+ "iana-time-zone-haiku",
1596
+ "js-sys",
1597
+ "log",
1598
+ "wasm-bindgen",
1599
+ "windows-core 0.62.2",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "iana-time-zone-haiku"
1604
+ version = "0.1.2"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1607
+ dependencies = [
1608
+ "cc",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "icu_collections"
1613
+ version = "2.2.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1616
+ dependencies = [
1617
+ "displaydoc",
1618
+ "potential_utf",
1619
+ "utf8_iter",
1620
+ "yoke",
1621
+ "zerofrom",
1622
+ "zerovec",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "icu_locale"
1627
+ version = "2.2.0"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
1630
+ dependencies = [
1631
+ "icu_collections",
1632
+ "icu_locale_core",
1633
+ "icu_locale_data",
1634
+ "icu_provider",
1635
+ "potential_utf",
1636
+ "tinystr",
1637
+ "zerovec",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "icu_locale_core"
1642
+ version = "2.2.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1645
+ dependencies = [
1646
+ "displaydoc",
1647
+ "litemap",
1648
+ "serde",
1649
+ "tinystr",
1650
+ "writeable",
1651
+ "zerovec",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "icu_locale_data"
1656
+ version = "2.2.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
1659
+
1660
+ [[package]]
1661
+ name = "icu_normalizer"
1662
+ version = "2.2.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1665
+ dependencies = [
1666
+ "icu_collections",
1667
+ "icu_normalizer_data",
1668
+ "icu_properties",
1669
+ "icu_provider",
1670
+ "smallvec",
1671
+ "zerovec",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "icu_normalizer_data"
1676
+ version = "2.2.0"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1679
+
1680
+ [[package]]
1681
+ name = "icu_properties"
1682
+ version = "2.2.0"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1685
+ dependencies = [
1686
+ "icu_collections",
1687
+ "icu_locale_core",
1688
+ "icu_properties_data",
1689
+ "icu_provider",
1690
+ "zerotrie",
1691
+ "zerovec",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "icu_properties_data"
1696
+ version = "2.2.0"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1699
+
1700
+ [[package]]
1701
+ name = "icu_provider"
1702
+ version = "2.2.0"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1705
+ dependencies = [
1706
+ "displaydoc",
1707
+ "icu_locale_core",
1708
+ "serde",
1709
+ "stable_deref_trait",
1710
+ "writeable",
1711
+ "yoke",
1712
+ "zerofrom",
1713
+ "zerotrie",
1714
+ "zerovec",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "id-arena"
1719
+ version = "2.3.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1722
+
1723
+ [[package]]
1724
+ name = "ident_case"
1725
+ version = "1.0.1"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1728
+
1729
+ [[package]]
1730
+ name = "idna"
1731
+ version = "1.1.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1734
+ dependencies = [
1735
+ "idna_adapter",
1736
+ "smallvec",
1737
+ "utf8_iter",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "idna_adapter"
1742
+ version = "1.2.2"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1745
+ dependencies = [
1746
+ "icu_normalizer",
1747
+ "icu_properties",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "indenter"
1752
+ version = "0.3.4"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
1755
+
1756
+ [[package]]
1757
+ name = "indexmap"
1758
+ version = "2.14.0"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1761
+ dependencies = [
1762
+ "equivalent",
1763
+ "hashbrown 0.17.1",
1764
+ "serde",
1765
+ "serde_core",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "indoc"
1770
+ version = "2.0.7"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1773
+ dependencies = [
1774
+ "rustversion",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "inherent"
1779
+ version = "1.0.13"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "c727f80bfa4a6c6e2508d2f05b6f4bfce242030bd88ed15ae5331c5b5d30fba7"
1782
+ dependencies = [
1783
+ "proc-macro2",
1784
+ "quote",
1785
+ "syn",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "inout"
1790
+ version = "0.1.4"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1793
+ dependencies = [
1794
+ "generic-array",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "instability"
1799
+ version = "0.3.12"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "5eb2d60ef19920a3a9193c3e371f726ec1dafc045dac788d0fb3704272458971"
1802
+ dependencies = [
1803
+ "darling 0.23.0",
1804
+ "indoc",
1805
+ "proc-macro2",
1806
+ "quote",
1807
+ "syn",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "intl-memoizer"
1812
+ version = "0.5.3"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "310da2e345f5eb861e7a07ee182262e94975051db9e4223e909ba90f392f163f"
1815
+ dependencies = [
1816
+ "type-map",
1817
+ "unic-langid",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "intl_pluralrules"
1822
+ version = "7.0.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
1825
+ dependencies = [
1826
+ "unic-langid",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "ipnet"
1831
+ version = "2.12.0"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1834
+
1835
+ [[package]]
1836
+ name = "is_terminal_polyfill"
1837
+ version = "1.70.2"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1840
+
1841
+ [[package]]
1842
+ name = "itertools"
1843
+ version = "0.13.0"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1846
+ dependencies = [
1847
+ "either",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "itertools"
1852
+ version = "0.14.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1855
+ dependencies = [
1856
+ "either",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "itoa"
1861
+ version = "1.0.18"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1864
+
1865
+ [[package]]
1866
+ name = "js-sys"
1867
+ version = "0.3.99"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1870
+ dependencies = [
1871
+ "cfg-if",
1872
+ "futures-util",
1873
+ "once_cell",
1874
+ "wasm-bindgen",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "lazy_static"
1879
+ version = "1.5.0"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1882
+ dependencies = [
1883
+ "spin",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "leb128fmt"
1888
+ version = "0.1.0"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1891
+
1892
+ [[package]]
1893
+ name = "libc"
1894
+ version = "0.2.186"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1897
+
1898
+ [[package]]
1899
+ name = "libm"
1900
+ version = "0.2.16"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1903
+
1904
+ [[package]]
1905
+ name = "libredox"
1906
+ version = "0.1.17"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
1909
+ dependencies = [
1910
+ "libc",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "linux-raw-sys"
1915
+ version = "0.4.15"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1918
+
1919
+ [[package]]
1920
+ name = "linux-raw-sys"
1921
+ version = "0.12.1"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1924
+
1925
+ [[package]]
1926
+ name = "litemap"
1927
+ version = "0.8.2"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1930
+
1931
+ [[package]]
1932
+ name = "lock_api"
1933
+ version = "0.4.14"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1936
+ dependencies = [
1937
+ "scopeguard",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "log"
1942
+ version = "0.4.31"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "113b30b4cd05f7c06868fdb2854f66a7b9fece9a48425351cd532e810d74024f"
1945
+
1946
+ [[package]]
1947
+ name = "lru"
1948
+ version = "0.12.5"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1951
+ dependencies = [
1952
+ "hashbrown 0.15.5",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "lru-slab"
1957
+ version = "0.1.2"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1960
+
1961
+ [[package]]
1962
+ name = "matchers"
1963
+ version = "0.2.0"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1966
+ dependencies = [
1967
+ "regex-automata",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "memchr"
1972
+ version = "2.8.1"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1975
+
1976
+ [[package]]
1977
+ name = "minimal-lexical"
1978
+ version = "0.2.1"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1981
+
1982
+ [[package]]
1983
+ name = "miniz_oxide"
1984
+ version = "0.8.9"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1987
+ dependencies = [
1988
+ "adler2",
1989
+ "simd-adler32",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "mio"
1994
+ version = "1.2.1"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1997
+ dependencies = [
1998
+ "libc",
1999
+ "log",
2000
+ "wasi 0.11.1+wasi-snapshot-preview1",
2001
+ "windows-sys 0.61.2",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "newt-acp-worker"
2006
+ version = "0.6.6"
2007
+ dependencies = [
2008
+ "anyhow",
2009
+ "async-trait",
2010
+ "newt-coder",
2011
+ "newt-core",
2012
+ "newt-identity",
2013
+ "newt-inference",
2014
+ "newt-tools",
2015
+ "prometheus",
2016
+ "pyo3",
2017
+ "serde",
2018
+ "serde_json",
2019
+ "tempfile",
2020
+ "tests-common",
2021
+ "thiserror 2.0.18",
2022
+ "tokio",
2023
+ "tokio-test",
2024
+ "tracing",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "newt-agent"
2029
+ version = "0.6.6"
2030
+ dependencies = [
2031
+ "anyhow",
2032
+ "assert_cmd",
2033
+ "cargo_metadata",
2034
+ "clap",
2035
+ "libc",
2036
+ "newt-acp-worker",
2037
+ "newt-core",
2038
+ "newt-identity",
2039
+ "newt-inference",
2040
+ "newt-mcp-server",
2041
+ "newt-tools",
2042
+ "newt-tui",
2043
+ "predicates",
2044
+ "reqwest",
2045
+ "serde_json",
2046
+ "tempfile",
2047
+ "tokio",
2048
+ "toml",
2049
+ "tracing",
2050
+ "tracing-subscriber",
2051
+ "wiremock",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "newt-agent-py"
2056
+ version = "0.6.6"
2057
+ dependencies = [
2058
+ "newt-acp-worker",
2059
+ "newt-coder",
2060
+ "newt-core",
2061
+ "newt-eval",
2062
+ "newt-inference",
2063
+ "newt-mcp-server",
2064
+ "newt-tools",
2065
+ "pyo3",
2066
+ "pyo3-async-runtimes",
2067
+ "tokio",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "newt-coder"
2072
+ version = "0.6.6"
2073
+ dependencies = [
2074
+ "agent-mesh-protocol",
2075
+ "anyhow",
2076
+ "async-trait",
2077
+ "base64",
2078
+ "newt-core",
2079
+ "newt-identity",
2080
+ "newt-inference",
2081
+ "newt-tools",
2082
+ "plugins-protocol",
2083
+ "pyo3",
2084
+ "serde",
2085
+ "serde_json",
2086
+ "tempfile",
2087
+ "tests-common",
2088
+ "thiserror 2.0.18",
2089
+ "tokio",
2090
+ "tracing",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "newt-core"
2095
+ version = "0.6.6"
2096
+ dependencies = [
2097
+ "agent-mesh-protocol",
2098
+ "anyhow",
2099
+ "async-trait",
2100
+ "pyo3",
2101
+ "serde",
2102
+ "serde_json",
2103
+ "tempfile",
2104
+ "thiserror 2.0.18",
2105
+ "tokio",
2106
+ "toml",
2107
+ "tracing",
2108
+ "uuid",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "newt-eval"
2113
+ version = "0.6.6"
2114
+ dependencies = [
2115
+ "anyhow",
2116
+ "assert_cmd",
2117
+ "cargo_metadata",
2118
+ "clap",
2119
+ "fs_extra",
2120
+ "newt-acp-worker",
2121
+ "newt-core",
2122
+ "predicates",
2123
+ "pyo3",
2124
+ "regex",
2125
+ "serde",
2126
+ "serde_json",
2127
+ "tempfile",
2128
+ "tokio",
2129
+ "toml",
2130
+ "tracing",
2131
+ "tracing-subscriber",
2132
+ "walkdir",
2133
+ "wiremock",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "newt-identity"
2138
+ version = "0.6.6"
2139
+ dependencies = [
2140
+ "agent-mesh-protocol",
2141
+ "base64",
2142
+ "chrono",
2143
+ "newt-core",
2144
+ "serde_json",
2145
+ "tempfile",
2146
+ "thiserror 2.0.18",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "newt-inference"
2151
+ version = "0.6.6"
2152
+ dependencies = [
2153
+ "agent-mesh-protocol",
2154
+ "anyhow",
2155
+ "async-trait",
2156
+ "base64",
2157
+ "futures-core",
2158
+ "newt-core",
2159
+ "newt-identity",
2160
+ "plugins-protocol",
2161
+ "pyo3",
2162
+ "pyo3-async-runtimes",
2163
+ "reqwest",
2164
+ "serde",
2165
+ "serde_json",
2166
+ "tempfile",
2167
+ "tests-common",
2168
+ "thiserror 2.0.18",
2169
+ "tokio",
2170
+ "tokio-stream",
2171
+ "tokio-test",
2172
+ "tracing",
2173
+ "wiremock",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "newt-mcp-server"
2178
+ version = "0.6.6"
2179
+ dependencies = [
2180
+ "agent-bridle 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=c00259af499924527cb31350cba91f093dd432c9)",
2181
+ "agent-mesh-protocol",
2182
+ "anyhow",
2183
+ "newt-core",
2184
+ "newt-inference",
2185
+ "newt-tools",
2186
+ "pyo3",
2187
+ "serde",
2188
+ "serde_json",
2189
+ "tempfile",
2190
+ "tests-common",
2191
+ "tokio",
2192
+ "tokio-test",
2193
+ "toml",
2194
+ "tracing",
2195
+ "tracing-subscriber",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "newt-skills"
2200
+ version = "0.6.6"
2201
+ dependencies = [
2202
+ "anyhow",
2203
+ "serde",
2204
+ "serde_yaml",
2205
+ "tempfile",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "newt-tools"
2210
+ version = "0.6.6"
2211
+ dependencies = [
2212
+ "anyhow",
2213
+ "diffy",
2214
+ "newt-core",
2215
+ "pyo3",
2216
+ "regex",
2217
+ "serde",
2218
+ "serde_json",
2219
+ "tempfile",
2220
+ "thiserror 2.0.18",
2221
+ "tracing",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "newt-tui"
2226
+ version = "0.6.6"
2227
+ dependencies = [
2228
+ "agent-bridle 0.1.0 (git+https://github.com/Gilamonster-Foundation/agent-bridle?rev=5adfd91f12f29a496108eba05cbca59c8ab86aeb)",
2229
+ "agent-mesh-protocol",
2230
+ "anyhow",
2231
+ "base64",
2232
+ "crossterm",
2233
+ "newt-core",
2234
+ "newt-identity",
2235
+ "newt-inference",
2236
+ "newt-skills",
2237
+ "newt-tools",
2238
+ "ratatui",
2239
+ "reqwest",
2240
+ "rustyline",
2241
+ "serde_json",
2242
+ "tempfile",
2243
+ "tokio",
2244
+ "tracing",
2245
+ "wiremock",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "nix"
2250
+ version = "0.28.0"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
2253
+ dependencies = [
2254
+ "bitflags",
2255
+ "cfg-if",
2256
+ "cfg_aliases 0.1.1",
2257
+ "libc",
2258
+ ]
2259
+
2260
+ [[package]]
2261
+ name = "nix"
2262
+ version = "0.31.3"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
2265
+ dependencies = [
2266
+ "bitflags",
2267
+ "cfg-if",
2268
+ "cfg_aliases 0.2.1",
2269
+ "libc",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "nom"
2274
+ version = "7.1.3"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2277
+ dependencies = [
2278
+ "memchr",
2279
+ "minimal-lexical",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "normalize-line-endings"
2284
+ version = "0.3.0"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2287
+
2288
+ [[package]]
2289
+ name = "normalize-path"
2290
+ version = "0.2.1"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "f5438dd2b2ff4c6df6e1ce22d825ed2fa93ee2922235cc45186991717f0a892d"
2293
+
2294
+ [[package]]
2295
+ name = "nu-ansi-term"
2296
+ version = "0.50.3"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2299
+ dependencies = [
2300
+ "windows-sys 0.61.2",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "num-bigint"
2305
+ version = "0.4.6"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2308
+ dependencies = [
2309
+ "num-integer",
2310
+ "num-traits",
2311
+ ]
2312
+
2313
+ [[package]]
2314
+ name = "num-bigint-dig"
2315
+ version = "0.8.6"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2318
+ dependencies = [
2319
+ "lazy_static",
2320
+ "libm",
2321
+ "num-integer",
2322
+ "num-iter",
2323
+ "num-traits",
2324
+ "rand 0.8.6",
2325
+ "smallvec",
2326
+ "zeroize",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "num-integer"
2331
+ version = "0.1.46"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2334
+ dependencies = [
2335
+ "num-traits",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "num-iter"
2340
+ version = "0.1.45"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2343
+ dependencies = [
2344
+ "autocfg",
2345
+ "num-integer",
2346
+ "num-traits",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "num-traits"
2351
+ version = "0.2.19"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2354
+ dependencies = [
2355
+ "autocfg",
2356
+ "libm",
2357
+ ]
2358
+
2359
+ [[package]]
2360
+ name = "num_cpus"
2361
+ version = "1.17.0"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2364
+ dependencies = [
2365
+ "hermit-abi",
2366
+ "libc",
2367
+ ]
2368
+
2369
+ [[package]]
2370
+ name = "objc2-core-foundation"
2371
+ version = "0.3.2"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
2374
+ dependencies = [
2375
+ "bitflags",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "objc2-system-configuration"
2380
+ version = "0.3.2"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
2383
+ dependencies = [
2384
+ "objc2-core-foundation",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "once_cell"
2389
+ version = "1.21.4"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2392
+
2393
+ [[package]]
2394
+ name = "once_cell_polyfill"
2395
+ version = "1.70.2"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2398
+
2399
+ [[package]]
2400
+ name = "openssl-probe"
2401
+ version = "0.2.1"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2404
+
2405
+ [[package]]
2406
+ name = "os_display"
2407
+ version = "0.1.4"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "ad5fd71b79026fb918650dde6d125000a233764f1c2f1659a1c71118e33ea08f"
2410
+ dependencies = [
2411
+ "unicode-width 0.2.0",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "p256"
2416
+ version = "0.13.2"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2419
+ dependencies = [
2420
+ "ecdsa",
2421
+ "elliptic-curve",
2422
+ "primeorder",
2423
+ "sha2",
2424
+ ]
2425
+
2426
+ [[package]]
2427
+ name = "p384"
2428
+ version = "0.13.1"
2429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2430
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2431
+ dependencies = [
2432
+ "ecdsa",
2433
+ "elliptic-curve",
2434
+ "primeorder",
2435
+ "sha2",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "p521"
2440
+ version = "0.13.3"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
2443
+ dependencies = [
2444
+ "base16ct",
2445
+ "ecdsa",
2446
+ "elliptic-curve",
2447
+ "primeorder",
2448
+ "rand_core 0.6.4",
2449
+ "sha2",
2450
+ ]
2451
+
2452
+ [[package]]
2453
+ name = "parking_lot"
2454
+ version = "0.12.5"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2457
+ dependencies = [
2458
+ "lock_api",
2459
+ "parking_lot_core",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "parking_lot_core"
2464
+ version = "0.9.12"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2467
+ dependencies = [
2468
+ "cfg-if",
2469
+ "libc",
2470
+ "redox_syscall",
2471
+ "smallvec",
2472
+ "windows-link",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "paste"
2477
+ version = "1.0.15"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2480
+
2481
+ [[package]]
2482
+ name = "peg"
2483
+ version = "0.8.6"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "0aad070be5b63aa72103f2fcdd70a83adbd5e90112ce5b574171ff1c65501773"
2486
+ dependencies = [
2487
+ "peg-macros",
2488
+ "peg-runtime",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "peg-macros"
2493
+ version = "0.8.6"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "ddd8ef6825cae95355031ae26a99b616a2a21f22ba2de0197c43dfb05acbe7ee"
2496
+ dependencies = [
2497
+ "peg-runtime",
2498
+ "proc-macro2",
2499
+ "quote",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "peg-runtime"
2504
+ version = "0.8.6"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "7011d97b484a5ebdc4b1fdb3b12d5e4bbbea56e9d22b688f2e79e04b65a7d8a6"
2507
+
2508
+ [[package]]
2509
+ name = "pem-rfc7468"
2510
+ version = "0.7.0"
2511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2513
+ dependencies = [
2514
+ "base64ct",
2515
+ ]
2516
+
2517
+ [[package]]
2518
+ name = "percent-encoding"
2519
+ version = "2.3.2"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2522
+
2523
+ [[package]]
2524
+ name = "phf"
2525
+ version = "0.11.3"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2528
+ dependencies = [
2529
+ "phf_shared",
2530
+ ]
2531
+
2532
+ [[package]]
2533
+ name = "phf_codegen"
2534
+ version = "0.11.3"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2537
+ dependencies = [
2538
+ "phf_generator",
2539
+ "phf_shared",
2540
+ ]
2541
+
2542
+ [[package]]
2543
+ name = "phf_generator"
2544
+ version = "0.11.3"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2547
+ dependencies = [
2548
+ "phf_shared",
2549
+ "rand 0.8.6",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "phf_shared"
2554
+ version = "0.11.3"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2557
+ dependencies = [
2558
+ "siphasher",
2559
+ ]
2560
+
2561
+ [[package]]
2562
+ name = "pin-project-lite"
2563
+ version = "0.2.17"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2566
+
2567
+ [[package]]
2568
+ name = "pkcs1"
2569
+ version = "0.7.5"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2572
+ dependencies = [
2573
+ "der",
2574
+ "pkcs8",
2575
+ "spki",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "pkcs8"
2580
+ version = "0.10.2"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2583
+ dependencies = [
2584
+ "der",
2585
+ "spki",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "plugins-protocol"
2590
+ version = "0.6.6"
2591
+ dependencies = [
2592
+ "serde",
2593
+ "serde_json",
2594
+ "thiserror 2.0.18",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "portable-atomic"
2599
+ version = "1.13.1"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2602
+
2603
+ [[package]]
2604
+ name = "potential_utf"
2605
+ version = "0.1.5"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2608
+ dependencies = [
2609
+ "serde_core",
2610
+ "writeable",
2611
+ "zerovec",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "ppv-lite86"
2616
+ version = "0.2.21"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2619
+ dependencies = [
2620
+ "zerocopy",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "predicates"
2625
+ version = "3.1.4"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
2628
+ dependencies = [
2629
+ "anstyle",
2630
+ "difflib",
2631
+ "float-cmp",
2632
+ "normalize-line-endings",
2633
+ "predicates-core",
2634
+ "regex",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "predicates-core"
2639
+ version = "1.0.10"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
2642
+
2643
+ [[package]]
2644
+ name = "predicates-tree"
2645
+ version = "1.0.13"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
2648
+ dependencies = [
2649
+ "predicates-core",
2650
+ "termtree",
2651
+ ]
2652
+
2653
+ [[package]]
2654
+ name = "prettyplease"
2655
+ version = "0.2.37"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2658
+ dependencies = [
2659
+ "proc-macro2",
2660
+ "syn",
2661
+ ]
2662
+
2663
+ [[package]]
2664
+ name = "primeorder"
2665
+ version = "0.13.6"
2666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2667
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2668
+ dependencies = [
2669
+ "elliptic-curve",
2670
+ ]
2671
+
2672
+ [[package]]
2673
+ name = "proc-macro2"
2674
+ version = "1.0.106"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2677
+ dependencies = [
2678
+ "unicode-ident",
2679
+ ]
2680
+
2681
+ [[package]]
2682
+ name = "procfs"
2683
+ version = "0.18.0"
2684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2685
+ checksum = "25485360a54d6861439d60facef26de713b1e126bf015ec8f98239467a2b82f7"
2686
+ dependencies = [
2687
+ "bitflags",
2688
+ "chrono",
2689
+ "flate2",
2690
+ "procfs-core",
2691
+ "rustix 1.1.4",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "procfs-core"
2696
+ version = "0.18.0"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "e6401bf7b6af22f78b563665d15a22e9aef27775b79b149a66ca022468a4e405"
2699
+ dependencies = [
2700
+ "bitflags",
2701
+ "chrono",
2702
+ "hex",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "prometheus"
2707
+ version = "0.13.4"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
2710
+ dependencies = [
2711
+ "cfg-if",
2712
+ "fnv",
2713
+ "lazy_static",
2714
+ "memchr",
2715
+ "parking_lot",
2716
+ "thiserror 1.0.69",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "pyo3"
2721
+ version = "0.28.3"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
2724
+ dependencies = [
2725
+ "libc",
2726
+ "once_cell",
2727
+ "portable-atomic",
2728
+ "pyo3-build-config",
2729
+ "pyo3-ffi",
2730
+ "pyo3-macros",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "pyo3-async-runtimes"
2735
+ version = "0.28.0"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
2738
+ dependencies = [
2739
+ "futures-channel",
2740
+ "futures-util",
2741
+ "once_cell",
2742
+ "pin-project-lite",
2743
+ "pyo3",
2744
+ "tokio",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "pyo3-build-config"
2749
+ version = "0.28.3"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2752
+ dependencies = [
2753
+ "target-lexicon",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "pyo3-ffi"
2758
+ version = "0.28.3"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2761
+ dependencies = [
2762
+ "libc",
2763
+ "pyo3-build-config",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "pyo3-macros"
2768
+ version = "0.28.3"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2771
+ dependencies = [
2772
+ "proc-macro2",
2773
+ "pyo3-macros-backend",
2774
+ "quote",
2775
+ "syn",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "pyo3-macros-backend"
2780
+ version = "0.28.3"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2783
+ dependencies = [
2784
+ "heck",
2785
+ "proc-macro2",
2786
+ "pyo3-build-config",
2787
+ "quote",
2788
+ "syn",
2789
+ ]
2790
+
2791
+ [[package]]
2792
+ name = "quinn"
2793
+ version = "0.11.9"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2796
+ dependencies = [
2797
+ "bytes",
2798
+ "cfg_aliases 0.2.1",
2799
+ "pin-project-lite",
2800
+ "quinn-proto",
2801
+ "quinn-udp",
2802
+ "rustc-hash",
2803
+ "rustls",
2804
+ "socket2",
2805
+ "thiserror 2.0.18",
2806
+ "tokio",
2807
+ "tracing",
2808
+ "web-time",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "quinn-proto"
2813
+ version = "0.11.14"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2816
+ dependencies = [
2817
+ "bytes",
2818
+ "getrandom 0.3.4",
2819
+ "lru-slab",
2820
+ "rand 0.9.4",
2821
+ "ring",
2822
+ "rustc-hash",
2823
+ "rustls",
2824
+ "rustls-pki-types",
2825
+ "slab",
2826
+ "thiserror 2.0.18",
2827
+ "tinyvec",
2828
+ "tracing",
2829
+ "web-time",
2830
+ ]
2831
+
2832
+ [[package]]
2833
+ name = "quinn-udp"
2834
+ version = "0.5.14"
2835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2836
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2837
+ dependencies = [
2838
+ "cfg_aliases 0.2.1",
2839
+ "libc",
2840
+ "once_cell",
2841
+ "socket2",
2842
+ "tracing",
2843
+ "windows-sys 0.60.2",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "quote"
2848
+ version = "1.0.45"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2851
+ dependencies = [
2852
+ "proc-macro2",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "r-efi"
2857
+ version = "5.3.0"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2860
+
2861
+ [[package]]
2862
+ name = "r-efi"
2863
+ version = "6.0.0"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2866
+
2867
+ [[package]]
2868
+ name = "rand"
2869
+ version = "0.8.6"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2872
+ dependencies = [
2873
+ "libc",
2874
+ "rand_chacha 0.3.1",
2875
+ "rand_core 0.6.4",
2876
+ ]
2877
+
2878
+ [[package]]
2879
+ name = "rand"
2880
+ version = "0.9.4"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2883
+ dependencies = [
2884
+ "rand_chacha 0.9.0",
2885
+ "rand_core 0.9.5",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "rand"
2890
+ version = "0.10.1"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
2893
+ dependencies = [
2894
+ "chacha20",
2895
+ "getrandom 0.4.2",
2896
+ "rand_core 0.10.1",
2897
+ ]
2898
+
2899
+ [[package]]
2900
+ name = "rand_chacha"
2901
+ version = "0.3.1"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2904
+ dependencies = [
2905
+ "ppv-lite86",
2906
+ "rand_core 0.6.4",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "rand_chacha"
2911
+ version = "0.9.0"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2914
+ dependencies = [
2915
+ "ppv-lite86",
2916
+ "rand_core 0.9.5",
2917
+ ]
2918
+
2919
+ [[package]]
2920
+ name = "rand_core"
2921
+ version = "0.6.4"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2924
+ dependencies = [
2925
+ "getrandom 0.2.17",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "rand_core"
2930
+ version = "0.9.5"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2933
+ dependencies = [
2934
+ "getrandom 0.3.4",
2935
+ ]
2936
+
2937
+ [[package]]
2938
+ name = "rand_core"
2939
+ version = "0.10.1"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2942
+
2943
+ [[package]]
2944
+ name = "ratatui"
2945
+ version = "0.29.0"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
2948
+ dependencies = [
2949
+ "bitflags",
2950
+ "cassowary",
2951
+ "compact_str",
2952
+ "crossterm",
2953
+ "indoc",
2954
+ "instability",
2955
+ "itertools 0.13.0",
2956
+ "lru",
2957
+ "paste",
2958
+ "strum 0.26.3",
2959
+ "unicode-segmentation",
2960
+ "unicode-truncate",
2961
+ "unicode-width 0.2.0",
2962
+ ]
2963
+
2964
+ [[package]]
2965
+ name = "redox_syscall"
2966
+ version = "0.5.18"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2969
+ dependencies = [
2970
+ "bitflags",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "regex"
2975
+ version = "1.12.3"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2978
+ dependencies = [
2979
+ "aho-corasick",
2980
+ "memchr",
2981
+ "regex-automata",
2982
+ "regex-syntax",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "regex-automata"
2987
+ version = "0.4.14"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2990
+ dependencies = [
2991
+ "aho-corasick",
2992
+ "memchr",
2993
+ "regex-syntax",
2994
+ ]
2995
+
2996
+ [[package]]
2997
+ name = "regex-syntax"
2998
+ version = "0.8.10"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
3001
+
3002
+ [[package]]
3003
+ name = "reqwest"
3004
+ version = "0.12.28"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3007
+ dependencies = [
3008
+ "base64",
3009
+ "bytes",
3010
+ "futures-core",
3011
+ "futures-util",
3012
+ "http",
3013
+ "http-body",
3014
+ "http-body-util",
3015
+ "hyper",
3016
+ "hyper-rustls",
3017
+ "hyper-util",
3018
+ "js-sys",
3019
+ "log",
3020
+ "percent-encoding",
3021
+ "pin-project-lite",
3022
+ "quinn",
3023
+ "rustls",
3024
+ "rustls-native-certs",
3025
+ "rustls-pki-types",
3026
+ "serde",
3027
+ "serde_json",
3028
+ "serde_urlencoded",
3029
+ "sync_wrapper",
3030
+ "tokio",
3031
+ "tokio-rustls",
3032
+ "tokio-util",
3033
+ "tower",
3034
+ "tower-http",
3035
+ "tower-service",
3036
+ "url",
3037
+ "wasm-bindgen",
3038
+ "wasm-bindgen-futures",
3039
+ "wasm-streams",
3040
+ "web-sys",
3041
+ ]
3042
+
3043
+ [[package]]
3044
+ name = "rfc6979"
3045
+ version = "0.4.0"
3046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3047
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
3048
+ dependencies = [
3049
+ "hmac",
3050
+ "subtle",
3051
+ ]
3052
+
3053
+ [[package]]
3054
+ name = "ring"
3055
+ version = "0.17.14"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3058
+ dependencies = [
3059
+ "cc",
3060
+ "cfg-if",
3061
+ "getrandom 0.2.17",
3062
+ "libc",
3063
+ "untrusted",
3064
+ "windows-sys 0.52.0",
3065
+ ]
3066
+
3067
+ [[package]]
3068
+ name = "rlimit"
3069
+ version = "0.11.0"
3070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3071
+ checksum = "f35ee2729c56bb610f6dba436bf78135f728b7373bdffae2ec815b2d3eb98cc3"
3072
+ dependencies = [
3073
+ "libc",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "rpds"
3078
+ version = "1.2.1"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "e025feb26210bc196b908e72deb063b1b4000754304341cbc168a1e72c857ebc"
3081
+ dependencies = [
3082
+ "archery",
3083
+ "smallvec",
3084
+ ]
3085
+
3086
+ [[package]]
3087
+ name = "rsa"
3088
+ version = "0.9.10"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
3091
+ dependencies = [
3092
+ "const-oid",
3093
+ "digest",
3094
+ "num-bigint-dig",
3095
+ "num-integer",
3096
+ "num-traits",
3097
+ "pkcs1",
3098
+ "pkcs8",
3099
+ "rand_core 0.6.4",
3100
+ "sha2",
3101
+ "signature",
3102
+ "spki",
3103
+ "subtle",
3104
+ "zeroize",
3105
+ ]
3106
+
3107
+ [[package]]
3108
+ name = "rustc-hash"
3109
+ version = "2.1.2"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
3112
+
3113
+ [[package]]
3114
+ name = "rustc_version"
3115
+ version = "0.4.1"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3118
+ dependencies = [
3119
+ "semver",
3120
+ ]
3121
+
3122
+ [[package]]
3123
+ name = "rustix"
3124
+ version = "0.38.44"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3127
+ dependencies = [
3128
+ "bitflags",
3129
+ "errno",
3130
+ "libc",
3131
+ "linux-raw-sys 0.4.15",
3132
+ "windows-sys 0.59.0",
3133
+ ]
3134
+
3135
+ [[package]]
3136
+ name = "rustix"
3137
+ version = "1.1.4"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3140
+ dependencies = [
3141
+ "bitflags",
3142
+ "errno",
3143
+ "libc",
3144
+ "linux-raw-sys 0.12.1",
3145
+ "windows-sys 0.61.2",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "rustls"
3150
+ version = "0.23.40"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
3153
+ dependencies = [
3154
+ "once_cell",
3155
+ "ring",
3156
+ "rustls-pki-types",
3157
+ "rustls-webpki",
3158
+ "subtle",
3159
+ "zeroize",
3160
+ ]
3161
+
3162
+ [[package]]
3163
+ name = "rustls-native-certs"
3164
+ version = "0.8.4"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
3167
+ dependencies = [
3168
+ "openssl-probe",
3169
+ "rustls-pki-types",
3170
+ "schannel",
3171
+ "security-framework",
3172
+ ]
3173
+
3174
+ [[package]]
3175
+ name = "rustls-pki-types"
3176
+ version = "1.14.1"
3177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3178
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
3179
+ dependencies = [
3180
+ "web-time",
3181
+ "zeroize",
3182
+ ]
3183
+
3184
+ [[package]]
3185
+ name = "rustls-webpki"
3186
+ version = "0.103.13"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
3189
+ dependencies = [
3190
+ "ring",
3191
+ "rustls-pki-types",
3192
+ "untrusted",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "rustversion"
3197
+ version = "1.0.22"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3200
+
3201
+ [[package]]
3202
+ name = "rustyline"
3203
+ version = "14.0.0"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63"
3206
+ dependencies = [
3207
+ "bitflags",
3208
+ "cfg-if",
3209
+ "clipboard-win",
3210
+ "fd-lock",
3211
+ "libc",
3212
+ "log",
3213
+ "memchr",
3214
+ "nix 0.28.0",
3215
+ "unicode-segmentation",
3216
+ "unicode-width 0.1.14",
3217
+ "utf8parse",
3218
+ "windows-sys 0.52.0",
3219
+ ]
3220
+
3221
+ [[package]]
3222
+ name = "ryu"
3223
+ version = "1.0.23"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3226
+
3227
+ [[package]]
3228
+ name = "same-file"
3229
+ version = "1.0.6"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3232
+ dependencies = [
3233
+ "winapi-util",
3234
+ ]
3235
+
3236
+ [[package]]
3237
+ name = "schannel"
3238
+ version = "0.1.29"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
3241
+ dependencies = [
3242
+ "windows-sys 0.61.2",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "scopeguard"
3247
+ version = "1.2.0"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3250
+
3251
+ [[package]]
3252
+ name = "sec1"
3253
+ version = "0.7.3"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
3256
+ dependencies = [
3257
+ "base16ct",
3258
+ "der",
3259
+ "generic-array",
3260
+ "pkcs8",
3261
+ "subtle",
3262
+ "zeroize",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "security-framework"
3267
+ version = "3.7.0"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
3270
+ dependencies = [
3271
+ "bitflags",
3272
+ "core-foundation",
3273
+ "core-foundation-sys",
3274
+ "libc",
3275
+ "security-framework-sys",
3276
+ ]
3277
+
3278
+ [[package]]
3279
+ name = "security-framework-sys"
3280
+ version = "2.17.0"
3281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3282
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
3283
+ dependencies = [
3284
+ "core-foundation-sys",
3285
+ "libc",
3286
+ ]
3287
+
3288
+ [[package]]
3289
+ name = "self_cell"
3290
+ version = "1.2.2"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
3293
+
3294
+ [[package]]
3295
+ name = "semver"
3296
+ version = "1.0.28"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3299
+ dependencies = [
3300
+ "serde",
3301
+ "serde_core",
3302
+ ]
3303
+
3304
+ [[package]]
3305
+ name = "serde"
3306
+ version = "1.0.228"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3309
+ dependencies = [
3310
+ "serde_core",
3311
+ "serde_derive",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "serde_bytes"
3316
+ version = "0.11.19"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
3319
+ dependencies = [
3320
+ "serde",
3321
+ "serde_core",
3322
+ ]
3323
+
3324
+ [[package]]
3325
+ name = "serde_core"
3326
+ version = "1.0.228"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3329
+ dependencies = [
3330
+ "serde_derive",
3331
+ ]
3332
+
3333
+ [[package]]
3334
+ name = "serde_derive"
3335
+ version = "1.0.228"
3336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3337
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3338
+ dependencies = [
3339
+ "proc-macro2",
3340
+ "quote",
3341
+ "syn",
3342
+ ]
3343
+
3344
+ [[package]]
3345
+ name = "serde_json"
3346
+ version = "1.0.150"
3347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3348
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
3349
+ dependencies = [
3350
+ "itoa",
3351
+ "memchr",
3352
+ "serde",
3353
+ "serde_core",
3354
+ "zmij",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "serde_spanned"
3359
+ version = "1.1.1"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
3362
+ dependencies = [
3363
+ "serde_core",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "serde_urlencoded"
3368
+ version = "0.7.1"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3371
+ dependencies = [
3372
+ "form_urlencoded",
3373
+ "itoa",
3374
+ "ryu",
3375
+ "serde",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "serde_yaml"
3380
+ version = "0.9.34+deprecated"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3383
+ dependencies = [
3384
+ "indexmap",
3385
+ "itoa",
3386
+ "ryu",
3387
+ "serde",
3388
+ "unsafe-libyaml",
3389
+ ]
3390
+
3391
+ [[package]]
3392
+ name = "sha2"
3393
+ version = "0.10.9"
3394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3395
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3396
+ dependencies = [
3397
+ "cfg-if",
3398
+ "cpufeatures 0.2.17",
3399
+ "digest",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "sharded-slab"
3404
+ version = "0.1.7"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3407
+ dependencies = [
3408
+ "lazy_static",
3409
+ ]
3410
+
3411
+ [[package]]
3412
+ name = "shlex"
3413
+ version = "2.0.1"
3414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3415
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3416
+
3417
+ [[package]]
3418
+ name = "signal-hook"
3419
+ version = "0.3.18"
3420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3421
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
3422
+ dependencies = [
3423
+ "libc",
3424
+ "signal-hook-registry",
3425
+ ]
3426
+
3427
+ [[package]]
3428
+ name = "signal-hook-mio"
3429
+ version = "0.2.5"
3430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3431
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
3432
+ dependencies = [
3433
+ "libc",
3434
+ "mio",
3435
+ "signal-hook",
3436
+ ]
3437
+
3438
+ [[package]]
3439
+ name = "signal-hook-registry"
3440
+ version = "1.4.8"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3443
+ dependencies = [
3444
+ "errno",
3445
+ "libc",
3446
+ ]
3447
+
3448
+ [[package]]
3449
+ name = "signature"
3450
+ version = "2.2.0"
3451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3453
+ dependencies = [
3454
+ "digest",
3455
+ "rand_core 0.6.4",
3456
+ ]
3457
+
3458
+ [[package]]
3459
+ name = "simd-adler32"
3460
+ version = "0.3.9"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3463
+
3464
+ [[package]]
3465
+ name = "siphasher"
3466
+ version = "1.0.3"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
3469
+
3470
+ [[package]]
3471
+ name = "slab"
3472
+ version = "0.4.12"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3475
+
3476
+ [[package]]
3477
+ name = "smallvec"
3478
+ version = "1.15.1"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3481
+
3482
+ [[package]]
3483
+ name = "socket2"
3484
+ version = "0.6.4"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3487
+ dependencies = [
3488
+ "libc",
3489
+ "windows-sys 0.61.2",
3490
+ ]
3491
+
3492
+ [[package]]
3493
+ name = "spin"
3494
+ version = "0.9.8"
3495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3496
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3497
+
3498
+ [[package]]
3499
+ name = "spki"
3500
+ version = "0.7.3"
3501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3502
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3503
+ dependencies = [
3504
+ "base64ct",
3505
+ "der",
3506
+ ]
3507
+
3508
+ [[package]]
3509
+ name = "ssh-cipher"
3510
+ version = "0.2.0"
3511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3512
+ checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
3513
+ dependencies = [
3514
+ "cipher",
3515
+ "ssh-encoding",
3516
+ ]
3517
+
3518
+ [[package]]
3519
+ name = "ssh-encoding"
3520
+ version = "0.2.0"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
3523
+ dependencies = [
3524
+ "base64ct",
3525
+ "pem-rfc7468",
3526
+ "sha2",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "ssh-key"
3531
+ version = "0.6.7"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
3534
+ dependencies = [
3535
+ "ed25519-dalek",
3536
+ "p256",
3537
+ "p384",
3538
+ "p521",
3539
+ "rand_core 0.6.4",
3540
+ "rsa",
3541
+ "sec1",
3542
+ "sha2",
3543
+ "signature",
3544
+ "ssh-cipher",
3545
+ "ssh-encoding",
3546
+ "subtle",
3547
+ "zeroize",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "stable_deref_trait"
3552
+ version = "1.2.1"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3555
+
3556
+ [[package]]
3557
+ name = "static_assertions"
3558
+ version = "1.1.0"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3561
+
3562
+ [[package]]
3563
+ name = "strsim"
3564
+ version = "0.11.1"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3567
+
3568
+ [[package]]
3569
+ name = "strum"
3570
+ version = "0.26.3"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3573
+ dependencies = [
3574
+ "strum_macros 0.26.4",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "strum"
3579
+ version = "0.28.0"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
3582
+
3583
+ [[package]]
3584
+ name = "strum_macros"
3585
+ version = "0.26.4"
3586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3587
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3588
+ dependencies = [
3589
+ "heck",
3590
+ "proc-macro2",
3591
+ "quote",
3592
+ "rustversion",
3593
+ "syn",
3594
+ ]
3595
+
3596
+ [[package]]
3597
+ name = "strum_macros"
3598
+ version = "0.28.0"
3599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3600
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
3601
+ dependencies = [
3602
+ "heck",
3603
+ "proc-macro2",
3604
+ "quote",
3605
+ "syn",
3606
+ ]
3607
+
3608
+ [[package]]
3609
+ name = "subtle"
3610
+ version = "2.6.1"
3611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3612
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3613
+
3614
+ [[package]]
3615
+ name = "syn"
3616
+ version = "2.0.117"
3617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3618
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3619
+ dependencies = [
3620
+ "proc-macro2",
3621
+ "quote",
3622
+ "unicode-ident",
3623
+ ]
3624
+
3625
+ [[package]]
3626
+ name = "sync_wrapper"
3627
+ version = "1.0.2"
3628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3629
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3630
+ dependencies = [
3631
+ "futures-core",
3632
+ ]
3633
+
3634
+ [[package]]
3635
+ name = "synstructure"
3636
+ version = "0.13.2"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3639
+ dependencies = [
3640
+ "proc-macro2",
3641
+ "quote",
3642
+ "syn",
3643
+ ]
3644
+
3645
+ [[package]]
3646
+ name = "target-lexicon"
3647
+ version = "0.13.5"
3648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3649
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3650
+
3651
+ [[package]]
3652
+ name = "tempfile"
3653
+ version = "3.27.0"
3654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3655
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3656
+ dependencies = [
3657
+ "fastrand",
3658
+ "getrandom 0.4.2",
3659
+ "once_cell",
3660
+ "rustix 1.1.4",
3661
+ "windows-sys 0.61.2",
3662
+ ]
3663
+
3664
+ [[package]]
3665
+ name = "terminal_size"
3666
+ version = "0.4.4"
3667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3668
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
3669
+ dependencies = [
3670
+ "rustix 1.1.4",
3671
+ "windows-sys 0.61.2",
3672
+ ]
3673
+
3674
+ [[package]]
3675
+ name = "terminfo"
3676
+ version = "0.9.0"
3677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3678
+ checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
3679
+ dependencies = [
3680
+ "fnv",
3681
+ "nom",
3682
+ "phf",
3683
+ "phf_codegen",
3684
+ ]
3685
+
3686
+ [[package]]
3687
+ name = "termtree"
3688
+ version = "0.5.1"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3691
+
3692
+ [[package]]
3693
+ name = "tests-common"
3694
+ version = "0.6.6"
3695
+ dependencies = [
3696
+ "anyhow",
3697
+ "async-trait",
3698
+ "newt-core",
3699
+ "newt-inference",
3700
+ "serde",
3701
+ "serde_json",
3702
+ "tempfile",
3703
+ "tokio",
3704
+ "tracing",
3705
+ "tracing-subscriber",
3706
+ ]
3707
+
3708
+ [[package]]
3709
+ name = "thiserror"
3710
+ version = "1.0.69"
3711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3712
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3713
+ dependencies = [
3714
+ "thiserror-impl 1.0.69",
3715
+ ]
3716
+
3717
+ [[package]]
3718
+ name = "thiserror"
3719
+ version = "2.0.18"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3722
+ dependencies = [
3723
+ "thiserror-impl 2.0.18",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "thiserror-impl"
3728
+ version = "1.0.69"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3731
+ dependencies = [
3732
+ "proc-macro2",
3733
+ "quote",
3734
+ "syn",
3735
+ ]
3736
+
3737
+ [[package]]
3738
+ name = "thiserror-impl"
3739
+ version = "2.0.18"
3740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3741
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3742
+ dependencies = [
3743
+ "proc-macro2",
3744
+ "quote",
3745
+ "syn",
3746
+ ]
3747
+
3748
+ [[package]]
3749
+ name = "thread_local"
3750
+ version = "1.1.9"
3751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3752
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3753
+ dependencies = [
3754
+ "cfg-if",
3755
+ ]
3756
+
3757
+ [[package]]
3758
+ name = "tinystr"
3759
+ version = "0.8.3"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3762
+ dependencies = [
3763
+ "displaydoc",
3764
+ "serde_core",
3765
+ "zerovec",
3766
+ ]
3767
+
3768
+ [[package]]
3769
+ name = "tinyvec"
3770
+ version = "1.11.0"
3771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3772
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3773
+ dependencies = [
3774
+ "tinyvec_macros",
3775
+ ]
3776
+
3777
+ [[package]]
3778
+ name = "tinyvec_macros"
3779
+ version = "0.1.1"
3780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3781
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3782
+
3783
+ [[package]]
3784
+ name = "tokio"
3785
+ version = "1.52.3"
3786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3787
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3788
+ dependencies = [
3789
+ "bytes",
3790
+ "libc",
3791
+ "mio",
3792
+ "parking_lot",
3793
+ "pin-project-lite",
3794
+ "signal-hook-registry",
3795
+ "socket2",
3796
+ "tokio-macros",
3797
+ "windows-sys 0.61.2",
3798
+ ]
3799
+
3800
+ [[package]]
3801
+ name = "tokio-macros"
3802
+ version = "2.7.0"
3803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3804
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3805
+ dependencies = [
3806
+ "proc-macro2",
3807
+ "quote",
3808
+ "syn",
3809
+ ]
3810
+
3811
+ [[package]]
3812
+ name = "tokio-rustls"
3813
+ version = "0.26.4"
3814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3815
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3816
+ dependencies = [
3817
+ "rustls",
3818
+ "tokio",
3819
+ ]
3820
+
3821
+ [[package]]
3822
+ name = "tokio-stream"
3823
+ version = "0.1.18"
3824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3825
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3826
+ dependencies = [
3827
+ "futures-core",
3828
+ "pin-project-lite",
3829
+ "tokio",
3830
+ ]
3831
+
3832
+ [[package]]
3833
+ name = "tokio-test"
3834
+ version = "0.4.5"
3835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3836
+ checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545"
3837
+ dependencies = [
3838
+ "futures-core",
3839
+ "tokio",
3840
+ "tokio-stream",
3841
+ ]
3842
+
3843
+ [[package]]
3844
+ name = "tokio-util"
3845
+ version = "0.7.18"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3848
+ dependencies = [
3849
+ "bytes",
3850
+ "futures-core",
3851
+ "futures-sink",
3852
+ "pin-project-lite",
3853
+ "tokio",
3854
+ ]
3855
+
3856
+ [[package]]
3857
+ name = "toml"
3858
+ version = "1.1.2+spec-1.1.0"
3859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3860
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
3861
+ dependencies = [
3862
+ "indexmap",
3863
+ "serde_core",
3864
+ "serde_spanned",
3865
+ "toml_datetime",
3866
+ "toml_parser",
3867
+ "toml_writer",
3868
+ "winnow",
3869
+ ]
3870
+
3871
+ [[package]]
3872
+ name = "toml_datetime"
3873
+ version = "1.1.1+spec-1.1.0"
3874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3875
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3876
+ dependencies = [
3877
+ "serde_core",
3878
+ ]
3879
+
3880
+ [[package]]
3881
+ name = "toml_parser"
3882
+ version = "1.1.2+spec-1.1.0"
3883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3884
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3885
+ dependencies = [
3886
+ "winnow",
3887
+ ]
3888
+
3889
+ [[package]]
3890
+ name = "toml_writer"
3891
+ version = "1.1.1+spec-1.1.0"
3892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3893
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
3894
+
3895
+ [[package]]
3896
+ name = "tower"
3897
+ version = "0.5.3"
3898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3899
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3900
+ dependencies = [
3901
+ "futures-core",
3902
+ "futures-util",
3903
+ "pin-project-lite",
3904
+ "sync_wrapper",
3905
+ "tokio",
3906
+ "tower-layer",
3907
+ "tower-service",
3908
+ ]
3909
+
3910
+ [[package]]
3911
+ name = "tower-http"
3912
+ version = "0.6.11"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3915
+ dependencies = [
3916
+ "bitflags",
3917
+ "bytes",
3918
+ "futures-util",
3919
+ "http",
3920
+ "http-body",
3921
+ "pin-project-lite",
3922
+ "tower",
3923
+ "tower-layer",
3924
+ "tower-service",
3925
+ "url",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "tower-layer"
3930
+ version = "0.3.3"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3933
+
3934
+ [[package]]
3935
+ name = "tower-service"
3936
+ version = "0.3.3"
3937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3938
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3939
+
3940
+ [[package]]
3941
+ name = "tracing"
3942
+ version = "0.1.44"
3943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3944
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3945
+ dependencies = [
3946
+ "pin-project-lite",
3947
+ "tracing-attributes",
3948
+ "tracing-core",
3949
+ ]
3950
+
3951
+ [[package]]
3952
+ name = "tracing-attributes"
3953
+ version = "0.1.31"
3954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3955
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3956
+ dependencies = [
3957
+ "proc-macro2",
3958
+ "quote",
3959
+ "syn",
3960
+ ]
3961
+
3962
+ [[package]]
3963
+ name = "tracing-core"
3964
+ version = "0.1.36"
3965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3966
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3967
+ dependencies = [
3968
+ "once_cell",
3969
+ "valuable",
3970
+ ]
3971
+
3972
+ [[package]]
3973
+ name = "tracing-log"
3974
+ version = "0.2.0"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3977
+ dependencies = [
3978
+ "log",
3979
+ "once_cell",
3980
+ "tracing-core",
3981
+ ]
3982
+
3983
+ [[package]]
3984
+ name = "tracing-subscriber"
3985
+ version = "0.3.23"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3988
+ dependencies = [
3989
+ "matchers",
3990
+ "nu-ansi-term",
3991
+ "once_cell",
3992
+ "regex-automata",
3993
+ "sharded-slab",
3994
+ "smallvec",
3995
+ "thread_local",
3996
+ "tracing",
3997
+ "tracing-core",
3998
+ "tracing-log",
3999
+ ]
4000
+
4001
+ [[package]]
4002
+ name = "triomphe"
4003
+ version = "0.1.15"
4004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4005
+ checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
4006
+
4007
+ [[package]]
4008
+ name = "try-lock"
4009
+ version = "0.2.5"
4010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4011
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4012
+
4013
+ [[package]]
4014
+ name = "type-map"
4015
+ version = "0.5.1"
4016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4017
+ checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
4018
+ dependencies = [
4019
+ "rustc-hash",
4020
+ ]
4021
+
4022
+ [[package]]
4023
+ name = "typenum"
4024
+ version = "1.20.1"
4025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4026
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
4027
+
4028
+ [[package]]
4029
+ name = "unic-langid"
4030
+ version = "0.9.6"
4031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4032
+ checksum = "a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05"
4033
+ dependencies = [
4034
+ "unic-langid-impl",
4035
+ ]
4036
+
4037
+ [[package]]
4038
+ name = "unic-langid-impl"
4039
+ version = "0.9.6"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658"
4042
+ dependencies = [
4043
+ "tinystr",
4044
+ ]
4045
+
4046
+ [[package]]
4047
+ name = "unicode-ident"
4048
+ version = "1.0.24"
4049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4050
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4051
+
4052
+ [[package]]
4053
+ name = "unicode-segmentation"
4054
+ version = "1.13.3"
4055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4056
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
4057
+
4058
+ [[package]]
4059
+ name = "unicode-truncate"
4060
+ version = "1.1.0"
4061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4062
+ checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
4063
+ dependencies = [
4064
+ "itertools 0.13.0",
4065
+ "unicode-segmentation",
4066
+ "unicode-width 0.1.14",
4067
+ ]
4068
+
4069
+ [[package]]
4070
+ name = "unicode-width"
4071
+ version = "0.1.14"
4072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4073
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
4074
+
4075
+ [[package]]
4076
+ name = "unicode-width"
4077
+ version = "0.2.0"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
4080
+
4081
+ [[package]]
4082
+ name = "unicode-xid"
4083
+ version = "0.2.6"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4086
+
4087
+ [[package]]
4088
+ name = "unit-prefix"
4089
+ version = "0.5.2"
4090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4091
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
4092
+
4093
+ [[package]]
4094
+ name = "unsafe-libyaml"
4095
+ version = "0.2.11"
4096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4097
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
4098
+
4099
+ [[package]]
4100
+ name = "untrusted"
4101
+ version = "0.9.0"
4102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4103
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4104
+
4105
+ [[package]]
4106
+ name = "url"
4107
+ version = "2.5.8"
4108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4109
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4110
+ dependencies = [
4111
+ "form_urlencoded",
4112
+ "idna",
4113
+ "percent-encoding",
4114
+ "serde",
4115
+ ]
4116
+
4117
+ [[package]]
4118
+ name = "utf8-chars"
4119
+ version = "3.0.7"
4120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4121
+ checksum = "92498c67ea3511b37eccff13b573ed871faf0ce9c4056ab032bd01a681f445a0"
4122
+ dependencies = [
4123
+ "arrayvec",
4124
+ ]
4125
+
4126
+ [[package]]
4127
+ name = "utf8_iter"
4128
+ version = "1.0.4"
4129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4130
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4131
+
4132
+ [[package]]
4133
+ name = "utf8parse"
4134
+ version = "0.2.2"
4135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4136
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4137
+
4138
+ [[package]]
4139
+ name = "uucore"
4140
+ version = "0.8.0"
4141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4142
+ checksum = "07d779636d827cde4100f0e65ff3fd23b0b1f1195055475c6e6813d425f30c8e"
4143
+ dependencies = [
4144
+ "bigdecimal",
4145
+ "clap",
4146
+ "fluent",
4147
+ "fluent-bundle",
4148
+ "fluent-syntax",
4149
+ "icu_locale",
4150
+ "itertools 0.14.0",
4151
+ "nix 0.31.3",
4152
+ "num-traits",
4153
+ "os_display",
4154
+ "rustc-hash",
4155
+ "rustix 1.1.4",
4156
+ "thiserror 2.0.18",
4157
+ "unic-langid",
4158
+ "unit-prefix",
4159
+ "uucore_procs",
4160
+ "wild",
4161
+ ]
4162
+
4163
+ [[package]]
4164
+ name = "uucore_procs"
4165
+ version = "0.8.0"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "da865e8a648b260dbd89fca76d0801995877ab27a4e259b6dec30ba9743b86ab"
4168
+ dependencies = [
4169
+ "proc-macro2",
4170
+ "quote",
4171
+ ]
4172
+
4173
+ [[package]]
4174
+ name = "uuid"
4175
+ version = "1.23.2"
4176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4177
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
4178
+ dependencies = [
4179
+ "getrandom 0.4.2",
4180
+ "js-sys",
4181
+ "serde_core",
4182
+ "wasm-bindgen",
4183
+ ]
4184
+
4185
+ [[package]]
4186
+ name = "uzers"
4187
+ version = "0.12.2"
4188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4189
+ checksum = "0b8275fb1afee25b4111d2dc8b5c505dbbc4afd0b990cb96deb2d88bff8be18d"
4190
+ dependencies = [
4191
+ "libc",
4192
+ "log",
4193
+ ]
4194
+
4195
+ [[package]]
4196
+ name = "valuable"
4197
+ version = "0.1.1"
4198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4199
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4200
+
4201
+ [[package]]
4202
+ name = "version_check"
4203
+ version = "0.9.5"
4204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4205
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4206
+
4207
+ [[package]]
4208
+ name = "wait-timeout"
4209
+ version = "0.2.1"
4210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4211
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4212
+ dependencies = [
4213
+ "libc",
4214
+ ]
4215
+
4216
+ [[package]]
4217
+ name = "walkdir"
4218
+ version = "2.5.0"
4219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4220
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4221
+ dependencies = [
4222
+ "same-file",
4223
+ "winapi-util",
4224
+ ]
4225
+
4226
+ [[package]]
4227
+ name = "want"
4228
+ version = "0.3.1"
4229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4230
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4231
+ dependencies = [
4232
+ "try-lock",
4233
+ ]
4234
+
4235
+ [[package]]
4236
+ name = "wasi"
4237
+ version = "0.11.1+wasi-snapshot-preview1"
4238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4239
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4240
+
4241
+ [[package]]
4242
+ name = "wasi"
4243
+ version = "0.14.7+wasi-0.2.4"
4244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4245
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
4246
+ dependencies = [
4247
+ "wasip2",
4248
+ ]
4249
+
4250
+ [[package]]
4251
+ name = "wasip2"
4252
+ version = "1.0.3+wasi-0.2.9"
4253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4254
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
4255
+ dependencies = [
4256
+ "wit-bindgen 0.57.1",
4257
+ ]
4258
+
4259
+ [[package]]
4260
+ name = "wasip3"
4261
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
4262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4263
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
4264
+ dependencies = [
4265
+ "wit-bindgen 0.51.0",
4266
+ ]
4267
+
4268
+ [[package]]
4269
+ name = "wasite"
4270
+ version = "1.0.2"
4271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4272
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
4273
+ dependencies = [
4274
+ "wasi 0.14.7+wasi-0.2.4",
4275
+ ]
4276
+
4277
+ [[package]]
4278
+ name = "wasm-bindgen"
4279
+ version = "0.2.122"
4280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4281
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
4282
+ dependencies = [
4283
+ "cfg-if",
4284
+ "once_cell",
4285
+ "rustversion",
4286
+ "wasm-bindgen-macro",
4287
+ "wasm-bindgen-shared",
4288
+ ]
4289
+
4290
+ [[package]]
4291
+ name = "wasm-bindgen-futures"
4292
+ version = "0.4.72"
4293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4294
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
4295
+ dependencies = [
4296
+ "js-sys",
4297
+ "wasm-bindgen",
4298
+ ]
4299
+
4300
+ [[package]]
4301
+ name = "wasm-bindgen-macro"
4302
+ version = "0.2.122"
4303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4304
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
4305
+ dependencies = [
4306
+ "quote",
4307
+ "wasm-bindgen-macro-support",
4308
+ ]
4309
+
4310
+ [[package]]
4311
+ name = "wasm-bindgen-macro-support"
4312
+ version = "0.2.122"
4313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4314
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
4315
+ dependencies = [
4316
+ "bumpalo",
4317
+ "proc-macro2",
4318
+ "quote",
4319
+ "syn",
4320
+ "wasm-bindgen-shared",
4321
+ ]
4322
+
4323
+ [[package]]
4324
+ name = "wasm-bindgen-shared"
4325
+ version = "0.2.122"
4326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4327
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
4328
+ dependencies = [
4329
+ "unicode-ident",
4330
+ ]
4331
+
4332
+ [[package]]
4333
+ name = "wasm-encoder"
4334
+ version = "0.244.0"
4335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4336
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4337
+ dependencies = [
4338
+ "leb128fmt",
4339
+ "wasmparser",
4340
+ ]
4341
+
4342
+ [[package]]
4343
+ name = "wasm-metadata"
4344
+ version = "0.244.0"
4345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4346
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4347
+ dependencies = [
4348
+ "anyhow",
4349
+ "indexmap",
4350
+ "wasm-encoder",
4351
+ "wasmparser",
4352
+ ]
4353
+
4354
+ [[package]]
4355
+ name = "wasm-streams"
4356
+ version = "0.4.2"
4357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4358
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4359
+ dependencies = [
4360
+ "futures-util",
4361
+ "js-sys",
4362
+ "wasm-bindgen",
4363
+ "wasm-bindgen-futures",
4364
+ "web-sys",
4365
+ ]
4366
+
4367
+ [[package]]
4368
+ name = "wasmparser"
4369
+ version = "0.244.0"
4370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4371
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4372
+ dependencies = [
4373
+ "bitflags",
4374
+ "hashbrown 0.15.5",
4375
+ "indexmap",
4376
+ "semver",
4377
+ ]
4378
+
4379
+ [[package]]
4380
+ name = "web-sys"
4381
+ version = "0.3.99"
4382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4383
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
4384
+ dependencies = [
4385
+ "js-sys",
4386
+ "wasm-bindgen",
4387
+ ]
4388
+
4389
+ [[package]]
4390
+ name = "web-time"
4391
+ version = "1.1.0"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4394
+ dependencies = [
4395
+ "js-sys",
4396
+ "wasm-bindgen",
4397
+ ]
4398
+
4399
+ [[package]]
4400
+ name = "whoami"
4401
+ version = "2.1.2"
4402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4403
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
4404
+ dependencies = [
4405
+ "libc",
4406
+ "libredox",
4407
+ "objc2-system-configuration",
4408
+ "wasite",
4409
+ "web-sys",
4410
+ ]
4411
+
4412
+ [[package]]
4413
+ name = "wild"
4414
+ version = "2.2.1"
4415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4416
+ checksum = "a3131afc8c575281e1e80f36ed6a092aa502c08b18ed7524e86fbbb12bb410e1"
4417
+ dependencies = [
4418
+ "glob",
4419
+ ]
4420
+
4421
+ [[package]]
4422
+ name = "winapi"
4423
+ version = "0.3.9"
4424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4425
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4426
+ dependencies = [
4427
+ "winapi-i686-pc-windows-gnu",
4428
+ "winapi-x86_64-pc-windows-gnu",
4429
+ ]
4430
+
4431
+ [[package]]
4432
+ name = "winapi-i686-pc-windows-gnu"
4433
+ version = "0.4.0"
4434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4435
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4436
+
4437
+ [[package]]
4438
+ name = "winapi-util"
4439
+ version = "0.1.11"
4440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4441
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4442
+ dependencies = [
4443
+ "windows-sys 0.61.2",
4444
+ ]
4445
+
4446
+ [[package]]
4447
+ name = "winapi-x86_64-pc-windows-gnu"
4448
+ version = "0.4.0"
4449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4450
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4451
+
4452
+ [[package]]
4453
+ name = "windows"
4454
+ version = "0.51.1"
4455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4456
+ checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"
4457
+ dependencies = [
4458
+ "windows-core 0.51.1",
4459
+ "windows-targets 0.48.5",
4460
+ ]
4461
+
4462
+ [[package]]
4463
+ name = "windows-core"
4464
+ version = "0.51.1"
4465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4466
+ checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
4467
+ dependencies = [
4468
+ "windows-targets 0.48.5",
4469
+ ]
4470
+
4471
+ [[package]]
4472
+ name = "windows-core"
4473
+ version = "0.62.2"
4474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4475
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4476
+ dependencies = [
4477
+ "windows-implement",
4478
+ "windows-interface",
4479
+ "windows-link",
4480
+ "windows-result",
4481
+ "windows-strings",
4482
+ ]
4483
+
4484
+ [[package]]
4485
+ name = "windows-implement"
4486
+ version = "0.60.2"
4487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4488
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4489
+ dependencies = [
4490
+ "proc-macro2",
4491
+ "quote",
4492
+ "syn",
4493
+ ]
4494
+
4495
+ [[package]]
4496
+ name = "windows-interface"
4497
+ version = "0.59.3"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4500
+ dependencies = [
4501
+ "proc-macro2",
4502
+ "quote",
4503
+ "syn",
4504
+ ]
4505
+
4506
+ [[package]]
4507
+ name = "windows-link"
4508
+ version = "0.2.1"
4509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4510
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4511
+
4512
+ [[package]]
4513
+ name = "windows-result"
4514
+ version = "0.4.1"
4515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4516
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4517
+ dependencies = [
4518
+ "windows-link",
4519
+ ]
4520
+
4521
+ [[package]]
4522
+ name = "windows-strings"
4523
+ version = "0.5.1"
4524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4525
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4526
+ dependencies = [
4527
+ "windows-link",
4528
+ ]
4529
+
4530
+ [[package]]
4531
+ name = "windows-sys"
4532
+ version = "0.52.0"
4533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4534
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4535
+ dependencies = [
4536
+ "windows-targets 0.52.6",
4537
+ ]
4538
+
4539
+ [[package]]
4540
+ name = "windows-sys"
4541
+ version = "0.59.0"
4542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4543
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4544
+ dependencies = [
4545
+ "windows-targets 0.52.6",
4546
+ ]
4547
+
4548
+ [[package]]
4549
+ name = "windows-sys"
4550
+ version = "0.60.2"
4551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4552
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4553
+ dependencies = [
4554
+ "windows-targets 0.53.5",
4555
+ ]
4556
+
4557
+ [[package]]
4558
+ name = "windows-sys"
4559
+ version = "0.61.2"
4560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4561
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4562
+ dependencies = [
4563
+ "windows-link",
4564
+ ]
4565
+
4566
+ [[package]]
4567
+ name = "windows-targets"
4568
+ version = "0.48.5"
4569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4570
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4571
+ dependencies = [
4572
+ "windows_aarch64_gnullvm 0.48.5",
4573
+ "windows_aarch64_msvc 0.48.5",
4574
+ "windows_i686_gnu 0.48.5",
4575
+ "windows_i686_msvc 0.48.5",
4576
+ "windows_x86_64_gnu 0.48.5",
4577
+ "windows_x86_64_gnullvm 0.48.5",
4578
+ "windows_x86_64_msvc 0.48.5",
4579
+ ]
4580
+
4581
+ [[package]]
4582
+ name = "windows-targets"
4583
+ version = "0.52.6"
4584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4585
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4586
+ dependencies = [
4587
+ "windows_aarch64_gnullvm 0.52.6",
4588
+ "windows_aarch64_msvc 0.52.6",
4589
+ "windows_i686_gnu 0.52.6",
4590
+ "windows_i686_gnullvm 0.52.6",
4591
+ "windows_i686_msvc 0.52.6",
4592
+ "windows_x86_64_gnu 0.52.6",
4593
+ "windows_x86_64_gnullvm 0.52.6",
4594
+ "windows_x86_64_msvc 0.52.6",
4595
+ ]
4596
+
4597
+ [[package]]
4598
+ name = "windows-targets"
4599
+ version = "0.53.5"
4600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4601
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4602
+ dependencies = [
4603
+ "windows-link",
4604
+ "windows_aarch64_gnullvm 0.53.1",
4605
+ "windows_aarch64_msvc 0.53.1",
4606
+ "windows_i686_gnu 0.53.1",
4607
+ "windows_i686_gnullvm 0.53.1",
4608
+ "windows_i686_msvc 0.53.1",
4609
+ "windows_x86_64_gnu 0.53.1",
4610
+ "windows_x86_64_gnullvm 0.53.1",
4611
+ "windows_x86_64_msvc 0.53.1",
4612
+ ]
4613
+
4614
+ [[package]]
4615
+ name = "windows_aarch64_gnullvm"
4616
+ version = "0.48.5"
4617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4618
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4619
+
4620
+ [[package]]
4621
+ name = "windows_aarch64_gnullvm"
4622
+ version = "0.52.6"
4623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4624
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4625
+
4626
+ [[package]]
4627
+ name = "windows_aarch64_gnullvm"
4628
+ version = "0.53.1"
4629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4630
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4631
+
4632
+ [[package]]
4633
+ name = "windows_aarch64_msvc"
4634
+ version = "0.48.5"
4635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4636
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4637
+
4638
+ [[package]]
4639
+ name = "windows_aarch64_msvc"
4640
+ version = "0.52.6"
4641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4642
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4643
+
4644
+ [[package]]
4645
+ name = "windows_aarch64_msvc"
4646
+ version = "0.53.1"
4647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4648
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4649
+
4650
+ [[package]]
4651
+ name = "windows_i686_gnu"
4652
+ version = "0.48.5"
4653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4654
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4655
+
4656
+ [[package]]
4657
+ name = "windows_i686_gnu"
4658
+ version = "0.52.6"
4659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4660
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4661
+
4662
+ [[package]]
4663
+ name = "windows_i686_gnu"
4664
+ version = "0.53.1"
4665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4666
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4667
+
4668
+ [[package]]
4669
+ name = "windows_i686_gnullvm"
4670
+ version = "0.52.6"
4671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4672
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4673
+
4674
+ [[package]]
4675
+ name = "windows_i686_gnullvm"
4676
+ version = "0.53.1"
4677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4678
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4679
+
4680
+ [[package]]
4681
+ name = "windows_i686_msvc"
4682
+ version = "0.48.5"
4683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4684
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4685
+
4686
+ [[package]]
4687
+ name = "windows_i686_msvc"
4688
+ version = "0.52.6"
4689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4690
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4691
+
4692
+ [[package]]
4693
+ name = "windows_i686_msvc"
4694
+ version = "0.53.1"
4695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4696
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4697
+
4698
+ [[package]]
4699
+ name = "windows_x86_64_gnu"
4700
+ version = "0.48.5"
4701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4702
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4703
+
4704
+ [[package]]
4705
+ name = "windows_x86_64_gnu"
4706
+ version = "0.52.6"
4707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4708
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4709
+
4710
+ [[package]]
4711
+ name = "windows_x86_64_gnu"
4712
+ version = "0.53.1"
4713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4714
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4715
+
4716
+ [[package]]
4717
+ name = "windows_x86_64_gnullvm"
4718
+ version = "0.48.5"
4719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4720
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4721
+
4722
+ [[package]]
4723
+ name = "windows_x86_64_gnullvm"
4724
+ version = "0.52.6"
4725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4726
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4727
+
4728
+ [[package]]
4729
+ name = "windows_x86_64_gnullvm"
4730
+ version = "0.53.1"
4731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4732
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4733
+
4734
+ [[package]]
4735
+ name = "windows_x86_64_msvc"
4736
+ version = "0.48.5"
4737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4738
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4739
+
4740
+ [[package]]
4741
+ name = "windows_x86_64_msvc"
4742
+ version = "0.52.6"
4743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4744
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4745
+
4746
+ [[package]]
4747
+ name = "windows_x86_64_msvc"
4748
+ version = "0.53.1"
4749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4750
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4751
+
4752
+ [[package]]
4753
+ name = "winnow"
4754
+ version = "1.0.3"
4755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4756
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4757
+
4758
+ [[package]]
4759
+ name = "wiremock"
4760
+ version = "0.6.5"
4761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4762
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
4763
+ dependencies = [
4764
+ "assert-json-diff",
4765
+ "base64",
4766
+ "deadpool",
4767
+ "futures",
4768
+ "http",
4769
+ "http-body-util",
4770
+ "hyper",
4771
+ "hyper-util",
4772
+ "log",
4773
+ "once_cell",
4774
+ "regex",
4775
+ "serde",
4776
+ "serde_json",
4777
+ "tokio",
4778
+ "url",
4779
+ ]
4780
+
4781
+ [[package]]
4782
+ name = "wit-bindgen"
4783
+ version = "0.51.0"
4784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4785
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4786
+ dependencies = [
4787
+ "wit-bindgen-rust-macro",
4788
+ ]
4789
+
4790
+ [[package]]
4791
+ name = "wit-bindgen"
4792
+ version = "0.57.1"
4793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4794
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4795
+
4796
+ [[package]]
4797
+ name = "wit-bindgen-core"
4798
+ version = "0.51.0"
4799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4800
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4801
+ dependencies = [
4802
+ "anyhow",
4803
+ "heck",
4804
+ "wit-parser",
4805
+ ]
4806
+
4807
+ [[package]]
4808
+ name = "wit-bindgen-rust"
4809
+ version = "0.51.0"
4810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4811
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4812
+ dependencies = [
4813
+ "anyhow",
4814
+ "heck",
4815
+ "indexmap",
4816
+ "prettyplease",
4817
+ "syn",
4818
+ "wasm-metadata",
4819
+ "wit-bindgen-core",
4820
+ "wit-component",
4821
+ ]
4822
+
4823
+ [[package]]
4824
+ name = "wit-bindgen-rust-macro"
4825
+ version = "0.51.0"
4826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4827
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4828
+ dependencies = [
4829
+ "anyhow",
4830
+ "prettyplease",
4831
+ "proc-macro2",
4832
+ "quote",
4833
+ "syn",
4834
+ "wit-bindgen-core",
4835
+ "wit-bindgen-rust",
4836
+ ]
4837
+
4838
+ [[package]]
4839
+ name = "wit-component"
4840
+ version = "0.244.0"
4841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4842
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4843
+ dependencies = [
4844
+ "anyhow",
4845
+ "bitflags",
4846
+ "indexmap",
4847
+ "log",
4848
+ "serde",
4849
+ "serde_derive",
4850
+ "serde_json",
4851
+ "wasm-encoder",
4852
+ "wasm-metadata",
4853
+ "wasmparser",
4854
+ "wit-parser",
4855
+ ]
4856
+
4857
+ [[package]]
4858
+ name = "wit-parser"
4859
+ version = "0.244.0"
4860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4861
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4862
+ dependencies = [
4863
+ "anyhow",
4864
+ "id-arena",
4865
+ "indexmap",
4866
+ "log",
4867
+ "semver",
4868
+ "serde",
4869
+ "serde_derive",
4870
+ "serde_json",
4871
+ "unicode-xid",
4872
+ "wasmparser",
4873
+ ]
4874
+
4875
+ [[package]]
4876
+ name = "writeable"
4877
+ version = "0.6.3"
4878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4879
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4880
+
4881
+ [[package]]
4882
+ name = "yoke"
4883
+ version = "0.8.2"
4884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4885
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
4886
+ dependencies = [
4887
+ "stable_deref_trait",
4888
+ "yoke-derive",
4889
+ "zerofrom",
4890
+ ]
4891
+
4892
+ [[package]]
4893
+ name = "yoke-derive"
4894
+ version = "0.8.2"
4895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4896
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4897
+ dependencies = [
4898
+ "proc-macro2",
4899
+ "quote",
4900
+ "syn",
4901
+ "synstructure",
4902
+ ]
4903
+
4904
+ [[package]]
4905
+ name = "zerocopy"
4906
+ version = "0.8.50"
4907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4908
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
4909
+ dependencies = [
4910
+ "zerocopy-derive",
4911
+ ]
4912
+
4913
+ [[package]]
4914
+ name = "zerocopy-derive"
4915
+ version = "0.8.50"
4916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4917
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
4918
+ dependencies = [
4919
+ "proc-macro2",
4920
+ "quote",
4921
+ "syn",
4922
+ ]
4923
+
4924
+ [[package]]
4925
+ name = "zerofrom"
4926
+ version = "0.1.8"
4927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4928
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4929
+ dependencies = [
4930
+ "zerofrom-derive",
4931
+ ]
4932
+
4933
+ [[package]]
4934
+ name = "zerofrom-derive"
4935
+ version = "0.1.7"
4936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4937
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4938
+ dependencies = [
4939
+ "proc-macro2",
4940
+ "quote",
4941
+ "syn",
4942
+ "synstructure",
4943
+ ]
4944
+
4945
+ [[package]]
4946
+ name = "zeroize"
4947
+ version = "1.8.2"
4948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4949
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4950
+ dependencies = [
4951
+ "zeroize_derive",
4952
+ ]
4953
+
4954
+ [[package]]
4955
+ name = "zeroize_derive"
4956
+ version = "1.4.3"
4957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4958
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
4959
+ dependencies = [
4960
+ "proc-macro2",
4961
+ "quote",
4962
+ "syn",
4963
+ ]
4964
+
4965
+ [[package]]
4966
+ name = "zerotrie"
4967
+ version = "0.2.4"
4968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4969
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4970
+ dependencies = [
4971
+ "displaydoc",
4972
+ "yoke",
4973
+ "zerofrom",
4974
+ "zerovec",
4975
+ ]
4976
+
4977
+ [[package]]
4978
+ name = "zerovec"
4979
+ version = "0.11.6"
4980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4981
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4982
+ dependencies = [
4983
+ "serde",
4984
+ "yoke",
4985
+ "zerofrom",
4986
+ "zerovec-derive",
4987
+ ]
4988
+
4989
+ [[package]]
4990
+ name = "zerovec-derive"
4991
+ version = "0.11.3"
4992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4993
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4994
+ dependencies = [
4995
+ "proc-macro2",
4996
+ "quote",
4997
+ "syn",
4998
+ ]
4999
+
5000
+ [[package]]
5001
+ name = "zmij"
5002
+ version = "1.0.21"
5003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5004
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"