pyatlasctl 0.1.2__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 (133) hide show
  1. pyatlasctl-0.1.2/Cargo.lock +1039 -0
  2. pyatlasctl-0.1.2/Cargo.toml +58 -0
  3. pyatlasctl-0.1.2/LICENSE +235 -0
  4. pyatlasctl-0.1.2/PKG-INFO +49 -0
  5. pyatlasctl-0.1.2/README.md +222 -0
  6. pyatlasctl-0.1.2/crates/atlasctl/Cargo.toml +32 -0
  7. pyatlasctl-0.1.2/crates/atlasctl/README.md +33 -0
  8. pyatlasctl-0.1.2/crates/atlasctl/src/cli.rs +248 -0
  9. pyatlasctl-0.1.2/crates/atlasctl/src/commands/agent.rs +109 -0
  10. pyatlasctl-0.1.2/crates/atlasctl/src/commands/doctor.rs +115 -0
  11. pyatlasctl-0.1.2/crates/atlasctl/src/commands/lifecycle.rs +150 -0
  12. pyatlasctl-0.1.2/crates/atlasctl/src/commands/mod.rs +35 -0
  13. pyatlasctl-0.1.2/crates/atlasctl/src/commands/recipe.rs +202 -0
  14. pyatlasctl-0.1.2/crates/atlasctl/src/commands/registry.rs +131 -0
  15. pyatlasctl-0.1.2/crates/atlasctl/src/commands/run.rs +128 -0
  16. pyatlasctl-0.1.2/crates/atlasctl/src/hostinfo.rs +68 -0
  17. pyatlasctl-0.1.2/crates/atlasctl/src/main.rs +50 -0
  18. pyatlasctl-0.1.2/crates/atlasctl/src/validate.rs +149 -0
  19. pyatlasctl-0.1.2/crates/atlasctl-agent/Cargo.toml +31 -0
  20. pyatlasctl-0.1.2/crates/atlasctl-agent/src/guard.rs +201 -0
  21. pyatlasctl-0.1.2/crates/atlasctl-agent/src/launcher/docker/tests.rs +191 -0
  22. pyatlasctl-0.1.2/crates/atlasctl-agent/src/launcher/docker.rs +189 -0
  23. pyatlasctl-0.1.2/crates/atlasctl-agent/src/launcher.rs +152 -0
  24. pyatlasctl-0.1.2/crates/atlasctl-agent/src/lib.rs +15 -0
  25. pyatlasctl-0.1.2/crates/atlasctl-agent/src/server/tests.rs +132 -0
  26. pyatlasctl-0.1.2/crates/atlasctl-agent/src/server.rs +175 -0
  27. pyatlasctl-0.1.2/crates/atlasctl-agent/src/session/tests.rs +379 -0
  28. pyatlasctl-0.1.2/crates/atlasctl-agent/src/session.rs +335 -0
  29. pyatlasctl-0.1.2/crates/atlasctl-agent/src/telemetry/meminfo.rs +87 -0
  30. pyatlasctl-0.1.2/crates/atlasctl-agent/src/telemetry/mod.rs +173 -0
  31. pyatlasctl-0.1.2/crates/atlasctl-agent/src/telemetry/nvidia.rs +147 -0
  32. pyatlasctl-0.1.2/crates/atlasctl-agent/src/telemetry/prometheus.rs +179 -0
  33. pyatlasctl-0.1.2/crates/atlasctl-agent/src/token.rs +202 -0
  34. pyatlasctl-0.1.2/crates/atlasctl-core/Cargo.toml +25 -0
  35. pyatlasctl-0.1.2/crates/atlasctl-core/src/chain.rs +157 -0
  36. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/collective.rs +118 -0
  37. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/command/tests.rs +204 -0
  38. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/command.rs +203 -0
  39. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/mod.rs +14 -0
  40. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/profile.rs +154 -0
  41. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/quote.rs +90 -0
  42. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/translate/tests.rs +252 -0
  43. pyatlasctl-0.1.2/crates/atlasctl-core/src/docker/translate.rs +271 -0
  44. pyatlasctl-0.1.2/crates/atlasctl-core/src/flags/mod.rs +135 -0
  45. pyatlasctl-0.1.2/crates/atlasctl-core/src/flags/table.rs +70 -0
  46. pyatlasctl-0.1.2/crates/atlasctl-core/src/flags/tests.rs +118 -0
  47. pyatlasctl-0.1.2/crates/atlasctl-core/src/host.rs +109 -0
  48. pyatlasctl-0.1.2/crates/atlasctl-core/src/io/fs.rs +200 -0
  49. pyatlasctl-0.1.2/crates/atlasctl-core/src/io/mod.rs +19 -0
  50. pyatlasctl-0.1.2/crates/atlasctl-core/src/io/process.rs +177 -0
  51. pyatlasctl-0.1.2/crates/atlasctl-core/src/lib.rs +19 -0
  52. pyatlasctl-0.1.2/crates/atlasctl-core/src/recipe/mod.rs +233 -0
  53. pyatlasctl-0.1.2/crates/atlasctl-core/src/recipe/raw.rs +100 -0
  54. pyatlasctl-0.1.2/crates/atlasctl-core/src/recipe/tests.rs +163 -0
  55. pyatlasctl-0.1.2/crates/atlasctl-core/src/recipe/topology.rs +118 -0
  56. pyatlasctl-0.1.2/crates/atlasctl-core/src/registry/mod.rs +261 -0
  57. pyatlasctl-0.1.2/crates/atlasctl-core/src/registry/remote.rs +194 -0
  58. pyatlasctl-0.1.2/crates/atlasctl-core/src/registry/tests.rs +209 -0
  59. pyatlasctl-0.1.2/crates/atlasctl-core/src/scalar.rs +105 -0
  60. pyatlasctl-0.1.2/crates/atlasctl-core/src/settings/mod.rs +97 -0
  61. pyatlasctl-0.1.2/crates/atlasctl-core/src/settings/spec.rs +61 -0
  62. pyatlasctl-0.1.2/crates/atlasctl-core/src/settings/table.rs +471 -0
  63. pyatlasctl-0.1.2/crates/atlasctl-core/src/settings/tests.rs +170 -0
  64. pyatlasctl-0.1.2/crates/atlasctl-core/tests/corpus.rs +146 -0
  65. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/deepseek-v4-flash-nvfp4-ep2.txt +232 -0
  66. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/gemma-4-26b-a4b-nvfp4.txt +67 -0
  67. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/gemma-4-31b-nvfp4.txt +71 -0
  68. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/minimax-m2.7-nvfp4-ep2.txt +232 -0
  69. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/mistral-small-4-119b-nvfp4.txt +67 -0
  70. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/nemotron-3-nano-30b-a3b-nvfp4.txt +67 -0
  71. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/nemotron-3-super-120b-a12b-nvfp4.txt +74 -0
  72. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3-coder-next-fp8.txt +75 -0
  73. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3-next-80b-a3b-nvfp4.txt +71 -0
  74. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3-vl-30b-a3b-nvfp4.txt +68 -0
  75. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.5-0.8b-bf16-atlas.txt +68 -0
  76. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.5-122b-a10b-nvfp4-ep2.txt +232 -0
  77. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.5-122b-a10b-nvfp4-single.txt +79 -0
  78. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.5-27b-dense-nvfp4.txt +67 -0
  79. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.5-35b-a3b-nvfp4.txt +77 -0
  80. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-27b-fp8-mtp.txt +79 -0
  81. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-27b-fp8.txt +78 -0
  82. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-27b-nvfp4-prefill-record.txt +77 -0
  83. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-27b-nvfp4-unsloth.txt +84 -0
  84. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-27b-nvfp4.txt +82 -0
  85. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-35b-a3b-fp8-bf16head.txt +75 -0
  86. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-35b-a3b-fp8-mtp.txt +83 -0
  87. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-35b-a3b-fp8-nvfp4head.txt +75 -0
  88. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.6-35b-a3b-nvfp4.txt +86 -0
  89. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.8-27b-nvfp4-latency.txt +86 -0
  90. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.8-27b-nvfp4-throughput.txt +86 -0
  91. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.8-27b-nvfp4-unsloth-bfcl.txt +82 -0
  92. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden/qwen3.8-27b-nvfp4-unsloth.txt +83 -0
  93. pyatlasctl-0.1.2/crates/atlasctl-core/tests/golden.rs +187 -0
  94. pyatlasctl-0.1.2/crates/atlasctl-protocol/Cargo.toml +20 -0
  95. pyatlasctl-0.1.2/crates/atlasctl-protocol/src/id.rs +172 -0
  96. pyatlasctl-0.1.2/crates/atlasctl-protocol/src/lib.rs +24 -0
  97. pyatlasctl-0.1.2/crates/atlasctl-protocol/src/msg/tests.rs +152 -0
  98. pyatlasctl-0.1.2/crates/atlasctl-protocol/src/msg.rs +268 -0
  99. pyatlasctl-0.1.2/crates/atlasctl-protocol/src/settings/tests.rs +159 -0
  100. pyatlasctl-0.1.2/crates/atlasctl-protocol/src/settings.rs +235 -0
  101. pyatlasctl-0.1.2/crates/atlasctl-protocol/src/telemetry.rs +204 -0
  102. pyatlasctl-0.1.2/pyproject.toml +39 -0
  103. pyatlasctl-0.1.2/recipes/deepseek-v4/deepseek-v4-flash-nvfp4-ep2.yaml +49 -0
  104. pyatlasctl-0.1.2/recipes/diffusion-gemma/diffusion-gemma-bf16.yaml +46 -0
  105. pyatlasctl-0.1.2/recipes/diffusion-gemma/diffusion-gemma-fp8-dynamic.yaml +45 -0
  106. pyatlasctl-0.1.2/recipes/gemma4/gemma-4-26b-a4b-nvfp4.yaml +25 -0
  107. pyatlasctl-0.1.2/recipes/gemma4/gemma-4-31b-nvfp4.yaml +38 -0
  108. pyatlasctl-0.1.2/recipes/minimax-m2.7/minimax-m2.7-nvfp4-ep2.yaml +36 -0
  109. pyatlasctl-0.1.2/recipes/mistral-small-4/mistral-small-4-119b-nvfp4.yaml +39 -0
  110. pyatlasctl-0.1.2/recipes/nemotron-3-nano/nemotron-3-nano-30b-a3b-nvfp4.yaml +26 -0
  111. pyatlasctl-0.1.2/recipes/nemotron-3-super/nemotron-3-super-120b-a12b-nvfp4.yaml +29 -0
  112. pyatlasctl-0.1.2/recipes/qwen3-coder-next/qwen3-coder-next-fp8.yaml +42 -0
  113. pyatlasctl-0.1.2/recipes/qwen3-next/qwen3-next-80b-a3b-nvfp4.yaml +28 -0
  114. pyatlasctl-0.1.2/recipes/qwen3-vl/qwen3-vl-30b-a3b-nvfp4.yaml +33 -0
  115. pyatlasctl-0.1.2/recipes/qwen3.5/qwen3.5-0.8b-bf16-atlas.yaml +28 -0
  116. pyatlasctl-0.1.2/recipes/qwen3.5/qwen3.5-122b-a10b-nvfp4-ep2.yaml +32 -0
  117. pyatlasctl-0.1.2/recipes/qwen3.5/qwen3.5-122b-a10b-nvfp4-single.yaml +34 -0
  118. pyatlasctl-0.1.2/recipes/qwen3.5/qwen3.5-27b-dense-nvfp4.yaml +33 -0
  119. pyatlasctl-0.1.2/recipes/qwen3.5/qwen3.5-35b-a3b-nvfp4.yaml +38 -0
  120. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-27b-fp8-mtp.yaml +80 -0
  121. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-27b-fp8.yaml +36 -0
  122. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-27b-nvfp4-prefill-record.yaml +65 -0
  123. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-27b-nvfp4-unsloth.yaml +74 -0
  124. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-27b-nvfp4.yaml +77 -0
  125. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-35b-a3b-fp8-bf16head.yaml +50 -0
  126. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-35b-a3b-fp8-mtp.yaml +76 -0
  127. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-35b-a3b-fp8-nvfp4head.yaml +45 -0
  128. pyatlasctl-0.1.2/recipes/qwen3.6/qwen3.6-35b-a3b-nvfp4.yaml +92 -0
  129. pyatlasctl-0.1.2/recipes/qwen3.8/qwen3.8-27b-nvfp4-latency.yaml +131 -0
  130. pyatlasctl-0.1.2/recipes/qwen3.8/qwen3.8-27b-nvfp4-throughput.yaml +160 -0
  131. pyatlasctl-0.1.2/recipes/qwen3.8/qwen3.8-27b-nvfp4-unsloth-bfcl.yaml +75 -0
  132. pyatlasctl-0.1.2/recipes/qwen3.8/qwen3.8-27b-nvfp4-unsloth.yaml +162 -0
  133. pyatlasctl-0.1.2/src/lib.rs +103 -0
@@ -0,0 +1,1039 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anstream"
7
+ version = "1.0.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
10
+ dependencies = [
11
+ "anstyle",
12
+ "anstyle-parse",
13
+ "anstyle-query",
14
+ "anstyle-wincon",
15
+ "colorchoice",
16
+ "is_terminal_polyfill",
17
+ "utf8parse",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "anstyle-parse"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
31
+ dependencies = [
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle-query"
37
+ version = "1.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
40
+ dependencies = [
41
+ "windows-sys",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-wincon"
46
+ version = "3.0.11"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "once_cell_polyfill",
52
+ "windows-sys",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anyhow"
57
+ version = "1.0.104"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
60
+
61
+ [[package]]
62
+ name = "atlas-recipes-data"
63
+ version = "0.1.2"
64
+ dependencies = [
65
+ "include_dir",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "atlasctl"
70
+ version = "0.1.2"
71
+ dependencies = [
72
+ "anyhow",
73
+ "atlasctl-agent",
74
+ "atlasctl-core",
75
+ "clap",
76
+ "rustix",
77
+ "serde_yaml_ng",
78
+ "tokio",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "atlasctl-agent"
83
+ version = "0.1.2"
84
+ dependencies = [
85
+ "anyhow",
86
+ "atlasctl-core",
87
+ "atlasctl-protocol",
88
+ "axum",
89
+ "serde",
90
+ "serde_json",
91
+ "subtle",
92
+ "thiserror",
93
+ "tokio",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "atlasctl-core"
98
+ version = "0.1.2"
99
+ dependencies = [
100
+ "anyhow",
101
+ "atlas-recipes-data",
102
+ "atlasctl-protocol",
103
+ "serde",
104
+ "serde_yaml_ng",
105
+ "thiserror",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "atlasctl-protocol"
110
+ version = "0.1.2"
111
+ dependencies = [
112
+ "serde",
113
+ "serde_json",
114
+ "thiserror",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "atomic-waker"
119
+ version = "1.1.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
122
+
123
+ [[package]]
124
+ name = "axum"
125
+ version = "0.8.9"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
128
+ dependencies = [
129
+ "axum-core",
130
+ "base64",
131
+ "bytes",
132
+ "form_urlencoded",
133
+ "futures-util",
134
+ "http",
135
+ "http-body",
136
+ "http-body-util",
137
+ "hyper",
138
+ "hyper-util",
139
+ "itoa",
140
+ "matchit",
141
+ "memchr",
142
+ "mime",
143
+ "percent-encoding",
144
+ "pin-project-lite",
145
+ "serde_core",
146
+ "serde_json",
147
+ "serde_path_to_error",
148
+ "serde_urlencoded",
149
+ "sha1",
150
+ "sync_wrapper",
151
+ "tokio",
152
+ "tokio-tungstenite",
153
+ "tower",
154
+ "tower-layer",
155
+ "tower-service",
156
+ "tracing",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "axum-core"
161
+ version = "0.5.6"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
164
+ dependencies = [
165
+ "bytes",
166
+ "futures-core",
167
+ "http",
168
+ "http-body",
169
+ "http-body-util",
170
+ "mime",
171
+ "pin-project-lite",
172
+ "sync_wrapper",
173
+ "tower-layer",
174
+ "tower-service",
175
+ "tracing",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "base64"
180
+ version = "0.22.1"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
183
+
184
+ [[package]]
185
+ name = "bitflags"
186
+ version = "2.13.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
189
+
190
+ [[package]]
191
+ name = "block-buffer"
192
+ version = "0.10.4"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
195
+ dependencies = [
196
+ "generic-array",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "bytes"
201
+ version = "1.12.1"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
204
+
205
+ [[package]]
206
+ name = "cfg-if"
207
+ version = "1.0.4"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
210
+
211
+ [[package]]
212
+ name = "clap"
213
+ version = "4.6.6"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
216
+ dependencies = [
217
+ "clap_builder",
218
+ "clap_derive",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "clap_builder"
223
+ version = "4.6.6"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
226
+ dependencies = [
227
+ "anstream",
228
+ "anstyle",
229
+ "clap_lex",
230
+ "strsim",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "clap_derive"
235
+ version = "4.6.4"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
238
+ dependencies = [
239
+ "heck",
240
+ "proc-macro2",
241
+ "quote",
242
+ "syn 3.0.4",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "clap_lex"
247
+ version = "1.1.0"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
250
+
251
+ [[package]]
252
+ name = "colorchoice"
253
+ version = "1.0.5"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
256
+
257
+ [[package]]
258
+ name = "cpufeatures"
259
+ version = "0.2.17"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
262
+ dependencies = [
263
+ "libc",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "crypto-common"
268
+ version = "0.1.7"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
271
+ dependencies = [
272
+ "generic-array",
273
+ "typenum",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "data-encoding"
278
+ version = "2.11.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
281
+
282
+ [[package]]
283
+ name = "digest"
284
+ version = "0.10.7"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
287
+ dependencies = [
288
+ "block-buffer",
289
+ "crypto-common",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "equivalent"
294
+ version = "1.0.2"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
297
+
298
+ [[package]]
299
+ name = "errno"
300
+ version = "0.3.14"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
303
+ dependencies = [
304
+ "libc",
305
+ "windows-sys",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "form_urlencoded"
310
+ version = "1.2.2"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
313
+ dependencies = [
314
+ "percent-encoding",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "futures-channel"
319
+ version = "0.3.34"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
322
+ dependencies = [
323
+ "futures-core",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "futures-core"
328
+ version = "0.3.34"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
331
+
332
+ [[package]]
333
+ name = "futures-sink"
334
+ version = "0.3.34"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
337
+
338
+ [[package]]
339
+ name = "futures-task"
340
+ version = "0.3.34"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
343
+
344
+ [[package]]
345
+ name = "futures-util"
346
+ version = "0.3.34"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
349
+ dependencies = [
350
+ "futures-core",
351
+ "futures-sink",
352
+ "futures-task",
353
+ "pin-project-lite",
354
+ "slab",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "generic-array"
359
+ version = "0.14.7"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
362
+ dependencies = [
363
+ "typenum",
364
+ "version_check",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "getrandom"
369
+ version = "0.3.4"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
372
+ dependencies = [
373
+ "cfg-if",
374
+ "libc",
375
+ "r-efi",
376
+ "wasip2",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "hashbrown"
381
+ version = "0.17.1"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
384
+
385
+ [[package]]
386
+ name = "heck"
387
+ version = "0.5.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
390
+
391
+ [[package]]
392
+ name = "http"
393
+ version = "1.5.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
396
+ dependencies = [
397
+ "bytes",
398
+ "itoa",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "http-body"
403
+ version = "1.1.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
406
+ dependencies = [
407
+ "bytes",
408
+ "http",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "http-body-util"
413
+ version = "0.1.5"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
416
+ dependencies = [
417
+ "bytes",
418
+ "futures-core",
419
+ "http",
420
+ "http-body",
421
+ "pin-project-lite",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "httparse"
426
+ version = "1.10.1"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
429
+
430
+ [[package]]
431
+ name = "httpdate"
432
+ version = "1.0.3"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
435
+
436
+ [[package]]
437
+ name = "hyper"
438
+ version = "1.11.0"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
441
+ dependencies = [
442
+ "atomic-waker",
443
+ "bytes",
444
+ "futures-channel",
445
+ "futures-core",
446
+ "http",
447
+ "http-body",
448
+ "httparse",
449
+ "httpdate",
450
+ "itoa",
451
+ "pin-project-lite",
452
+ "smallvec",
453
+ "tokio",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "hyper-util"
458
+ version = "0.1.20"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
461
+ dependencies = [
462
+ "bytes",
463
+ "http",
464
+ "http-body",
465
+ "hyper",
466
+ "pin-project-lite",
467
+ "tokio",
468
+ "tower-service",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "include_dir"
473
+ version = "0.7.4"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
476
+ dependencies = [
477
+ "include_dir_macros",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "include_dir_macros"
482
+ version = "0.7.4"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
485
+ dependencies = [
486
+ "proc-macro2",
487
+ "quote",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "indexmap"
492
+ version = "2.14.0"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
495
+ dependencies = [
496
+ "equivalent",
497
+ "hashbrown",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "is_terminal_polyfill"
502
+ version = "1.70.2"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
505
+
506
+ [[package]]
507
+ name = "itoa"
508
+ version = "1.0.18"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
511
+
512
+ [[package]]
513
+ name = "libc"
514
+ version = "0.2.189"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
517
+
518
+ [[package]]
519
+ name = "linux-raw-sys"
520
+ version = "0.12.1"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
523
+
524
+ [[package]]
525
+ name = "log"
526
+ version = "0.4.34"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
529
+
530
+ [[package]]
531
+ name = "matchit"
532
+ version = "0.8.4"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
535
+
536
+ [[package]]
537
+ name = "memchr"
538
+ version = "2.8.3"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
541
+
542
+ [[package]]
543
+ name = "mime"
544
+ version = "0.3.17"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
547
+
548
+ [[package]]
549
+ name = "mio"
550
+ version = "1.2.2"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
553
+ dependencies = [
554
+ "libc",
555
+ "wasi",
556
+ "windows-sys",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "once_cell"
561
+ version = "1.21.4"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
564
+
565
+ [[package]]
566
+ name = "once_cell_polyfill"
567
+ version = "1.70.2"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
570
+
571
+ [[package]]
572
+ name = "percent-encoding"
573
+ version = "2.3.2"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
576
+
577
+ [[package]]
578
+ name = "pin-project-lite"
579
+ version = "0.2.17"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
582
+
583
+ [[package]]
584
+ name = "ppv-lite86"
585
+ version = "0.2.21"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
588
+ dependencies = [
589
+ "zerocopy",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "proc-macro2"
594
+ version = "1.0.107"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
597
+ dependencies = [
598
+ "unicode-ident",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "quote"
603
+ version = "1.0.47"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
606
+ dependencies = [
607
+ "proc-macro2",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "r-efi"
612
+ version = "5.3.0"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
615
+
616
+ [[package]]
617
+ name = "rand"
618
+ version = "0.9.5"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
621
+ dependencies = [
622
+ "rand_chacha",
623
+ "rand_core",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "rand_chacha"
628
+ version = "0.9.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
631
+ dependencies = [
632
+ "ppv-lite86",
633
+ "rand_core",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "rand_core"
638
+ version = "0.9.5"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
641
+ dependencies = [
642
+ "getrandom",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "rustix"
647
+ version = "1.1.4"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
650
+ dependencies = [
651
+ "bitflags",
652
+ "errno",
653
+ "libc",
654
+ "linux-raw-sys",
655
+ "windows-sys",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "ryu"
660
+ version = "1.0.23"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
663
+
664
+ [[package]]
665
+ name = "serde"
666
+ version = "1.0.229"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
669
+ dependencies = [
670
+ "serde_core",
671
+ "serde_derive",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "serde_core"
676
+ version = "1.0.229"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
679
+ dependencies = [
680
+ "serde_derive",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "serde_derive"
685
+ version = "1.0.229"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
688
+ dependencies = [
689
+ "proc-macro2",
690
+ "quote",
691
+ "syn 3.0.4",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "serde_json"
696
+ version = "1.0.151"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
699
+ dependencies = [
700
+ "itoa",
701
+ "memchr",
702
+ "serde",
703
+ "serde_core",
704
+ "zmij",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "serde_path_to_error"
709
+ version = "0.1.20"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
712
+ dependencies = [
713
+ "itoa",
714
+ "serde",
715
+ "serde_core",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "serde_urlencoded"
720
+ version = "0.7.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
723
+ dependencies = [
724
+ "form_urlencoded",
725
+ "itoa",
726
+ "ryu",
727
+ "serde",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "serde_yaml_ng"
732
+ version = "0.10.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
735
+ dependencies = [
736
+ "indexmap",
737
+ "itoa",
738
+ "ryu",
739
+ "serde",
740
+ "unsafe-libyaml",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "sha1"
745
+ version = "0.10.7"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
748
+ dependencies = [
749
+ "cfg-if",
750
+ "cpufeatures",
751
+ "digest",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "signal-hook-registry"
756
+ version = "1.4.8"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
759
+ dependencies = [
760
+ "errno",
761
+ "libc",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "slab"
766
+ version = "0.4.12"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
769
+
770
+ [[package]]
771
+ name = "smallvec"
772
+ version = "1.15.2"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
775
+
776
+ [[package]]
777
+ name = "socket2"
778
+ version = "0.6.5"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
781
+ dependencies = [
782
+ "libc",
783
+ "windows-sys",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "strsim"
788
+ version = "0.11.1"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
791
+
792
+ [[package]]
793
+ name = "subtle"
794
+ version = "2.6.1"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
797
+
798
+ [[package]]
799
+ name = "syn"
800
+ version = "2.0.119"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
803
+ dependencies = [
804
+ "proc-macro2",
805
+ "quote",
806
+ "unicode-ident",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "syn"
811
+ version = "3.0.4"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
814
+ dependencies = [
815
+ "proc-macro2",
816
+ "quote",
817
+ "unicode-ident",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "sync_wrapper"
822
+ version = "1.0.2"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
825
+
826
+ [[package]]
827
+ name = "thiserror"
828
+ version = "2.0.20"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
831
+ dependencies = [
832
+ "thiserror-impl",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "thiserror-impl"
837
+ version = "2.0.20"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
840
+ dependencies = [
841
+ "proc-macro2",
842
+ "quote",
843
+ "syn 3.0.4",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "tokio"
848
+ version = "1.53.1"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
851
+ dependencies = [
852
+ "bytes",
853
+ "libc",
854
+ "mio",
855
+ "pin-project-lite",
856
+ "signal-hook-registry",
857
+ "socket2",
858
+ "tokio-macros",
859
+ "windows-sys",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "tokio-macros"
864
+ version = "2.7.2"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
867
+ dependencies = [
868
+ "proc-macro2",
869
+ "quote",
870
+ "syn 3.0.4",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "tokio-tungstenite"
875
+ version = "0.29.0"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
878
+ dependencies = [
879
+ "futures-util",
880
+ "log",
881
+ "tokio",
882
+ "tungstenite",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "tower"
887
+ version = "0.5.3"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
890
+ dependencies = [
891
+ "futures-core",
892
+ "futures-util",
893
+ "pin-project-lite",
894
+ "sync_wrapper",
895
+ "tokio",
896
+ "tower-layer",
897
+ "tower-service",
898
+ "tracing",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "tower-layer"
903
+ version = "0.3.3"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
906
+
907
+ [[package]]
908
+ name = "tower-service"
909
+ version = "0.3.3"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
912
+
913
+ [[package]]
914
+ name = "tracing"
915
+ version = "0.1.44"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
918
+ dependencies = [
919
+ "log",
920
+ "pin-project-lite",
921
+ "tracing-core",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "tracing-core"
926
+ version = "0.1.36"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
929
+ dependencies = [
930
+ "once_cell",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "tungstenite"
935
+ version = "0.29.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
938
+ dependencies = [
939
+ "bytes",
940
+ "data-encoding",
941
+ "http",
942
+ "httparse",
943
+ "log",
944
+ "rand",
945
+ "sha1",
946
+ "thiserror",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "typenum"
951
+ version = "1.20.1"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
954
+
955
+ [[package]]
956
+ name = "unicode-ident"
957
+ version = "1.0.24"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
960
+
961
+ [[package]]
962
+ name = "unsafe-libyaml"
963
+ version = "0.2.11"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
966
+
967
+ [[package]]
968
+ name = "utf8parse"
969
+ version = "0.2.2"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
972
+
973
+ [[package]]
974
+ name = "version_check"
975
+ version = "0.9.5"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
978
+
979
+ [[package]]
980
+ name = "wasi"
981
+ version = "0.11.1+wasi-snapshot-preview1"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
984
+
985
+ [[package]]
986
+ name = "wasip2"
987
+ version = "1.0.1+wasi-0.2.4"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
990
+ dependencies = [
991
+ "wit-bindgen",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "windows-link"
996
+ version = "0.2.1"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
999
+
1000
+ [[package]]
1001
+ name = "windows-sys"
1002
+ version = "0.61.2"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1005
+ dependencies = [
1006
+ "windows-link",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "wit-bindgen"
1011
+ version = "0.46.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1014
+
1015
+ [[package]]
1016
+ name = "zerocopy"
1017
+ version = "0.8.56"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1020
+ dependencies = [
1021
+ "zerocopy-derive",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "zerocopy-derive"
1026
+ version = "0.8.56"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1029
+ dependencies = [
1030
+ "proc-macro2",
1031
+ "quote",
1032
+ "syn 2.0.119",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "zmij"
1037
+ version = "1.0.23"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"