slim-bindings 0.3.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.

Potentially problematic release.


This version of slim-bindings might be problematic. Click here for more details.

Files changed (135) hide show
  1. slim_bindings-0.3.6/Cargo.lock +3876 -0
  2. slim_bindings-0.3.6/Cargo.toml +114 -0
  3. slim_bindings-0.3.6/PKG-INFO +930 -0
  4. slim_bindings-0.3.6/README.md +910 -0
  5. slim_bindings-0.3.6/core/config/CHANGELOG.md +73 -0
  6. slim_bindings-0.3.6/core/config/Cargo.toml +43 -0
  7. slim_bindings-0.3.6/core/config/README.md +90 -0
  8. slim_bindings-0.3.6/core/config/build.rs +17 -0
  9. slim_bindings-0.3.6/core/config/proto/hello.proto +26 -0
  10. slim_bindings-0.3.6/core/config/src/auth/basic.rs +115 -0
  11. slim_bindings-0.3.6/core/config/src/auth/bearer.rs +94 -0
  12. slim_bindings-0.3.6/core/config/src/auth.rs +27 -0
  13. slim_bindings-0.3.6/core/config/src/component/configuration.rs +17 -0
  14. slim_bindings-0.3.6/core/config/src/component/id.rs +169 -0
  15. slim_bindings-0.3.6/core/config/src/component.rs +46 -0
  16. slim_bindings-0.3.6/core/config/src/grpc/client.rs +594 -0
  17. slim_bindings-0.3.6/core/config/src/grpc/compression.rs +66 -0
  18. slim_bindings-0.3.6/core/config/src/grpc/errors.rs +33 -0
  19. slim_bindings-0.3.6/core/config/src/grpc/headers_middleware.rs +101 -0
  20. slim_bindings-0.3.6/core/config/src/grpc/helloworld.rs +309 -0
  21. slim_bindings-0.3.6/core/config/src/grpc/server.rs +469 -0
  22. slim_bindings-0.3.6/core/config/src/grpc.rs +8 -0
  23. slim_bindings-0.3.6/core/config/src/lib.rs +11 -0
  24. slim_bindings-0.3.6/core/config/src/opaque.rs +132 -0
  25. slim_bindings-0.3.6/core/config/src/provider/env.rs +17 -0
  26. slim_bindings-0.3.6/core/config/src/provider/file.rs +17 -0
  27. slim_bindings-0.3.6/core/config/src/provider/lib.rs +175 -0
  28. slim_bindings-0.3.6/core/config/src/provider.rs +177 -0
  29. slim_bindings-0.3.6/core/config/src/testutils/helloworld.rs +308 -0
  30. slim_bindings-0.3.6/core/config/src/testutils.rs +30 -0
  31. slim_bindings-0.3.6/core/config/src/tls/client.rs +299 -0
  32. slim_bindings-0.3.6/core/config/src/tls/common.rs +256 -0
  33. slim_bindings-0.3.6/core/config/src/tls/server.rs +277 -0
  34. slim_bindings-0.3.6/core/config/src/tls.rs +6 -0
  35. slim_bindings-0.3.6/core/config/testdata/grpc/ca.crt +20 -0
  36. slim_bindings-0.3.6/core/config/testdata/grpc/server.crt +20 -0
  37. slim_bindings-0.3.6/core/config/testdata/grpc/server.key +28 -0
  38. slim_bindings-0.3.6/core/config/testdata/testfile +1 -0
  39. slim_bindings-0.3.6/core/config/testdata/tls/ca-1.crt +20 -0
  40. slim_bindings-0.3.6/core/config/testdata/tls/ca-2.crt +20 -0
  41. slim_bindings-0.3.6/core/config/testdata/tls/ca-bad.crt +3 -0
  42. slim_bindings-0.3.6/core/config/testdata/tls/client-1.crt +21 -0
  43. slim_bindings-0.3.6/core/config/testdata/tls/client-1.key +28 -0
  44. slim_bindings-0.3.6/core/config/testdata/tls/client-2.crt +20 -0
  45. slim_bindings-0.3.6/core/config/testdata/tls/client-2.key +27 -0
  46. slim_bindings-0.3.6/core/config/testdata/tls/server-1.crt +20 -0
  47. slim_bindings-0.3.6/core/config/testdata/tls/server-1.key +28 -0
  48. slim_bindings-0.3.6/core/config/testdata/tls/server-2.crt +20 -0
  49. slim_bindings-0.3.6/core/config/testdata/tls/server-2.key +27 -0
  50. slim_bindings-0.3.6/core/config/tests/src/e2e.rs +299 -0
  51. slim_bindings-0.3.6/core/config/tests/src/tls.rs +493 -0
  52. slim_bindings-0.3.6/core/controller/CHANGELOG.md +28 -0
  53. slim_bindings-0.3.6/core/controller/Cargo.toml +29 -0
  54. slim_bindings-0.3.6/core/controller/README.md +121 -0
  55. slim_bindings-0.3.6/core/controller/build.rs +18 -0
  56. slim_bindings-0.3.6/core/controller/proto/v1/controller.proto +85 -0
  57. slim_bindings-0.3.6/core/controller/src/api/gen/controller.proto.v1.rs +449 -0
  58. slim_bindings-0.3.6/core/controller/src/api/proto.rs +8 -0
  59. slim_bindings-0.3.6/core/controller/src/api.rs +4 -0
  60. slim_bindings-0.3.6/core/controller/src/errors.rs +14 -0
  61. slim_bindings-0.3.6/core/controller/src/lib.rs +6 -0
  62. slim_bindings-0.3.6/core/controller/src/service.rs +484 -0
  63. slim_bindings-0.3.6/core/datapath/CHANGELOG.md +131 -0
  64. slim_bindings-0.3.6/core/datapath/Cargo.toml +41 -0
  65. slim_bindings-0.3.6/core/datapath/README.md +116 -0
  66. slim_bindings-0.3.6/core/datapath/benches/pool_benchmark.rs +92 -0
  67. slim_bindings-0.3.6/core/datapath/build.rs +18 -0
  68. slim_bindings-0.3.6/core/datapath/proto/v1/pubsub.proto +96 -0
  69. slim_bindings-0.3.6/core/datapath/src/api/gen/pubsub.proto.v1.rs +464 -0
  70. slim_bindings-0.3.6/core/datapath/src/api/proto.rs +8 -0
  71. slim_bindings-0.3.6/core/datapath/src/api.rs +18 -0
  72. slim_bindings-0.3.6/core/datapath/src/connection.rs +122 -0
  73. slim_bindings-0.3.6/core/datapath/src/errors.rs +36 -0
  74. slim_bindings-0.3.6/core/datapath/src/forwarder.rs +191 -0
  75. slim_bindings-0.3.6/core/datapath/src/lib.rs +12 -0
  76. slim_bindings-0.3.6/core/datapath/src/message_processing.rs +842 -0
  77. slim_bindings-0.3.6/core/datapath/src/messages/encoder.rs +206 -0
  78. slim_bindings-0.3.6/core/datapath/src/messages/utils.rs +1172 -0
  79. slim_bindings-0.3.6/core/datapath/src/messages.rs +8 -0
  80. slim_bindings-0.3.6/core/datapath/src/tables/connection_table.rs +123 -0
  81. slim_bindings-0.3.6/core/datapath/src/tables/errors.rs +16 -0
  82. slim_bindings-0.3.6/core/datapath/src/tables/pool.rs +442 -0
  83. slim_bindings-0.3.6/core/datapath/src/tables/remote_subscription_table.rs +83 -0
  84. slim_bindings-0.3.6/core/datapath/src/tables/subscription_table.rs +897 -0
  85. slim_bindings-0.3.6/core/datapath/src/tables.rs +53 -0
  86. slim_bindings-0.3.6/core/datapath/tests/data_path_test.rs +178 -0
  87. slim_bindings-0.3.6/core/service/CHANGELOG.md +145 -0
  88. slim_bindings-0.3.6/core/service/Cargo.toml +28 -0
  89. slim_bindings-0.3.6/core/service/README.md +238 -0
  90. slim_bindings-0.3.6/core/service/src/errors.rs +90 -0
  91. slim_bindings-0.3.6/core/service/src/fire_and_forget.rs +1162 -0
  92. slim_bindings-0.3.6/core/service/src/lib.rs +1261 -0
  93. slim_bindings-0.3.6/core/service/src/producer_buffer.rs +173 -0
  94. slim_bindings-0.3.6/core/service/src/receiver_buffer.rs +524 -0
  95. slim_bindings-0.3.6/core/service/src/request_response.rs +406 -0
  96. slim_bindings-0.3.6/core/service/src/session.rs +368 -0
  97. slim_bindings-0.3.6/core/service/src/session_layer.rs +516 -0
  98. slim_bindings-0.3.6/core/service/src/streaming.rs +1428 -0
  99. slim_bindings-0.3.6/core/service/src/timer.rs +464 -0
  100. slim_bindings-0.3.6/core/tracing/CHANGELOG.md +63 -0
  101. slim_bindings-0.3.6/core/tracing/Cargo.toml +25 -0
  102. slim_bindings-0.3.6/core/tracing/README.md +294 -0
  103. slim_bindings-0.3.6/core/tracing/src/lib.rs +550 -0
  104. slim_bindings-0.3.6/core/tracing/src/utils.rs +5 -0
  105. slim_bindings-0.3.6/pyproject.toml +75 -0
  106. slim_bindings-0.3.6/python-bindings/BUILD.md +41 -0
  107. slim_bindings-0.3.6/python-bindings/CHANGELOG.md +308 -0
  108. slim_bindings-0.3.6/python-bindings/Cargo.toml +25 -0
  109. slim_bindings-0.3.6/python-bindings/README.md +910 -0
  110. slim_bindings-0.3.6/python-bindings/Taskfile.yml +226 -0
  111. slim_bindings-0.3.6/python-bindings/WINDOWS.md +109 -0
  112. slim_bindings-0.3.6/python-bindings/build.rs +42 -0
  113. slim_bindings-0.3.6/python-bindings/examples/common.py +30 -0
  114. slim_bindings-0.3.6/python-bindings/examples/fire-and-forget.py +170 -0
  115. slim_bindings-0.3.6/python-bindings/examples/gateway.py +78 -0
  116. slim_bindings-0.3.6/python-bindings/examples/pubsub.py +173 -0
  117. slim_bindings-0.3.6/python-bindings/examples/request-reply.py +155 -0
  118. slim_bindings-0.3.6/python-bindings/examples/streaming.py +172 -0
  119. slim_bindings-0.3.6/python-bindings/slim_bindings/__init__.py +708 -0
  120. slim_bindings-0.3.6/python-bindings/slim_bindings/_slim_bindings.pyi +104 -0
  121. slim_bindings-0.3.6/python-bindings/src/bin/stub_gen.rs +11 -0
  122. slim_bindings-0.3.6/python-bindings/src/build_info.rs +28 -0
  123. slim_bindings-0.3.6/python-bindings/src/lib.rs +41 -0
  124. slim_bindings-0.3.6/python-bindings/src/pyservice.rs +541 -0
  125. slim_bindings-0.3.6/python-bindings/src/pysession.rs +197 -0
  126. slim_bindings-0.3.6/python-bindings/src/utils.rs +77 -0
  127. slim_bindings-0.3.6/python-bindings/tests/conftest.py +30 -0
  128. slim_bindings-0.3.6/python-bindings/tests/test_bindings.py +395 -0
  129. slim_bindings-0.3.6/python-bindings/tests/test_fire_forget.py +93 -0
  130. slim_bindings-0.3.6/python-bindings/tests/test_pubsub.py +146 -0
  131. slim_bindings-0.3.6/python-bindings/tests/test_request_reply.py +173 -0
  132. slim_bindings-0.3.6/python-bindings/tests/test_streaming.py +144 -0
  133. slim_bindings-0.3.6/python-bindings/uv.lock +322 -0
  134. slim_bindings-0.3.6/slim_bindings/__init__.py +708 -0
  135. slim_bindings-0.3.6/slim_bindings/_slim_bindings.pyi +104 -0
@@ -0,0 +1,3876 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
+
20
+ [[package]]
21
+ name = "agntcy-slim"
22
+ version = "0.3.15"
23
+ dependencies = [
24
+ "agntcy-slim-config",
25
+ "agntcy-slim-service",
26
+ "agntcy-slim-signal",
27
+ "agntcy-slim-tracing",
28
+ "clap",
29
+ "duration-str",
30
+ "jemallocator",
31
+ "lazy_static",
32
+ "num_cpus",
33
+ "serde",
34
+ "serde_yaml",
35
+ "thiserror",
36
+ "tokio",
37
+ "tracing",
38
+ "tracing-test",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "agntcy-slim-bindings"
43
+ version = "0.1.0"
44
+ dependencies = [
45
+ "agntcy-slim-config",
46
+ "agntcy-slim-datapath",
47
+ "agntcy-slim-service",
48
+ "agntcy-slim-tracing",
49
+ "pyo3",
50
+ "pyo3-async-runtimes",
51
+ "pyo3-stub-gen",
52
+ "rand 0.9.1",
53
+ "serde-pyobject",
54
+ "tokio",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "agntcy-slim-config"
59
+ version = "0.1.8"
60
+ dependencies = [
61
+ "duration-str",
62
+ "futures",
63
+ "http",
64
+ "hyper-rustls",
65
+ "hyper-util",
66
+ "lazy_static",
67
+ "prost",
68
+ "protoc-bin-vendored",
69
+ "regex",
70
+ "rustls",
71
+ "rustls-native-certs",
72
+ "rustls-pki-types",
73
+ "serde",
74
+ "serde_json",
75
+ "serde_yaml",
76
+ "thiserror",
77
+ "tokio",
78
+ "tonic 0.13.0",
79
+ "tonic-build",
80
+ "tonic-tls",
81
+ "tower 0.5.2",
82
+ "tower-http",
83
+ "tower-layer",
84
+ "tower-reqwest",
85
+ "tower-service",
86
+ "tracing",
87
+ "tracing-test",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "agntcy-slim-controller"
92
+ version = "0.1.1"
93
+ dependencies = [
94
+ "agntcy-slim-config",
95
+ "agntcy-slim-datapath",
96
+ "bytes",
97
+ "h2",
98
+ "parking_lot",
99
+ "prost",
100
+ "protoc-bin-vendored",
101
+ "thiserror",
102
+ "tokio",
103
+ "tokio-stream",
104
+ "tokio-util",
105
+ "tonic 0.13.0",
106
+ "tonic-build",
107
+ "tracing",
108
+ "uuid",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "agntcy-slim-datapath"
113
+ version = "0.7.0"
114
+ dependencies = [
115
+ "agntcy-slim-config",
116
+ "agntcy-slim-tracing",
117
+ "bit-vec",
118
+ "bytes",
119
+ "criterion",
120
+ "drain",
121
+ "h2",
122
+ "opentelemetry",
123
+ "parking_lot",
124
+ "prost",
125
+ "protoc-bin-vendored",
126
+ "rand 0.9.1",
127
+ "thiserror",
128
+ "tokio",
129
+ "tokio-stream",
130
+ "tokio-util",
131
+ "tonic 0.13.0",
132
+ "tonic-build",
133
+ "tracing",
134
+ "tracing-opentelemetry",
135
+ "tracing-test",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "agntcy-slim-nop-component"
140
+ version = "0.1.0"
141
+ dependencies = [
142
+ "agntcy-slim-config",
143
+ "serde",
144
+ "serde_yaml",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "agntcy-slim-service"
149
+ version = "0.4.2"
150
+ dependencies = [
151
+ "agntcy-slim-config",
152
+ "agntcy-slim-controller",
153
+ "agntcy-slim-datapath",
154
+ "async-trait",
155
+ "drain",
156
+ "parking_lot",
157
+ "rand 0.9.1",
158
+ "serde",
159
+ "thiserror",
160
+ "tokio",
161
+ "tokio-util",
162
+ "tonic 0.13.0",
163
+ "tracing",
164
+ "tracing-test",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "agntcy-slim-signal"
169
+ version = "0.1.2"
170
+ dependencies = [
171
+ "tokio",
172
+ "tracing",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "agntcy-slim-tracing"
177
+ version = "0.2.1"
178
+ dependencies = [
179
+ "agntcy-slim-config",
180
+ "once_cell",
181
+ "opentelemetry",
182
+ "opentelemetry-otlp",
183
+ "opentelemetry-semantic-conventions",
184
+ "opentelemetry-stdout",
185
+ "opentelemetry_sdk",
186
+ "serde",
187
+ "thiserror",
188
+ "tracing",
189
+ "tracing-opentelemetry",
190
+ "tracing-subscriber",
191
+ "uuid",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "aho-corasick"
196
+ version = "1.1.3"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
199
+ dependencies = [
200
+ "memchr",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "android-tzdata"
205
+ version = "0.1.1"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
208
+
209
+ [[package]]
210
+ name = "android_system_properties"
211
+ version = "0.1.5"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
214
+ dependencies = [
215
+ "libc",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "anes"
220
+ version = "0.1.6"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
223
+
224
+ [[package]]
225
+ name = "anstream"
226
+ version = "0.6.18"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
229
+ dependencies = [
230
+ "anstyle",
231
+ "anstyle-parse",
232
+ "anstyle-query",
233
+ "anstyle-wincon",
234
+ "colorchoice",
235
+ "is_terminal_polyfill",
236
+ "utf8parse",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "anstyle"
241
+ version = "1.0.10"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
244
+
245
+ [[package]]
246
+ name = "anstyle-parse"
247
+ version = "0.2.6"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
250
+ dependencies = [
251
+ "utf8parse",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "anstyle-query"
256
+ version = "1.1.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
259
+ dependencies = [
260
+ "windows-sys 0.59.0",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "anstyle-wincon"
265
+ version = "3.0.7"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
268
+ dependencies = [
269
+ "anstyle",
270
+ "once_cell",
271
+ "windows-sys 0.59.0",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "anyhow"
276
+ version = "1.0.98"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
279
+
280
+ [[package]]
281
+ name = "arrayvec"
282
+ version = "0.7.6"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
285
+
286
+ [[package]]
287
+ name = "async-stream"
288
+ version = "0.3.6"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
291
+ dependencies = [
292
+ "async-stream-impl",
293
+ "futures-core",
294
+ "pin-project-lite",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "async-stream-impl"
299
+ version = "0.3.6"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
302
+ dependencies = [
303
+ "proc-macro2",
304
+ "quote",
305
+ "syn",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "async-trait"
310
+ version = "0.1.88"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
313
+ dependencies = [
314
+ "proc-macro2",
315
+ "quote",
316
+ "syn",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "atomic-waker"
321
+ version = "1.1.2"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
324
+
325
+ [[package]]
326
+ name = "autocfg"
327
+ version = "1.4.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
330
+
331
+ [[package]]
332
+ name = "aws-lc-rs"
333
+ version = "1.13.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
336
+ dependencies = [
337
+ "aws-lc-sys",
338
+ "zeroize",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "aws-lc-sys"
343
+ version = "0.28.2"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
346
+ dependencies = [
347
+ "bindgen",
348
+ "cc",
349
+ "cmake",
350
+ "dunce",
351
+ "fs_extra",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "axum"
356
+ version = "0.8.3"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "de45108900e1f9b9242f7f2e254aa3e2c029c921c258fe9e6b4217eeebd54288"
359
+ dependencies = [
360
+ "axum-core",
361
+ "bytes",
362
+ "futures-util",
363
+ "http",
364
+ "http-body",
365
+ "http-body-util",
366
+ "itoa",
367
+ "matchit",
368
+ "memchr",
369
+ "mime",
370
+ "percent-encoding",
371
+ "pin-project-lite",
372
+ "rustversion",
373
+ "serde",
374
+ "sync_wrapper",
375
+ "tower 0.5.2",
376
+ "tower-layer",
377
+ "tower-service",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "axum-core"
382
+ version = "0.5.2"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
385
+ dependencies = [
386
+ "bytes",
387
+ "futures-core",
388
+ "http",
389
+ "http-body",
390
+ "http-body-util",
391
+ "mime",
392
+ "pin-project-lite",
393
+ "rustversion",
394
+ "sync_wrapper",
395
+ "tower-layer",
396
+ "tower-service",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "backtrace"
401
+ version = "0.3.74"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
404
+ dependencies = [
405
+ "addr2line",
406
+ "cfg-if",
407
+ "libc",
408
+ "miniz_oxide",
409
+ "object",
410
+ "rustc-demangle",
411
+ "windows-targets 0.52.6",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "base64"
416
+ version = "0.22.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
419
+
420
+ [[package]]
421
+ name = "bindgen"
422
+ version = "0.69.5"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
425
+ dependencies = [
426
+ "bitflags",
427
+ "cexpr",
428
+ "clang-sys",
429
+ "itertools 0.12.1",
430
+ "lazy_static",
431
+ "lazycell",
432
+ "log",
433
+ "prettyplease",
434
+ "proc-macro2",
435
+ "quote",
436
+ "regex",
437
+ "rustc-hash 1.1.0",
438
+ "shlex",
439
+ "syn",
440
+ "which",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "bit-vec"
445
+ version = "0.8.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
448
+
449
+ [[package]]
450
+ name = "bitflags"
451
+ version = "2.9.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
454
+
455
+ [[package]]
456
+ name = "bumpalo"
457
+ version = "3.17.0"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
460
+
461
+ [[package]]
462
+ name = "bytes"
463
+ version = "1.10.1"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
466
+
467
+ [[package]]
468
+ name = "cast"
469
+ version = "0.3.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
472
+
473
+ [[package]]
474
+ name = "cc"
475
+ version = "1.2.19"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
478
+ dependencies = [
479
+ "jobserver",
480
+ "libc",
481
+ "shlex",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "cexpr"
486
+ version = "0.6.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
489
+ dependencies = [
490
+ "nom",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "cfg-if"
495
+ version = "1.0.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
498
+
499
+ [[package]]
500
+ name = "chrono"
501
+ version = "0.4.40"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
504
+ dependencies = [
505
+ "android-tzdata",
506
+ "iana-time-zone",
507
+ "js-sys",
508
+ "num-traits",
509
+ "wasm-bindgen",
510
+ "windows-link",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "ciborium"
515
+ version = "0.2.2"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
518
+ dependencies = [
519
+ "ciborium-io",
520
+ "ciborium-ll",
521
+ "serde",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "ciborium-io"
526
+ version = "0.2.2"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
529
+
530
+ [[package]]
531
+ name = "ciborium-ll"
532
+ version = "0.2.2"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
535
+ dependencies = [
536
+ "ciborium-io",
537
+ "half",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "clang-sys"
542
+ version = "1.8.1"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
545
+ dependencies = [
546
+ "glob",
547
+ "libc",
548
+ "libloading",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "clap"
553
+ version = "4.5.37"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
556
+ dependencies = [
557
+ "clap_builder",
558
+ "clap_derive",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "clap_builder"
563
+ version = "4.5.37"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
566
+ dependencies = [
567
+ "anstream",
568
+ "anstyle",
569
+ "clap_lex",
570
+ "strsim",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "clap_derive"
575
+ version = "4.5.32"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
578
+ dependencies = [
579
+ "heck",
580
+ "proc-macro2",
581
+ "quote",
582
+ "syn",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "clap_lex"
587
+ version = "0.7.4"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
590
+
591
+ [[package]]
592
+ name = "cmake"
593
+ version = "0.1.54"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
596
+ dependencies = [
597
+ "cc",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "colorchoice"
602
+ version = "1.0.3"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
605
+
606
+ [[package]]
607
+ name = "console"
608
+ version = "0.15.11"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
611
+ dependencies = [
612
+ "encode_unicode",
613
+ "libc",
614
+ "once_cell",
615
+ "unicode-width",
616
+ "windows-sys 0.59.0",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "core-foundation"
621
+ version = "0.10.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
624
+ dependencies = [
625
+ "core-foundation-sys",
626
+ "libc",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "core-foundation-sys"
631
+ version = "0.8.7"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
634
+
635
+ [[package]]
636
+ name = "criterion"
637
+ version = "0.5.1"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
640
+ dependencies = [
641
+ "anes",
642
+ "cast",
643
+ "ciborium",
644
+ "clap",
645
+ "criterion-plot",
646
+ "is-terminal",
647
+ "itertools 0.10.5",
648
+ "num-traits",
649
+ "once_cell",
650
+ "oorandom",
651
+ "plotters",
652
+ "rayon",
653
+ "regex",
654
+ "serde",
655
+ "serde_derive",
656
+ "serde_json",
657
+ "tinytemplate",
658
+ "walkdir",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "criterion-plot"
663
+ version = "0.5.0"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
666
+ dependencies = [
667
+ "cast",
668
+ "itertools 0.10.5",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "crossbeam-deque"
673
+ version = "0.8.6"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
676
+ dependencies = [
677
+ "crossbeam-epoch",
678
+ "crossbeam-utils",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "crossbeam-epoch"
683
+ version = "0.9.18"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
686
+ dependencies = [
687
+ "crossbeam-utils",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "crossbeam-utils"
692
+ version = "0.8.21"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
695
+
696
+ [[package]]
697
+ name = "crunchy"
698
+ version = "0.2.3"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
701
+
702
+ [[package]]
703
+ name = "deranged"
704
+ version = "0.4.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
707
+ dependencies = [
708
+ "powerfmt",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "displaydoc"
713
+ version = "0.2.5"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
716
+ dependencies = [
717
+ "proc-macro2",
718
+ "quote",
719
+ "syn",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "drain"
724
+ version = "0.1.2"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "9d105028bd2b5dfcb33318fd79a445001ead36004dd8dffef1bdd7e493d8bc1e"
727
+ dependencies = [
728
+ "tokio",
729
+ "tower 0.4.13",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "dunce"
734
+ version = "1.0.5"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
737
+
738
+ [[package]]
739
+ name = "duration-str"
740
+ version = "0.12.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "64ad6b66883f70e2f38f1ee99e3797b9d7e7b7fb051ed2e23e027c81753056c8"
743
+ dependencies = [
744
+ "chrono",
745
+ "rust_decimal",
746
+ "serde",
747
+ "thiserror",
748
+ "time",
749
+ "winnow 0.6.26",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "either"
754
+ version = "1.15.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
757
+
758
+ [[package]]
759
+ name = "encode_unicode"
760
+ version = "1.0.0"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
763
+
764
+ [[package]]
765
+ name = "equivalent"
766
+ version = "1.0.2"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
769
+
770
+ [[package]]
771
+ name = "errno"
772
+ version = "0.3.11"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
775
+ dependencies = [
776
+ "libc",
777
+ "windows-sys 0.59.0",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "fastrand"
782
+ version = "2.3.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
785
+
786
+ [[package]]
787
+ name = "fixedbitset"
788
+ version = "0.5.7"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
791
+
792
+ [[package]]
793
+ name = "fnv"
794
+ version = "1.0.7"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
797
+
798
+ [[package]]
799
+ name = "form_urlencoded"
800
+ version = "1.2.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
803
+ dependencies = [
804
+ "percent-encoding",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "fs_extra"
809
+ version = "1.3.0"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
812
+
813
+ [[package]]
814
+ name = "futures"
815
+ version = "0.3.31"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
818
+ dependencies = [
819
+ "futures-channel",
820
+ "futures-core",
821
+ "futures-executor",
822
+ "futures-io",
823
+ "futures-sink",
824
+ "futures-task",
825
+ "futures-util",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "futures-channel"
830
+ version = "0.3.31"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
833
+ dependencies = [
834
+ "futures-core",
835
+ "futures-sink",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "futures-core"
840
+ version = "0.3.31"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
843
+
844
+ [[package]]
845
+ name = "futures-executor"
846
+ version = "0.3.31"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
849
+ dependencies = [
850
+ "futures-core",
851
+ "futures-task",
852
+ "futures-util",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "futures-io"
857
+ version = "0.3.31"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
860
+
861
+ [[package]]
862
+ name = "futures-macro"
863
+ version = "0.3.31"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
866
+ dependencies = [
867
+ "proc-macro2",
868
+ "quote",
869
+ "syn",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "futures-sink"
874
+ version = "0.3.31"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
877
+
878
+ [[package]]
879
+ name = "futures-task"
880
+ version = "0.3.31"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
883
+
884
+ [[package]]
885
+ name = "futures-util"
886
+ version = "0.3.31"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
889
+ dependencies = [
890
+ "futures-channel",
891
+ "futures-core",
892
+ "futures-io",
893
+ "futures-macro",
894
+ "futures-sink",
895
+ "futures-task",
896
+ "memchr",
897
+ "pin-project-lite",
898
+ "pin-utils",
899
+ "slab",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "getrandom"
904
+ version = "0.2.16"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
907
+ dependencies = [
908
+ "cfg-if",
909
+ "libc",
910
+ "wasi 0.11.0+wasi-snapshot-preview1",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "getrandom"
915
+ version = "0.3.2"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
918
+ dependencies = [
919
+ "cfg-if",
920
+ "libc",
921
+ "r-efi",
922
+ "wasi 0.14.2+wasi-0.2.4",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "gimli"
927
+ version = "0.31.1"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
930
+
931
+ [[package]]
932
+ name = "glob"
933
+ version = "0.3.2"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
936
+
937
+ [[package]]
938
+ name = "h2"
939
+ version = "0.4.9"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
942
+ dependencies = [
943
+ "atomic-waker",
944
+ "bytes",
945
+ "fnv",
946
+ "futures-core",
947
+ "futures-sink",
948
+ "http",
949
+ "indexmap 2.9.0",
950
+ "slab",
951
+ "tokio",
952
+ "tokio-util",
953
+ "tracing",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "half"
958
+ version = "2.6.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
961
+ dependencies = [
962
+ "cfg-if",
963
+ "crunchy",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "hashbrown"
968
+ version = "0.12.3"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
971
+
972
+ [[package]]
973
+ name = "hashbrown"
974
+ version = "0.15.2"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
977
+
978
+ [[package]]
979
+ name = "heck"
980
+ version = "0.5.0"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
983
+
984
+ [[package]]
985
+ name = "hermit-abi"
986
+ version = "0.3.9"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
989
+
990
+ [[package]]
991
+ name = "hermit-abi"
992
+ version = "0.5.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
995
+
996
+ [[package]]
997
+ name = "home"
998
+ version = "0.5.11"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1001
+ dependencies = [
1002
+ "windows-sys 0.59.0",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "http"
1007
+ version = "1.3.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1010
+ dependencies = [
1011
+ "bytes",
1012
+ "fnv",
1013
+ "itoa",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "http-body"
1018
+ version = "1.0.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1021
+ dependencies = [
1022
+ "bytes",
1023
+ "http",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "http-body-util"
1028
+ version = "0.1.3"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1031
+ dependencies = [
1032
+ "bytes",
1033
+ "futures-core",
1034
+ "http",
1035
+ "http-body",
1036
+ "pin-project-lite",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "httparse"
1041
+ version = "1.10.1"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1044
+
1045
+ [[package]]
1046
+ name = "httpdate"
1047
+ version = "1.0.3"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1050
+
1051
+ [[package]]
1052
+ name = "hyper"
1053
+ version = "1.6.0"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1056
+ dependencies = [
1057
+ "bytes",
1058
+ "futures-channel",
1059
+ "futures-util",
1060
+ "h2",
1061
+ "http",
1062
+ "http-body",
1063
+ "httparse",
1064
+ "httpdate",
1065
+ "itoa",
1066
+ "pin-project-lite",
1067
+ "smallvec",
1068
+ "tokio",
1069
+ "want",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "hyper-rustls"
1074
+ version = "0.27.5"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1077
+ dependencies = [
1078
+ "futures-util",
1079
+ "http",
1080
+ "hyper",
1081
+ "hyper-util",
1082
+ "rustls",
1083
+ "rustls-pki-types",
1084
+ "tokio",
1085
+ "tokio-rustls",
1086
+ "tower-service",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "hyper-timeout"
1091
+ version = "0.5.2"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1094
+ dependencies = [
1095
+ "hyper",
1096
+ "hyper-util",
1097
+ "pin-project-lite",
1098
+ "tokio",
1099
+ "tower-service",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "hyper-util"
1104
+ version = "0.1.11"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1107
+ dependencies = [
1108
+ "bytes",
1109
+ "futures-channel",
1110
+ "futures-util",
1111
+ "http",
1112
+ "http-body",
1113
+ "hyper",
1114
+ "libc",
1115
+ "pin-project-lite",
1116
+ "socket2",
1117
+ "tokio",
1118
+ "tower-service",
1119
+ "tracing",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "iana-time-zone"
1124
+ version = "0.1.63"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1127
+ dependencies = [
1128
+ "android_system_properties",
1129
+ "core-foundation-sys",
1130
+ "iana-time-zone-haiku",
1131
+ "js-sys",
1132
+ "log",
1133
+ "wasm-bindgen",
1134
+ "windows-core",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "iana-time-zone-haiku"
1139
+ version = "0.1.2"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1142
+ dependencies = [
1143
+ "cc",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "icu_collections"
1148
+ version = "1.5.0"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1151
+ dependencies = [
1152
+ "displaydoc",
1153
+ "yoke",
1154
+ "zerofrom",
1155
+ "zerovec",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "icu_locid"
1160
+ version = "1.5.0"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1163
+ dependencies = [
1164
+ "displaydoc",
1165
+ "litemap",
1166
+ "tinystr",
1167
+ "writeable",
1168
+ "zerovec",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "icu_locid_transform"
1173
+ version = "1.5.0"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1176
+ dependencies = [
1177
+ "displaydoc",
1178
+ "icu_locid",
1179
+ "icu_locid_transform_data",
1180
+ "icu_provider",
1181
+ "tinystr",
1182
+ "zerovec",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "icu_locid_transform_data"
1187
+ version = "1.5.1"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1190
+
1191
+ [[package]]
1192
+ name = "icu_normalizer"
1193
+ version = "1.5.0"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1196
+ dependencies = [
1197
+ "displaydoc",
1198
+ "icu_collections",
1199
+ "icu_normalizer_data",
1200
+ "icu_properties",
1201
+ "icu_provider",
1202
+ "smallvec",
1203
+ "utf16_iter",
1204
+ "utf8_iter",
1205
+ "write16",
1206
+ "zerovec",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "icu_normalizer_data"
1211
+ version = "1.5.1"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1214
+
1215
+ [[package]]
1216
+ name = "icu_properties"
1217
+ version = "1.5.1"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1220
+ dependencies = [
1221
+ "displaydoc",
1222
+ "icu_collections",
1223
+ "icu_locid_transform",
1224
+ "icu_properties_data",
1225
+ "icu_provider",
1226
+ "tinystr",
1227
+ "zerovec",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "icu_properties_data"
1232
+ version = "1.5.1"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1235
+
1236
+ [[package]]
1237
+ name = "icu_provider"
1238
+ version = "1.5.0"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1241
+ dependencies = [
1242
+ "displaydoc",
1243
+ "icu_locid",
1244
+ "icu_provider_macros",
1245
+ "stable_deref_trait",
1246
+ "tinystr",
1247
+ "writeable",
1248
+ "yoke",
1249
+ "zerofrom",
1250
+ "zerovec",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "icu_provider_macros"
1255
+ version = "1.5.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1258
+ dependencies = [
1259
+ "proc-macro2",
1260
+ "quote",
1261
+ "syn",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "idna"
1266
+ version = "1.0.3"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1269
+ dependencies = [
1270
+ "idna_adapter",
1271
+ "smallvec",
1272
+ "utf8_iter",
1273
+ ]
1274
+
1275
+ [[package]]
1276
+ name = "idna_adapter"
1277
+ version = "1.2.0"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1280
+ dependencies = [
1281
+ "icu_normalizer",
1282
+ "icu_properties",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "include-utils"
1287
+ version = "0.2.4"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "431d3c09de1082802cc229e78a515e4f46be80c7ac31eda029afa32e1518cebf"
1290
+ dependencies = [
1291
+ "include-utils-macro",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "include-utils-macro"
1296
+ version = "0.2.4"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "0a2c76d2506581ed9ead2afacb6b8164e4cac323427fd67102b59225d35b49cb"
1299
+ dependencies = [
1300
+ "itertools 0.13.0",
1301
+ "manyhow",
1302
+ "proc-macro2",
1303
+ "quote",
1304
+ "syn",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "indexmap"
1309
+ version = "1.9.3"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1312
+ dependencies = [
1313
+ "autocfg",
1314
+ "hashbrown 0.12.3",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "indexmap"
1319
+ version = "2.9.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1322
+ dependencies = [
1323
+ "equivalent",
1324
+ "hashbrown 0.15.2",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "indicatif"
1329
+ version = "0.17.11"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1332
+ dependencies = [
1333
+ "console",
1334
+ "number_prefix",
1335
+ "portable-atomic",
1336
+ "unicode-width",
1337
+ "web-time",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "indoc"
1342
+ version = "2.0.6"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1345
+
1346
+ [[package]]
1347
+ name = "inventory"
1348
+ version = "0.3.20"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
1351
+ dependencies = [
1352
+ "rustversion",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "ipnet"
1357
+ version = "2.11.0"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1360
+
1361
+ [[package]]
1362
+ name = "is-terminal"
1363
+ version = "0.4.16"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1366
+ dependencies = [
1367
+ "hermit-abi 0.5.0",
1368
+ "libc",
1369
+ "windows-sys 0.59.0",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "is_terminal_polyfill"
1374
+ version = "1.70.1"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1377
+
1378
+ [[package]]
1379
+ name = "itertools"
1380
+ version = "0.10.5"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1383
+ dependencies = [
1384
+ "either",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "itertools"
1389
+ version = "0.12.1"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1392
+ dependencies = [
1393
+ "either",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "itertools"
1398
+ version = "0.13.0"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1401
+ dependencies = [
1402
+ "either",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "itertools"
1407
+ version = "0.14.0"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1410
+ dependencies = [
1411
+ "either",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "itoa"
1416
+ version = "1.0.15"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1419
+
1420
+ [[package]]
1421
+ name = "jemalloc-sys"
1422
+ version = "0.5.4+5.3.0-patched"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
1425
+ dependencies = [
1426
+ "cc",
1427
+ "libc",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "jemallocator"
1432
+ version = "0.5.4"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
1435
+ dependencies = [
1436
+ "jemalloc-sys",
1437
+ "libc",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "jobserver"
1442
+ version = "0.1.33"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1445
+ dependencies = [
1446
+ "getrandom 0.3.2",
1447
+ "libc",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "js-sys"
1452
+ version = "0.3.77"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1455
+ dependencies = [
1456
+ "once_cell",
1457
+ "wasm-bindgen",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "lazy_static"
1462
+ version = "1.5.0"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1465
+
1466
+ [[package]]
1467
+ name = "lazycell"
1468
+ version = "1.3.0"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1471
+
1472
+ [[package]]
1473
+ name = "libc"
1474
+ version = "0.2.172"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1477
+
1478
+ [[package]]
1479
+ name = "libloading"
1480
+ version = "0.8.6"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1483
+ dependencies = [
1484
+ "cfg-if",
1485
+ "windows-targets 0.52.6",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "linux-raw-sys"
1490
+ version = "0.4.15"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1493
+
1494
+ [[package]]
1495
+ name = "linux-raw-sys"
1496
+ version = "0.9.4"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1499
+
1500
+ [[package]]
1501
+ name = "litemap"
1502
+ version = "0.7.5"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1505
+
1506
+ [[package]]
1507
+ name = "lock_api"
1508
+ version = "0.4.12"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1511
+ dependencies = [
1512
+ "autocfg",
1513
+ "scopeguard",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "log"
1518
+ version = "0.4.27"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1521
+
1522
+ [[package]]
1523
+ name = "manyhow"
1524
+ version = "0.11.4"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
1527
+ dependencies = [
1528
+ "manyhow-macros",
1529
+ "proc-macro2",
1530
+ "quote",
1531
+ "syn",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "manyhow-macros"
1536
+ version = "0.11.4"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
1539
+ dependencies = [
1540
+ "proc-macro-utils",
1541
+ "proc-macro2",
1542
+ "quote",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "maplit"
1547
+ version = "1.0.2"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1550
+
1551
+ [[package]]
1552
+ name = "matchers"
1553
+ version = "0.1.0"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1556
+ dependencies = [
1557
+ "regex-automata 0.1.10",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "matchit"
1562
+ version = "0.8.4"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1565
+
1566
+ [[package]]
1567
+ name = "matrixmultiply"
1568
+ version = "0.3.9"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
1571
+ dependencies = [
1572
+ "autocfg",
1573
+ "rawpointer",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "memchr"
1578
+ version = "2.7.4"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1581
+
1582
+ [[package]]
1583
+ name = "memoffset"
1584
+ version = "0.9.1"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1587
+ dependencies = [
1588
+ "autocfg",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "mime"
1593
+ version = "0.3.17"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1596
+
1597
+ [[package]]
1598
+ name = "minimal-lexical"
1599
+ version = "0.2.1"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1602
+
1603
+ [[package]]
1604
+ name = "miniz_oxide"
1605
+ version = "0.8.8"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1608
+ dependencies = [
1609
+ "adler2",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "mio"
1614
+ version = "1.0.3"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1617
+ dependencies = [
1618
+ "libc",
1619
+ "wasi 0.11.0+wasi-snapshot-preview1",
1620
+ "windows-sys 0.52.0",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "multimap"
1625
+ version = "0.10.0"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
1628
+
1629
+ [[package]]
1630
+ name = "ndarray"
1631
+ version = "0.16.1"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1634
+ dependencies = [
1635
+ "matrixmultiply",
1636
+ "num-complex",
1637
+ "num-integer",
1638
+ "num-traits",
1639
+ "portable-atomic",
1640
+ "portable-atomic-util",
1641
+ "rawpointer",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "nom"
1646
+ version = "7.1.3"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1649
+ dependencies = [
1650
+ "memchr",
1651
+ "minimal-lexical",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "nu-ansi-term"
1656
+ version = "0.46.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1659
+ dependencies = [
1660
+ "overload",
1661
+ "winapi",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "num-complex"
1666
+ version = "0.4.6"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1669
+ dependencies = [
1670
+ "num-traits",
1671
+ ]
1672
+
1673
+ [[package]]
1674
+ name = "num-conv"
1675
+ version = "0.1.0"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1678
+
1679
+ [[package]]
1680
+ name = "num-integer"
1681
+ version = "0.1.46"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1684
+ dependencies = [
1685
+ "num-traits",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "num-traits"
1690
+ version = "0.2.19"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1693
+ dependencies = [
1694
+ "autocfg",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "num_cpus"
1699
+ version = "1.16.0"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1702
+ dependencies = [
1703
+ "hermit-abi 0.3.9",
1704
+ "libc",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "number_prefix"
1709
+ version = "0.4.0"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1712
+
1713
+ [[package]]
1714
+ name = "numpy"
1715
+ version = "0.24.0"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
1718
+ dependencies = [
1719
+ "libc",
1720
+ "ndarray",
1721
+ "num-complex",
1722
+ "num-integer",
1723
+ "num-traits",
1724
+ "pyo3",
1725
+ "pyo3-build-config",
1726
+ "rustc-hash 2.1.1",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "object"
1731
+ version = "0.36.7"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1734
+ dependencies = [
1735
+ "memchr",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "once_cell"
1740
+ version = "1.21.3"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1743
+
1744
+ [[package]]
1745
+ name = "oorandom"
1746
+ version = "11.1.5"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1749
+
1750
+ [[package]]
1751
+ name = "openssl-probe"
1752
+ version = "0.1.6"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1755
+
1756
+ [[package]]
1757
+ name = "opentelemetry"
1758
+ version = "0.29.1"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "9e87237e2775f74896f9ad219d26a2081751187eb7c9f5c58dde20a23b95d16c"
1761
+ dependencies = [
1762
+ "futures-core",
1763
+ "futures-sink",
1764
+ "js-sys",
1765
+ "pin-project-lite",
1766
+ "thiserror",
1767
+ "tracing",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "opentelemetry-http"
1772
+ version = "0.29.0"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "46d7ab32b827b5b495bd90fa95a6cb65ccc293555dcc3199ae2937d2d237c8ed"
1775
+ dependencies = [
1776
+ "async-trait",
1777
+ "bytes",
1778
+ "http",
1779
+ "opentelemetry",
1780
+ "reqwest",
1781
+ "tracing",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "opentelemetry-otlp"
1786
+ version = "0.29.0"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "d899720fe06916ccba71c01d04ecd77312734e2de3467fd30d9d580c8ce85656"
1789
+ dependencies = [
1790
+ "futures-core",
1791
+ "http",
1792
+ "opentelemetry",
1793
+ "opentelemetry-http",
1794
+ "opentelemetry-proto",
1795
+ "opentelemetry_sdk",
1796
+ "prost",
1797
+ "reqwest",
1798
+ "thiserror",
1799
+ "tokio",
1800
+ "tonic 0.12.3",
1801
+ "tracing",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "opentelemetry-proto"
1806
+ version = "0.29.0"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "8c40da242381435e18570d5b9d50aca2a4f4f4d8e146231adb4e7768023309b3"
1809
+ dependencies = [
1810
+ "opentelemetry",
1811
+ "opentelemetry_sdk",
1812
+ "prost",
1813
+ "tonic 0.12.3",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "opentelemetry-semantic-conventions"
1818
+ version = "0.29.0"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "84b29a9f89f1a954936d5aa92f19b2feec3c8f3971d3e96206640db7f9706ae3"
1821
+
1822
+ [[package]]
1823
+ name = "opentelemetry-stdout"
1824
+ version = "0.29.0"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "a7e27d446dabd68610ef0b77d07b102ecde827a4596ea9c01a4d3811e945b286"
1827
+ dependencies = [
1828
+ "chrono",
1829
+ "futures-util",
1830
+ "opentelemetry",
1831
+ "opentelemetry_sdk",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "opentelemetry_sdk"
1836
+ version = "0.29.0"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "afdefb21d1d47394abc1ba6c57363ab141be19e27cc70d0e422b7f303e4d290b"
1839
+ dependencies = [
1840
+ "futures-channel",
1841
+ "futures-executor",
1842
+ "futures-util",
1843
+ "glob",
1844
+ "opentelemetry",
1845
+ "percent-encoding",
1846
+ "rand 0.9.1",
1847
+ "serde_json",
1848
+ "thiserror",
1849
+ "tokio",
1850
+ "tokio-stream",
1851
+ "tracing",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "overload"
1856
+ version = "0.1.1"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1859
+
1860
+ [[package]]
1861
+ name = "parking_lot"
1862
+ version = "0.12.3"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1865
+ dependencies = [
1866
+ "lock_api",
1867
+ "parking_lot_core",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "parking_lot_core"
1872
+ version = "0.9.10"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1875
+ dependencies = [
1876
+ "cfg-if",
1877
+ "libc",
1878
+ "redox_syscall",
1879
+ "smallvec",
1880
+ "windows-targets 0.52.6",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "percent-encoding"
1885
+ version = "2.3.1"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1888
+
1889
+ [[package]]
1890
+ name = "petgraph"
1891
+ version = "0.7.1"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1894
+ dependencies = [
1895
+ "fixedbitset",
1896
+ "indexmap 2.9.0",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "pin-project"
1901
+ version = "1.1.10"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1904
+ dependencies = [
1905
+ "pin-project-internal",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "pin-project-internal"
1910
+ version = "1.1.10"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1913
+ dependencies = [
1914
+ "proc-macro2",
1915
+ "quote",
1916
+ "syn",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "pin-project-lite"
1921
+ version = "0.2.16"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1924
+
1925
+ [[package]]
1926
+ name = "pin-utils"
1927
+ version = "0.1.0"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1930
+
1931
+ [[package]]
1932
+ name = "plotters"
1933
+ version = "0.3.7"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1936
+ dependencies = [
1937
+ "num-traits",
1938
+ "plotters-backend",
1939
+ "plotters-svg",
1940
+ "wasm-bindgen",
1941
+ "web-sys",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "plotters-backend"
1946
+ version = "0.3.7"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1949
+
1950
+ [[package]]
1951
+ name = "plotters-svg"
1952
+ version = "0.3.7"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1955
+ dependencies = [
1956
+ "plotters-backend",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "portable-atomic"
1961
+ version = "1.11.0"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1964
+
1965
+ [[package]]
1966
+ name = "portable-atomic-util"
1967
+ version = "0.2.4"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1970
+ dependencies = [
1971
+ "portable-atomic",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "powerfmt"
1976
+ version = "0.2.0"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1979
+
1980
+ [[package]]
1981
+ name = "ppv-lite86"
1982
+ version = "0.2.21"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1985
+ dependencies = [
1986
+ "zerocopy",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "prettyplease"
1991
+ version = "0.2.32"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
1994
+ dependencies = [
1995
+ "proc-macro2",
1996
+ "syn",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "proc-macro-utils"
2001
+ version = "0.10.0"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
2004
+ dependencies = [
2005
+ "proc-macro2",
2006
+ "quote",
2007
+ "smallvec",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "proc-macro2"
2012
+ version = "1.0.95"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2015
+ dependencies = [
2016
+ "unicode-ident",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "prost"
2021
+ version = "0.13.5"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
2024
+ dependencies = [
2025
+ "bytes",
2026
+ "prost-derive",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "prost-build"
2031
+ version = "0.13.5"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
2034
+ dependencies = [
2035
+ "heck",
2036
+ "itertools 0.14.0",
2037
+ "log",
2038
+ "multimap",
2039
+ "once_cell",
2040
+ "petgraph",
2041
+ "prettyplease",
2042
+ "prost",
2043
+ "prost-types",
2044
+ "regex",
2045
+ "syn",
2046
+ "tempfile",
2047
+ ]
2048
+
2049
+ [[package]]
2050
+ name = "prost-derive"
2051
+ version = "0.13.5"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
2054
+ dependencies = [
2055
+ "anyhow",
2056
+ "itertools 0.14.0",
2057
+ "proc-macro2",
2058
+ "quote",
2059
+ "syn",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "prost-types"
2064
+ version = "0.13.5"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
2067
+ dependencies = [
2068
+ "prost",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "protoc-bin-vendored"
2073
+ version = "3.1.0"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "dd89a830d0eab2502c81a9b8226d446a52998bb78e5e33cb2637c0cdd6068d99"
2076
+ dependencies = [
2077
+ "protoc-bin-vendored-linux-aarch_64",
2078
+ "protoc-bin-vendored-linux-ppcle_64",
2079
+ "protoc-bin-vendored-linux-x86_32",
2080
+ "protoc-bin-vendored-linux-x86_64",
2081
+ "protoc-bin-vendored-macos-aarch_64",
2082
+ "protoc-bin-vendored-macos-x86_64",
2083
+ "protoc-bin-vendored-win32",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "protoc-bin-vendored-linux-aarch_64"
2088
+ version = "3.1.0"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "f563627339f1653ea1453dfbcb4398a7369b768925eb14499457aeaa45afe22c"
2091
+
2092
+ [[package]]
2093
+ name = "protoc-bin-vendored-linux-ppcle_64"
2094
+ version = "3.1.0"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "5025c949a02cd3b60c02501dd0f348c16e8fff464f2a7f27db8a9732c608b746"
2097
+
2098
+ [[package]]
2099
+ name = "protoc-bin-vendored-linux-x86_32"
2100
+ version = "3.1.0"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "9c9500ce67d132c2f3b572504088712db715755eb9adf69d55641caa2cb68a07"
2103
+
2104
+ [[package]]
2105
+ name = "protoc-bin-vendored-linux-x86_64"
2106
+ version = "3.1.0"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "5462592380cefdc9f1f14635bcce70ba9c91c1c2464c7feb2ce564726614cc41"
2109
+
2110
+ [[package]]
2111
+ name = "protoc-bin-vendored-macos-aarch_64"
2112
+ version = "3.1.0"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "c637745681b68b4435484543667a37606c95ddacf15e917710801a0877506030"
2115
+
2116
+ [[package]]
2117
+ name = "protoc-bin-vendored-macos-x86_64"
2118
+ version = "3.1.0"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "38943f3c90319d522f94a6dfd4a134ba5e36148b9506d2d9723a82ebc57c8b55"
2121
+
2122
+ [[package]]
2123
+ name = "protoc-bin-vendored-win32"
2124
+ version = "3.1.0"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "7dc55d7dec32ecaf61e0bd90b3d2392d721a28b95cfd23c3e176eccefbeab2f2"
2127
+
2128
+ [[package]]
2129
+ name = "pyo3"
2130
+ version = "0.24.2"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2133
+ dependencies = [
2134
+ "cfg-if",
2135
+ "indoc",
2136
+ "libc",
2137
+ "memoffset",
2138
+ "once_cell",
2139
+ "portable-atomic",
2140
+ "pyo3-build-config",
2141
+ "pyo3-ffi",
2142
+ "pyo3-macros",
2143
+ "unindent",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "pyo3-async-runtimes"
2148
+ version = "0.24.0"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "dd0b83dc42f9d41f50d38180dad65f0c99763b65a3ff2a81bf351dd35a1df8bf"
2151
+ dependencies = [
2152
+ "futures",
2153
+ "once_cell",
2154
+ "pin-project-lite",
2155
+ "pyo3",
2156
+ "tokio",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "pyo3-build-config"
2161
+ version = "0.24.2"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
2164
+ dependencies = [
2165
+ "once_cell",
2166
+ "target-lexicon",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "pyo3-ffi"
2171
+ version = "0.24.2"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
2174
+ dependencies = [
2175
+ "libc",
2176
+ "pyo3-build-config",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "pyo3-macros"
2181
+ version = "0.24.2"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
2184
+ dependencies = [
2185
+ "proc-macro2",
2186
+ "pyo3-macros-backend",
2187
+ "quote",
2188
+ "syn",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "pyo3-macros-backend"
2193
+ version = "0.24.2"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2196
+ dependencies = [
2197
+ "heck",
2198
+ "proc-macro2",
2199
+ "pyo3-build-config",
2200
+ "quote",
2201
+ "syn",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "pyo3-stub-gen"
2206
+ version = "0.7.0"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "ca7c2d6e22cba51cc9766b6dee4087218cc445fdf99db62fa4f269e074351b46"
2209
+ dependencies = [
2210
+ "anyhow",
2211
+ "chrono",
2212
+ "inventory",
2213
+ "itertools 0.13.0",
2214
+ "log",
2215
+ "maplit",
2216
+ "num-complex",
2217
+ "numpy",
2218
+ "pyo3",
2219
+ "pyo3-stub-gen-derive",
2220
+ "serde",
2221
+ "toml",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "pyo3-stub-gen-derive"
2226
+ version = "0.7.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "3ee49d727163163a0c6fc3fee4636c8b5c82e1bb868e85cf411be7ae9e4e5b40"
2229
+ dependencies = [
2230
+ "proc-macro2",
2231
+ "quote",
2232
+ "syn",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "quote"
2237
+ version = "1.0.40"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2240
+ dependencies = [
2241
+ "proc-macro2",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "r-efi"
2246
+ version = "5.2.0"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2249
+
2250
+ [[package]]
2251
+ name = "rand"
2252
+ version = "0.8.5"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2255
+ dependencies = [
2256
+ "libc",
2257
+ "rand_chacha 0.3.1",
2258
+ "rand_core 0.6.4",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "rand"
2263
+ version = "0.9.1"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2266
+ dependencies = [
2267
+ "rand_chacha 0.9.0",
2268
+ "rand_core 0.9.3",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "rand_chacha"
2273
+ version = "0.3.1"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2276
+ dependencies = [
2277
+ "ppv-lite86",
2278
+ "rand_core 0.6.4",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "rand_chacha"
2283
+ version = "0.9.0"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2286
+ dependencies = [
2287
+ "ppv-lite86",
2288
+ "rand_core 0.9.3",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "rand_core"
2293
+ version = "0.6.4"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2296
+ dependencies = [
2297
+ "getrandom 0.2.16",
2298
+ ]
2299
+
2300
+ [[package]]
2301
+ name = "rand_core"
2302
+ version = "0.9.3"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2305
+ dependencies = [
2306
+ "getrandom 0.3.2",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "rawpointer"
2311
+ version = "0.2.1"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2314
+
2315
+ [[package]]
2316
+ name = "rayon"
2317
+ version = "1.10.0"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2320
+ dependencies = [
2321
+ "either",
2322
+ "rayon-core",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "rayon-core"
2327
+ version = "1.12.1"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2330
+ dependencies = [
2331
+ "crossbeam-deque",
2332
+ "crossbeam-utils",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "redox_syscall"
2337
+ version = "0.5.11"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2340
+ dependencies = [
2341
+ "bitflags",
2342
+ ]
2343
+
2344
+ [[package]]
2345
+ name = "regex"
2346
+ version = "1.11.1"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2349
+ dependencies = [
2350
+ "aho-corasick",
2351
+ "memchr",
2352
+ "regex-automata 0.4.9",
2353
+ "regex-syntax 0.8.5",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "regex-automata"
2358
+ version = "0.1.10"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2361
+ dependencies = [
2362
+ "regex-syntax 0.6.29",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "regex-automata"
2367
+ version = "0.4.9"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2370
+ dependencies = [
2371
+ "aho-corasick",
2372
+ "memchr",
2373
+ "regex-syntax 0.8.5",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "regex-syntax"
2378
+ version = "0.6.29"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2381
+
2382
+ [[package]]
2383
+ name = "regex-syntax"
2384
+ version = "0.8.5"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2387
+
2388
+ [[package]]
2389
+ name = "reqwest"
2390
+ version = "0.12.15"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2393
+ dependencies = [
2394
+ "base64",
2395
+ "bytes",
2396
+ "futures-channel",
2397
+ "futures-core",
2398
+ "futures-util",
2399
+ "http",
2400
+ "http-body",
2401
+ "http-body-util",
2402
+ "hyper",
2403
+ "hyper-util",
2404
+ "ipnet",
2405
+ "js-sys",
2406
+ "log",
2407
+ "mime",
2408
+ "once_cell",
2409
+ "percent-encoding",
2410
+ "pin-project-lite",
2411
+ "serde",
2412
+ "serde_json",
2413
+ "serde_urlencoded",
2414
+ "sync_wrapper",
2415
+ "tokio",
2416
+ "tokio-util",
2417
+ "tower 0.5.2",
2418
+ "tower-service",
2419
+ "url",
2420
+ "wasm-bindgen",
2421
+ "wasm-bindgen-futures",
2422
+ "wasm-streams",
2423
+ "web-sys",
2424
+ "windows-registry",
2425
+ ]
2426
+
2427
+ [[package]]
2428
+ name = "ring"
2429
+ version = "0.17.14"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2432
+ dependencies = [
2433
+ "cc",
2434
+ "cfg-if",
2435
+ "getrandom 0.2.16",
2436
+ "libc",
2437
+ "untrusted",
2438
+ "windows-sys 0.52.0",
2439
+ ]
2440
+
2441
+ [[package]]
2442
+ name = "rust_decimal"
2443
+ version = "1.37.1"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "faa7de2ba56ac291bd90c6b9bece784a52ae1411f9506544b3eae36dd2356d50"
2446
+ dependencies = [
2447
+ "arrayvec",
2448
+ "num-traits",
2449
+ ]
2450
+
2451
+ [[package]]
2452
+ name = "rustc-demangle"
2453
+ version = "0.1.24"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2456
+
2457
+ [[package]]
2458
+ name = "rustc-hash"
2459
+ version = "1.1.0"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2462
+
2463
+ [[package]]
2464
+ name = "rustc-hash"
2465
+ version = "2.1.1"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2468
+
2469
+ [[package]]
2470
+ name = "rustix"
2471
+ version = "0.38.44"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2474
+ dependencies = [
2475
+ "bitflags",
2476
+ "errno",
2477
+ "libc",
2478
+ "linux-raw-sys 0.4.15",
2479
+ "windows-sys 0.59.0",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "rustix"
2484
+ version = "1.0.5"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2487
+ dependencies = [
2488
+ "bitflags",
2489
+ "errno",
2490
+ "libc",
2491
+ "linux-raw-sys 0.9.4",
2492
+ "windows-sys 0.59.0",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "rustls"
2497
+ version = "0.23.26"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2500
+ dependencies = [
2501
+ "aws-lc-rs",
2502
+ "log",
2503
+ "once_cell",
2504
+ "rustls-pki-types",
2505
+ "rustls-webpki",
2506
+ "subtle",
2507
+ "zeroize",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "rustls-native-certs"
2512
+ version = "0.8.1"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
2515
+ dependencies = [
2516
+ "openssl-probe",
2517
+ "rustls-pki-types",
2518
+ "schannel",
2519
+ "security-framework",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "rustls-pki-types"
2524
+ version = "1.11.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2527
+
2528
+ [[package]]
2529
+ name = "rustls-webpki"
2530
+ version = "0.103.1"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2533
+ dependencies = [
2534
+ "aws-lc-rs",
2535
+ "ring",
2536
+ "rustls-pki-types",
2537
+ "untrusted",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "rustversion"
2542
+ version = "1.0.20"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2545
+
2546
+ [[package]]
2547
+ name = "ryu"
2548
+ version = "1.0.20"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2551
+
2552
+ [[package]]
2553
+ name = "same-file"
2554
+ version = "1.0.6"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2557
+ dependencies = [
2558
+ "winapi-util",
2559
+ ]
2560
+
2561
+ [[package]]
2562
+ name = "schannel"
2563
+ version = "0.1.27"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2566
+ dependencies = [
2567
+ "windows-sys 0.59.0",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "scopeguard"
2572
+ version = "1.2.0"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2575
+
2576
+ [[package]]
2577
+ name = "security-framework"
2578
+ version = "3.2.0"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2581
+ dependencies = [
2582
+ "bitflags",
2583
+ "core-foundation",
2584
+ "core-foundation-sys",
2585
+ "libc",
2586
+ "security-framework-sys",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "security-framework-sys"
2591
+ version = "2.14.0"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2594
+ dependencies = [
2595
+ "core-foundation-sys",
2596
+ "libc",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "serde"
2601
+ version = "1.0.219"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2604
+ dependencies = [
2605
+ "serde_derive",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "serde-pyobject"
2610
+ version = "0.6.1"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "8448b99b12404bbb03ee8fe18f4ddbc693a0859074ea7b746bc17e47e510299c"
2613
+ dependencies = [
2614
+ "pyo3",
2615
+ "serde",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "serde_derive"
2620
+ version = "1.0.219"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2623
+ dependencies = [
2624
+ "proc-macro2",
2625
+ "quote",
2626
+ "syn",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "serde_json"
2631
+ version = "1.0.140"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2634
+ dependencies = [
2635
+ "itoa",
2636
+ "memchr",
2637
+ "ryu",
2638
+ "serde",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "serde_spanned"
2643
+ version = "0.6.8"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
2646
+ dependencies = [
2647
+ "serde",
2648
+ ]
2649
+
2650
+ [[package]]
2651
+ name = "serde_urlencoded"
2652
+ version = "0.7.1"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2655
+ dependencies = [
2656
+ "form_urlencoded",
2657
+ "itoa",
2658
+ "ryu",
2659
+ "serde",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "serde_yaml"
2664
+ version = "0.9.34+deprecated"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2667
+ dependencies = [
2668
+ "indexmap 2.9.0",
2669
+ "itoa",
2670
+ "ryu",
2671
+ "serde",
2672
+ "unsafe-libyaml",
2673
+ ]
2674
+
2675
+ [[package]]
2676
+ name = "sharded-slab"
2677
+ version = "0.1.7"
2678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2679
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2680
+ dependencies = [
2681
+ "lazy_static",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "shlex"
2686
+ version = "1.3.0"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2689
+
2690
+ [[package]]
2691
+ name = "signal-hook-registry"
2692
+ version = "1.4.5"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2695
+ dependencies = [
2696
+ "libc",
2697
+ ]
2698
+
2699
+ [[package]]
2700
+ name = "slab"
2701
+ version = "0.4.9"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2704
+ dependencies = [
2705
+ "autocfg",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "slim-examples"
2710
+ version = "0.1.0"
2711
+ dependencies = [
2712
+ "agntcy-slim",
2713
+ "agntcy-slim-config",
2714
+ "agntcy-slim-datapath",
2715
+ "agntcy-slim-service",
2716
+ "agntcy-slim-signal",
2717
+ "clap",
2718
+ "tokio",
2719
+ "tracing",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "smallvec"
2724
+ version = "1.15.0"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2727
+
2728
+ [[package]]
2729
+ name = "socket2"
2730
+ version = "0.5.9"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2733
+ dependencies = [
2734
+ "libc",
2735
+ "windows-sys 0.52.0",
2736
+ ]
2737
+
2738
+ [[package]]
2739
+ name = "stable_deref_trait"
2740
+ version = "1.2.0"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2743
+
2744
+ [[package]]
2745
+ name = "strsim"
2746
+ version = "0.11.1"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2749
+
2750
+ [[package]]
2751
+ name = "subtle"
2752
+ version = "2.6.1"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2755
+
2756
+ [[package]]
2757
+ name = "syn"
2758
+ version = "2.0.100"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2761
+ dependencies = [
2762
+ "proc-macro2",
2763
+ "quote",
2764
+ "unicode-ident",
2765
+ ]
2766
+
2767
+ [[package]]
2768
+ name = "sync_wrapper"
2769
+ version = "1.0.2"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2772
+ dependencies = [
2773
+ "futures-core",
2774
+ ]
2775
+
2776
+ [[package]]
2777
+ name = "synstructure"
2778
+ version = "0.13.1"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2781
+ dependencies = [
2782
+ "proc-macro2",
2783
+ "quote",
2784
+ "syn",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "target-lexicon"
2789
+ version = "0.13.2"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
2792
+
2793
+ [[package]]
2794
+ name = "tempfile"
2795
+ version = "3.19.1"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2798
+ dependencies = [
2799
+ "fastrand",
2800
+ "getrandom 0.3.2",
2801
+ "once_cell",
2802
+ "rustix 1.0.5",
2803
+ "windows-sys 0.59.0",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "testing"
2808
+ version = "0.1.0"
2809
+ dependencies = [
2810
+ "agntcy-slim",
2811
+ "agntcy-slim-config",
2812
+ "agntcy-slim-datapath",
2813
+ "agntcy-slim-service",
2814
+ "clap",
2815
+ "indicatif",
2816
+ "parking_lot",
2817
+ "rand 0.9.1",
2818
+ "thiserror",
2819
+ "tokio",
2820
+ "tokio-util",
2821
+ "tracing",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "thiserror"
2826
+ version = "2.0.12"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2829
+ dependencies = [
2830
+ "thiserror-impl",
2831
+ ]
2832
+
2833
+ [[package]]
2834
+ name = "thiserror-impl"
2835
+ version = "2.0.12"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2838
+ dependencies = [
2839
+ "proc-macro2",
2840
+ "quote",
2841
+ "syn",
2842
+ ]
2843
+
2844
+ [[package]]
2845
+ name = "thread_local"
2846
+ version = "1.1.8"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2849
+ dependencies = [
2850
+ "cfg-if",
2851
+ "once_cell",
2852
+ ]
2853
+
2854
+ [[package]]
2855
+ name = "time"
2856
+ version = "0.3.41"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2859
+ dependencies = [
2860
+ "deranged",
2861
+ "num-conv",
2862
+ "powerfmt",
2863
+ "time-core",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "time-core"
2868
+ version = "0.1.4"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2871
+
2872
+ [[package]]
2873
+ name = "tinystr"
2874
+ version = "0.7.6"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2877
+ dependencies = [
2878
+ "displaydoc",
2879
+ "zerovec",
2880
+ ]
2881
+
2882
+ [[package]]
2883
+ name = "tinytemplate"
2884
+ version = "1.2.1"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2887
+ dependencies = [
2888
+ "serde",
2889
+ "serde_json",
2890
+ ]
2891
+
2892
+ [[package]]
2893
+ name = "tokio"
2894
+ version = "1.44.2"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
2897
+ dependencies = [
2898
+ "backtrace",
2899
+ "bytes",
2900
+ "libc",
2901
+ "mio",
2902
+ "pin-project-lite",
2903
+ "signal-hook-registry",
2904
+ "socket2",
2905
+ "tokio-macros",
2906
+ "windows-sys 0.52.0",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "tokio-macros"
2911
+ version = "2.5.0"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2914
+ dependencies = [
2915
+ "proc-macro2",
2916
+ "quote",
2917
+ "syn",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "tokio-rustls"
2922
+ version = "0.26.2"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
2925
+ dependencies = [
2926
+ "rustls",
2927
+ "tokio",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "tokio-stream"
2932
+ version = "0.1.17"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2935
+ dependencies = [
2936
+ "futures-core",
2937
+ "pin-project-lite",
2938
+ "tokio",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "tokio-util"
2943
+ version = "0.7.15"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2946
+ dependencies = [
2947
+ "bytes",
2948
+ "futures-core",
2949
+ "futures-sink",
2950
+ "pin-project-lite",
2951
+ "tokio",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "toml"
2956
+ version = "0.8.20"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
2959
+ dependencies = [
2960
+ "serde",
2961
+ "serde_spanned",
2962
+ "toml_datetime",
2963
+ "toml_edit",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "toml_datetime"
2968
+ version = "0.6.8"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
2971
+ dependencies = [
2972
+ "serde",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "toml_edit"
2977
+ version = "0.22.24"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
2980
+ dependencies = [
2981
+ "indexmap 2.9.0",
2982
+ "serde",
2983
+ "serde_spanned",
2984
+ "toml_datetime",
2985
+ "winnow 0.7.6",
2986
+ ]
2987
+
2988
+ [[package]]
2989
+ name = "tonic"
2990
+ version = "0.12.3"
2991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
+ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2993
+ dependencies = [
2994
+ "async-trait",
2995
+ "base64",
2996
+ "bytes",
2997
+ "http",
2998
+ "http-body",
2999
+ "http-body-util",
3000
+ "hyper",
3001
+ "hyper-timeout",
3002
+ "hyper-util",
3003
+ "percent-encoding",
3004
+ "pin-project",
3005
+ "prost",
3006
+ "tokio",
3007
+ "tokio-stream",
3008
+ "tower 0.4.13",
3009
+ "tower-layer",
3010
+ "tower-service",
3011
+ "tracing",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "tonic"
3016
+ version = "0.13.0"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "85839f0b32fd242bb3209262371d07feda6d780d16ee9d2bc88581b89da1549b"
3019
+ dependencies = [
3020
+ "async-trait",
3021
+ "axum",
3022
+ "base64",
3023
+ "bytes",
3024
+ "h2",
3025
+ "http",
3026
+ "http-body",
3027
+ "http-body-util",
3028
+ "hyper",
3029
+ "hyper-timeout",
3030
+ "hyper-util",
3031
+ "percent-encoding",
3032
+ "pin-project",
3033
+ "prost",
3034
+ "socket2",
3035
+ "tokio",
3036
+ "tokio-stream",
3037
+ "tower 0.5.2",
3038
+ "tower-layer",
3039
+ "tower-service",
3040
+ "tracing",
3041
+ ]
3042
+
3043
+ [[package]]
3044
+ name = "tonic-build"
3045
+ version = "0.13.0"
3046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3047
+ checksum = "d85f0383fadd15609306383a90e85eaed44169f931a5d2be1b42c76ceff1825e"
3048
+ dependencies = [
3049
+ "prettyplease",
3050
+ "proc-macro2",
3051
+ "prost-build",
3052
+ "prost-types",
3053
+ "quote",
3054
+ "syn",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "tonic-tls"
3059
+ version = "0.3.0"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "e96bedfe5ae00cd370db4029612380c267bc224b2d45f1d35402b6b588e68d7b"
3062
+ dependencies = [
3063
+ "async-stream",
3064
+ "futures",
3065
+ "hyper",
3066
+ "hyper-util",
3067
+ "tokio",
3068
+ "tokio-rustls",
3069
+ "tonic 0.13.0",
3070
+ "tower 0.5.2",
3071
+ "tracing",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "tower"
3076
+ version = "0.4.13"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3079
+ dependencies = [
3080
+ "futures-core",
3081
+ "futures-util",
3082
+ "indexmap 1.9.3",
3083
+ "pin-project",
3084
+ "pin-project-lite",
3085
+ "rand 0.8.5",
3086
+ "slab",
3087
+ "tokio",
3088
+ "tokio-util",
3089
+ "tower-layer",
3090
+ "tower-service",
3091
+ "tracing",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "tower"
3096
+ version = "0.5.2"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3099
+ dependencies = [
3100
+ "futures-core",
3101
+ "futures-util",
3102
+ "indexmap 2.9.0",
3103
+ "pin-project-lite",
3104
+ "slab",
3105
+ "sync_wrapper",
3106
+ "tokio",
3107
+ "tokio-util",
3108
+ "tower-layer",
3109
+ "tower-service",
3110
+ "tracing",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "tower-http"
3115
+ version = "0.6.2"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697"
3118
+ dependencies = [
3119
+ "base64",
3120
+ "bitflags",
3121
+ "bytes",
3122
+ "http",
3123
+ "mime",
3124
+ "pin-project-lite",
3125
+ "tower-layer",
3126
+ "tower-service",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "tower-layer"
3131
+ version = "0.3.3"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3134
+
3135
+ [[package]]
3136
+ name = "tower-reqwest"
3137
+ version = "0.4.1"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "966a4ddeb14dcfba82239db8c6cb7a3890abfec7fb615bd2362bb33a17602df6"
3140
+ dependencies = [
3141
+ "bytes",
3142
+ "futures-util",
3143
+ "http",
3144
+ "http-body",
3145
+ "http-body-util",
3146
+ "include-utils",
3147
+ "pin-project",
3148
+ "reqwest",
3149
+ "thiserror",
3150
+ "tower-layer",
3151
+ "tower-service",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "tower-service"
3156
+ version = "0.3.3"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3159
+
3160
+ [[package]]
3161
+ name = "tracing"
3162
+ version = "0.1.41"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3165
+ dependencies = [
3166
+ "pin-project-lite",
3167
+ "tracing-attributes",
3168
+ "tracing-core",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "tracing-attributes"
3173
+ version = "0.1.28"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3176
+ dependencies = [
3177
+ "proc-macro2",
3178
+ "quote",
3179
+ "syn",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "tracing-core"
3184
+ version = "0.1.33"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3187
+ dependencies = [
3188
+ "once_cell",
3189
+ "valuable",
3190
+ ]
3191
+
3192
+ [[package]]
3193
+ name = "tracing-log"
3194
+ version = "0.2.0"
3195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3196
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3197
+ dependencies = [
3198
+ "log",
3199
+ "once_cell",
3200
+ "tracing-core",
3201
+ ]
3202
+
3203
+ [[package]]
3204
+ name = "tracing-opentelemetry"
3205
+ version = "0.30.0"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "fd8e764bd6f5813fd8bebc3117875190c5b0415be8f7f8059bffb6ecd979c444"
3208
+ dependencies = [
3209
+ "js-sys",
3210
+ "once_cell",
3211
+ "opentelemetry",
3212
+ "opentelemetry_sdk",
3213
+ "smallvec",
3214
+ "tracing",
3215
+ "tracing-core",
3216
+ "tracing-log",
3217
+ "tracing-subscriber",
3218
+ "web-time",
3219
+ ]
3220
+
3221
+ [[package]]
3222
+ name = "tracing-subscriber"
3223
+ version = "0.3.19"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3226
+ dependencies = [
3227
+ "matchers",
3228
+ "nu-ansi-term",
3229
+ "once_cell",
3230
+ "regex",
3231
+ "sharded-slab",
3232
+ "smallvec",
3233
+ "thread_local",
3234
+ "tracing",
3235
+ "tracing-core",
3236
+ "tracing-log",
3237
+ ]
3238
+
3239
+ [[package]]
3240
+ name = "tracing-test"
3241
+ version = "0.2.5"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "557b891436fe0d5e0e363427fc7f217abf9ccd510d5136549847bdcbcd011d68"
3244
+ dependencies = [
3245
+ "tracing-core",
3246
+ "tracing-subscriber",
3247
+ "tracing-test-macro",
3248
+ ]
3249
+
3250
+ [[package]]
3251
+ name = "tracing-test-macro"
3252
+ version = "0.2.5"
3253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
+ checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
3255
+ dependencies = [
3256
+ "quote",
3257
+ "syn",
3258
+ ]
3259
+
3260
+ [[package]]
3261
+ name = "try-lock"
3262
+ version = "0.2.5"
3263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3264
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3265
+
3266
+ [[package]]
3267
+ name = "unicode-ident"
3268
+ version = "1.0.18"
3269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3271
+
3272
+ [[package]]
3273
+ name = "unicode-width"
3274
+ version = "0.2.0"
3275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3277
+
3278
+ [[package]]
3279
+ name = "unindent"
3280
+ version = "0.2.4"
3281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3282
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3283
+
3284
+ [[package]]
3285
+ name = "unsafe-libyaml"
3286
+ version = "0.2.11"
3287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3288
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3289
+
3290
+ [[package]]
3291
+ name = "untrusted"
3292
+ version = "0.9.0"
3293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3294
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3295
+
3296
+ [[package]]
3297
+ name = "url"
3298
+ version = "2.5.4"
3299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3300
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3301
+ dependencies = [
3302
+ "form_urlencoded",
3303
+ "idna",
3304
+ "percent-encoding",
3305
+ ]
3306
+
3307
+ [[package]]
3308
+ name = "utf16_iter"
3309
+ version = "1.0.5"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3312
+
3313
+ [[package]]
3314
+ name = "utf8_iter"
3315
+ version = "1.0.4"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3318
+
3319
+ [[package]]
3320
+ name = "utf8parse"
3321
+ version = "0.2.2"
3322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3323
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3324
+
3325
+ [[package]]
3326
+ name = "uuid"
3327
+ version = "1.16.0"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3330
+ dependencies = [
3331
+ "getrandom 0.3.2",
3332
+ ]
3333
+
3334
+ [[package]]
3335
+ name = "valuable"
3336
+ version = "0.1.1"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3339
+
3340
+ [[package]]
3341
+ name = "walkdir"
3342
+ version = "2.5.0"
3343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3344
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3345
+ dependencies = [
3346
+ "same-file",
3347
+ "winapi-util",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "want"
3352
+ version = "0.3.1"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3355
+ dependencies = [
3356
+ "try-lock",
3357
+ ]
3358
+
3359
+ [[package]]
3360
+ name = "wasi"
3361
+ version = "0.11.0+wasi-snapshot-preview1"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3364
+
3365
+ [[package]]
3366
+ name = "wasi"
3367
+ version = "0.14.2+wasi-0.2.4"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3370
+ dependencies = [
3371
+ "wit-bindgen-rt",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "wasm-bindgen"
3376
+ version = "0.2.100"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3379
+ dependencies = [
3380
+ "cfg-if",
3381
+ "once_cell",
3382
+ "rustversion",
3383
+ "wasm-bindgen-macro",
3384
+ ]
3385
+
3386
+ [[package]]
3387
+ name = "wasm-bindgen-backend"
3388
+ version = "0.2.100"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3391
+ dependencies = [
3392
+ "bumpalo",
3393
+ "log",
3394
+ "proc-macro2",
3395
+ "quote",
3396
+ "syn",
3397
+ "wasm-bindgen-shared",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "wasm-bindgen-futures"
3402
+ version = "0.4.50"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3405
+ dependencies = [
3406
+ "cfg-if",
3407
+ "js-sys",
3408
+ "once_cell",
3409
+ "wasm-bindgen",
3410
+ "web-sys",
3411
+ ]
3412
+
3413
+ [[package]]
3414
+ name = "wasm-bindgen-macro"
3415
+ version = "0.2.100"
3416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3417
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3418
+ dependencies = [
3419
+ "quote",
3420
+ "wasm-bindgen-macro-support",
3421
+ ]
3422
+
3423
+ [[package]]
3424
+ name = "wasm-bindgen-macro-support"
3425
+ version = "0.2.100"
3426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3427
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3428
+ dependencies = [
3429
+ "proc-macro2",
3430
+ "quote",
3431
+ "syn",
3432
+ "wasm-bindgen-backend",
3433
+ "wasm-bindgen-shared",
3434
+ ]
3435
+
3436
+ [[package]]
3437
+ name = "wasm-bindgen-shared"
3438
+ version = "0.2.100"
3439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3440
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3441
+ dependencies = [
3442
+ "unicode-ident",
3443
+ ]
3444
+
3445
+ [[package]]
3446
+ name = "wasm-streams"
3447
+ version = "0.4.2"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3450
+ dependencies = [
3451
+ "futures-util",
3452
+ "js-sys",
3453
+ "wasm-bindgen",
3454
+ "wasm-bindgen-futures",
3455
+ "web-sys",
3456
+ ]
3457
+
3458
+ [[package]]
3459
+ name = "web-sys"
3460
+ version = "0.3.77"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3463
+ dependencies = [
3464
+ "js-sys",
3465
+ "wasm-bindgen",
3466
+ ]
3467
+
3468
+ [[package]]
3469
+ name = "web-time"
3470
+ version = "1.1.0"
3471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3472
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3473
+ dependencies = [
3474
+ "js-sys",
3475
+ "wasm-bindgen",
3476
+ ]
3477
+
3478
+ [[package]]
3479
+ name = "which"
3480
+ version = "4.4.2"
3481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3482
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3483
+ dependencies = [
3484
+ "either",
3485
+ "home",
3486
+ "once_cell",
3487
+ "rustix 0.38.44",
3488
+ ]
3489
+
3490
+ [[package]]
3491
+ name = "winapi"
3492
+ version = "0.3.9"
3493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3494
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3495
+ dependencies = [
3496
+ "winapi-i686-pc-windows-gnu",
3497
+ "winapi-x86_64-pc-windows-gnu",
3498
+ ]
3499
+
3500
+ [[package]]
3501
+ name = "winapi-i686-pc-windows-gnu"
3502
+ version = "0.4.0"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3505
+
3506
+ [[package]]
3507
+ name = "winapi-util"
3508
+ version = "0.1.9"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3511
+ dependencies = [
3512
+ "windows-sys 0.59.0",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "winapi-x86_64-pc-windows-gnu"
3517
+ version = "0.4.0"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3520
+
3521
+ [[package]]
3522
+ name = "windows-core"
3523
+ version = "0.61.0"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3526
+ dependencies = [
3527
+ "windows-implement",
3528
+ "windows-interface",
3529
+ "windows-link",
3530
+ "windows-result",
3531
+ "windows-strings 0.4.0",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "windows-implement"
3536
+ version = "0.60.0"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3539
+ dependencies = [
3540
+ "proc-macro2",
3541
+ "quote",
3542
+ "syn",
3543
+ ]
3544
+
3545
+ [[package]]
3546
+ name = "windows-interface"
3547
+ version = "0.59.1"
3548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3549
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3550
+ dependencies = [
3551
+ "proc-macro2",
3552
+ "quote",
3553
+ "syn",
3554
+ ]
3555
+
3556
+ [[package]]
3557
+ name = "windows-link"
3558
+ version = "0.1.1"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3561
+
3562
+ [[package]]
3563
+ name = "windows-registry"
3564
+ version = "0.4.0"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3567
+ dependencies = [
3568
+ "windows-result",
3569
+ "windows-strings 0.3.1",
3570
+ "windows-targets 0.53.0",
3571
+ ]
3572
+
3573
+ [[package]]
3574
+ name = "windows-result"
3575
+ version = "0.3.2"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3578
+ dependencies = [
3579
+ "windows-link",
3580
+ ]
3581
+
3582
+ [[package]]
3583
+ name = "windows-strings"
3584
+ version = "0.3.1"
3585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3586
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
3587
+ dependencies = [
3588
+ "windows-link",
3589
+ ]
3590
+
3591
+ [[package]]
3592
+ name = "windows-strings"
3593
+ version = "0.4.0"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
3596
+ dependencies = [
3597
+ "windows-link",
3598
+ ]
3599
+
3600
+ [[package]]
3601
+ name = "windows-sys"
3602
+ version = "0.52.0"
3603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3604
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3605
+ dependencies = [
3606
+ "windows-targets 0.52.6",
3607
+ ]
3608
+
3609
+ [[package]]
3610
+ name = "windows-sys"
3611
+ version = "0.59.0"
3612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3613
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3614
+ dependencies = [
3615
+ "windows-targets 0.52.6",
3616
+ ]
3617
+
3618
+ [[package]]
3619
+ name = "windows-targets"
3620
+ version = "0.52.6"
3621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3622
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3623
+ dependencies = [
3624
+ "windows_aarch64_gnullvm 0.52.6",
3625
+ "windows_aarch64_msvc 0.52.6",
3626
+ "windows_i686_gnu 0.52.6",
3627
+ "windows_i686_gnullvm 0.52.6",
3628
+ "windows_i686_msvc 0.52.6",
3629
+ "windows_x86_64_gnu 0.52.6",
3630
+ "windows_x86_64_gnullvm 0.52.6",
3631
+ "windows_x86_64_msvc 0.52.6",
3632
+ ]
3633
+
3634
+ [[package]]
3635
+ name = "windows-targets"
3636
+ version = "0.53.0"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
3639
+ dependencies = [
3640
+ "windows_aarch64_gnullvm 0.53.0",
3641
+ "windows_aarch64_msvc 0.53.0",
3642
+ "windows_i686_gnu 0.53.0",
3643
+ "windows_i686_gnullvm 0.53.0",
3644
+ "windows_i686_msvc 0.53.0",
3645
+ "windows_x86_64_gnu 0.53.0",
3646
+ "windows_x86_64_gnullvm 0.53.0",
3647
+ "windows_x86_64_msvc 0.53.0",
3648
+ ]
3649
+
3650
+ [[package]]
3651
+ name = "windows_aarch64_gnullvm"
3652
+ version = "0.52.6"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3655
+
3656
+ [[package]]
3657
+ name = "windows_aarch64_gnullvm"
3658
+ version = "0.53.0"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3661
+
3662
+ [[package]]
3663
+ name = "windows_aarch64_msvc"
3664
+ version = "0.52.6"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3667
+
3668
+ [[package]]
3669
+ name = "windows_aarch64_msvc"
3670
+ version = "0.53.0"
3671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3672
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3673
+
3674
+ [[package]]
3675
+ name = "windows_i686_gnu"
3676
+ version = "0.52.6"
3677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3678
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3679
+
3680
+ [[package]]
3681
+ name = "windows_i686_gnu"
3682
+ version = "0.53.0"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3685
+
3686
+ [[package]]
3687
+ name = "windows_i686_gnullvm"
3688
+ version = "0.52.6"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3691
+
3692
+ [[package]]
3693
+ name = "windows_i686_gnullvm"
3694
+ version = "0.53.0"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3697
+
3698
+ [[package]]
3699
+ name = "windows_i686_msvc"
3700
+ version = "0.52.6"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3703
+
3704
+ [[package]]
3705
+ name = "windows_i686_msvc"
3706
+ version = "0.53.0"
3707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3708
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3709
+
3710
+ [[package]]
3711
+ name = "windows_x86_64_gnu"
3712
+ version = "0.52.6"
3713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3714
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3715
+
3716
+ [[package]]
3717
+ name = "windows_x86_64_gnu"
3718
+ version = "0.53.0"
3719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3720
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3721
+
3722
+ [[package]]
3723
+ name = "windows_x86_64_gnullvm"
3724
+ version = "0.52.6"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3727
+
3728
+ [[package]]
3729
+ name = "windows_x86_64_gnullvm"
3730
+ version = "0.53.0"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3733
+
3734
+ [[package]]
3735
+ name = "windows_x86_64_msvc"
3736
+ version = "0.52.6"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3739
+
3740
+ [[package]]
3741
+ name = "windows_x86_64_msvc"
3742
+ version = "0.53.0"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3745
+
3746
+ [[package]]
3747
+ name = "winnow"
3748
+ version = "0.6.26"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28"
3751
+ dependencies = [
3752
+ "memchr",
3753
+ ]
3754
+
3755
+ [[package]]
3756
+ name = "winnow"
3757
+ version = "0.7.6"
3758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3759
+ checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
3760
+ dependencies = [
3761
+ "memchr",
3762
+ ]
3763
+
3764
+ [[package]]
3765
+ name = "wit-bindgen-rt"
3766
+ version = "0.39.0"
3767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3768
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3769
+ dependencies = [
3770
+ "bitflags",
3771
+ ]
3772
+
3773
+ [[package]]
3774
+ name = "write16"
3775
+ version = "1.0.0"
3776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3777
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
3778
+
3779
+ [[package]]
3780
+ name = "writeable"
3781
+ version = "0.5.5"
3782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3783
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
3784
+
3785
+ [[package]]
3786
+ name = "yoke"
3787
+ version = "0.7.5"
3788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3789
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
3790
+ dependencies = [
3791
+ "serde",
3792
+ "stable_deref_trait",
3793
+ "yoke-derive",
3794
+ "zerofrom",
3795
+ ]
3796
+
3797
+ [[package]]
3798
+ name = "yoke-derive"
3799
+ version = "0.7.5"
3800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3801
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
3802
+ dependencies = [
3803
+ "proc-macro2",
3804
+ "quote",
3805
+ "syn",
3806
+ "synstructure",
3807
+ ]
3808
+
3809
+ [[package]]
3810
+ name = "zerocopy"
3811
+ version = "0.8.24"
3812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3813
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3814
+ dependencies = [
3815
+ "zerocopy-derive",
3816
+ ]
3817
+
3818
+ [[package]]
3819
+ name = "zerocopy-derive"
3820
+ version = "0.8.24"
3821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3822
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3823
+ dependencies = [
3824
+ "proc-macro2",
3825
+ "quote",
3826
+ "syn",
3827
+ ]
3828
+
3829
+ [[package]]
3830
+ name = "zerofrom"
3831
+ version = "0.1.6"
3832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3833
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3834
+ dependencies = [
3835
+ "zerofrom-derive",
3836
+ ]
3837
+
3838
+ [[package]]
3839
+ name = "zerofrom-derive"
3840
+ version = "0.1.6"
3841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3842
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3843
+ dependencies = [
3844
+ "proc-macro2",
3845
+ "quote",
3846
+ "syn",
3847
+ "synstructure",
3848
+ ]
3849
+
3850
+ [[package]]
3851
+ name = "zeroize"
3852
+ version = "1.8.1"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
3855
+
3856
+ [[package]]
3857
+ name = "zerovec"
3858
+ version = "0.10.4"
3859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3860
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
3861
+ dependencies = [
3862
+ "yoke",
3863
+ "zerofrom",
3864
+ "zerovec-derive",
3865
+ ]
3866
+
3867
+ [[package]]
3868
+ name = "zerovec-derive"
3869
+ version = "0.10.3"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3872
+ dependencies = [
3873
+ "proc-macro2",
3874
+ "quote",
3875
+ "syn",
3876
+ ]