dagron 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. dagron-0.1.0/Cargo.lock +2075 -0
  2. dagron-0.1.0/Cargo.toml +19 -0
  3. dagron-0.1.0/LICENSE +21 -0
  4. dagron-0.1.0/PKG-INFO +249 -0
  5. dagron-0.1.0/README.md +204 -0
  6. dagron-0.1.0/crates/dagron-core/Cargo.toml +30 -0
  7. dagron-0.1.0/crates/dagron-core/benches/graph_bench.rs +314 -0
  8. dagron-0.1.0/crates/dagron-core/src/algorithms/cycle.rs +130 -0
  9. dagron-0.1.0/crates/dagron-core/src/algorithms/diff.rs +73 -0
  10. dagron-0.1.0/crates/dagron-core/src/algorithms/dominators.rs +136 -0
  11. dagron-0.1.0/crates/dagron-core/src/algorithms/incremental.rs +167 -0
  12. dagron-0.1.0/crates/dagron-core/src/algorithms/mod.rs +30 -0
  13. dagron-0.1.0/crates/dagron-core/src/algorithms/partition.rs +525 -0
  14. dagron-0.1.0/crates/dagron-core/src/algorithms/paths.rs +344 -0
  15. dagron-0.1.0/crates/dagron-core/src/algorithms/priority_toposort.rs +289 -0
  16. dagron-0.1.0/crates/dagron-core/src/algorithms/reachability.rs +249 -0
  17. dagron-0.1.0/crates/dagron-core/src/algorithms/scheduling.rs +527 -0
  18. dagron-0.1.0/crates/dagron-core/src/algorithms/subgraph.rs +161 -0
  19. dagron-0.1.0/crates/dagron-core/src/algorithms/toposort.rs +410 -0
  20. dagron-0.1.0/crates/dagron-core/src/algorithms/transforms.rs +209 -0
  21. dagron-0.1.0/crates/dagron-core/src/algorithms/traversal.rs +120 -0
  22. dagron-0.1.0/crates/dagron-core/src/errors.rs +17 -0
  23. dagron-0.1.0/crates/dagron-core/src/graph/cache.rs +119 -0
  24. dagron-0.1.0/crates/dagron-core/src/graph/concurrent.rs +70 -0
  25. dagron-0.1.0/crates/dagron-core/src/graph/construction.rs +95 -0
  26. dagron-0.1.0/crates/dagron-core/src/graph/diff.rs +65 -0
  27. dagron-0.1.0/crates/dagron-core/src/graph/incremental.rs +55 -0
  28. dagron-0.1.0/crates/dagron-core/src/graph/introspection.rs +195 -0
  29. dagron-0.1.0/crates/dagron-core/src/graph/matching.rs +59 -0
  30. dagron-0.1.0/crates/dagron-core/src/graph/mod.rs +173 -0
  31. dagron-0.1.0/crates/dagron-core/src/graph/partition.rs +100 -0
  32. dagron-0.1.0/crates/dagron-core/src/graph/paths.rs +87 -0
  33. dagron-0.1.0/crates/dagron-core/src/graph/reachability.rs +27 -0
  34. dagron-0.1.0/crates/dagron-core/src/graph/scheduling.rs +199 -0
  35. dagron-0.1.0/crates/dagron-core/src/graph/serialization.rs +370 -0
  36. dagron-0.1.0/crates/dagron-core/src/graph/stats.rs +169 -0
  37. dagron-0.1.0/crates/dagron-core/src/graph/subgraph.rs +58 -0
  38. dagron-0.1.0/crates/dagron-core/src/graph/toposort.rs +101 -0
  39. dagron-0.1.0/crates/dagron-core/src/graph/transforms.rs +357 -0
  40. dagron-0.1.0/crates/dagron-core/src/graph/validation.rs +33 -0
  41. dagron-0.1.0/crates/dagron-core/src/lib.rs +20 -0
  42. dagron-0.1.0/crates/dagron-core/src/node.rs +19 -0
  43. dagron-0.1.0/crates/dagron-core/src/types.rs +20 -0
  44. dagron-0.1.0/crates/dagron-core/tests/cache.rs +178 -0
  45. dagron-0.1.0/crates/dagron-core/tests/concurrent.rs +226 -0
  46. dagron-0.1.0/crates/dagron-core/tests/construction.rs +128 -0
  47. dagron-0.1.0/crates/dagron-core/tests/incremental.rs +92 -0
  48. dagron-0.1.0/crates/dagron-core/tests/introspection.rs +172 -0
  49. dagron-0.1.0/crates/dagron-core/tests/matching.rs +95 -0
  50. dagron-0.1.0/crates/dagron-core/tests/paths.rs +154 -0
  51. dagron-0.1.0/crates/dagron-core/tests/priority_toposort.rs +142 -0
  52. dagron-0.1.0/crates/dagron-core/tests/reachability.rs +175 -0
  53. dagron-0.1.0/crates/dagron-core/tests/scheduling.rs +191 -0
  54. dagron-0.1.0/crates/dagron-core/tests/serialization.rs +357 -0
  55. dagron-0.1.0/crates/dagron-core/tests/stats.rs +111 -0
  56. dagron-0.1.0/crates/dagron-core/tests/subgraph.rs +154 -0
  57. dagron-0.1.0/crates/dagron-core/tests/toposort.rs +142 -0
  58. dagron-0.1.0/crates/dagron-core/tests/transforms.rs +478 -0
  59. dagron-0.1.0/crates/dagron-core/tests/validation.rs +73 -0
  60. dagron-0.1.0/crates/dagron-py/Cargo.toml +20 -0
  61. dagron-0.1.0/crates/dagron-py/src/construction.rs +193 -0
  62. dagron-0.1.0/crates/dagron-py/src/dag.rs +46 -0
  63. dagron-0.1.0/crates/dagron-py/src/dashboard.rs +156 -0
  64. dagron-0.1.0/crates/dagron-py/src/diff.rs +180 -0
  65. dagron-0.1.0/crates/dagron-py/src/errors.rs +52 -0
  66. dagron-0.1.0/crates/dagron-py/src/incremental.rs +41 -0
  67. dagron-0.1.0/crates/dagron-py/src/introspection.rs +222 -0
  68. dagron-0.1.0/crates/dagron-py/src/iterators.rs +130 -0
  69. dagron-0.1.0/crates/dagron-py/src/lib.rs +64 -0
  70. dagron-0.1.0/crates/dagron-py/src/matching.rs +44 -0
  71. dagron-0.1.0/crates/dagron-py/src/node.rs +30 -0
  72. dagron-0.1.0/crates/dagron-py/src/partition.rs +165 -0
  73. dagron-0.1.0/crates/dagron-py/src/paths.rs +93 -0
  74. dagron-0.1.0/crates/dagron-py/src/payload.rs +16 -0
  75. dagron-0.1.0/crates/dagron-py/src/protocols.rs +65 -0
  76. dagron-0.1.0/crates/dagron-py/src/reachability.rs +138 -0
  77. dagron-0.1.0/crates/dagron-py/src/scheduling.rs +273 -0
  78. dagron-0.1.0/crates/dagron-py/src/serialization.rs +366 -0
  79. dagron-0.1.0/crates/dagron-py/src/stats.rs +193 -0
  80. dagron-0.1.0/crates/dagron-py/src/subgraph.rs +103 -0
  81. dagron-0.1.0/crates/dagron-py/src/toposort.rs +108 -0
  82. dagron-0.1.0/crates/dagron-py/src/transforms.rs +443 -0
  83. dagron-0.1.0/crates/dagron-py/src/validation.rs +20 -0
  84. dagron-0.1.0/py_src/dagron/__init__.py +230 -0
  85. dagron-0.1.0/py_src/dagron/__init__.pyi +230 -0
  86. dagron-0.1.0/py_src/dagron/_internal.pyi +414 -0
  87. dagron-0.1.0/py_src/dagron/_patches.py +17 -0
  88. dagron-0.1.0/py_src/dagron/analysis/__init__.py +23 -0
  89. dagron-0.1.0/py_src/dagron/analysis/explain.py +291 -0
  90. dagron-0.1.0/py_src/dagron/analysis/lineage.py +250 -0
  91. dagron-0.1.0/py_src/dagron/analysis/linting.py +337 -0
  92. dagron-0.1.0/py_src/dagron/analysis/query.py +233 -0
  93. dagron-0.1.0/py_src/dagron/builder.py +128 -0
  94. dagron-0.1.0/py_src/dagron/builder.pyi +33 -0
  95. dagron-0.1.0/py_src/dagron/compose.py +62 -0
  96. dagron-0.1.0/py_src/dagron/contracts.py +208 -0
  97. dagron-0.1.0/py_src/dagron/dashboard/__init__.py +152 -0
  98. dagron-0.1.0/py_src/dagron/dataframe.py +228 -0
  99. dagron-0.1.0/py_src/dagron/display.py +278 -0
  100. dagron-0.1.0/py_src/dagron/execution/__init__.py +97 -0
  101. dagron-0.1.0/py_src/dagron/execution/_helpers.py +66 -0
  102. dagron-0.1.0/py_src/dagron/execution/_types.py +65 -0
  103. dagron-0.1.0/py_src/dagron/execution/backends/__init__.py +15 -0
  104. dagron-0.1.0/py_src/dagron/execution/backends/base.py +57 -0
  105. dagron-0.1.0/py_src/dagron/execution/backends/celery.py +47 -0
  106. dagron-0.1.0/py_src/dagron/execution/backends/multiprocessing.py +42 -0
  107. dagron-0.1.0/py_src/dagron/execution/backends/ray.py +46 -0
  108. dagron-0.1.0/py_src/dagron/execution/backends/thread.py +42 -0
  109. dagron-0.1.0/py_src/dagron/execution/cached_executor.py +201 -0
  110. dagron-0.1.0/py_src/dagron/execution/checkpoint.py +283 -0
  111. dagron-0.1.0/py_src/dagron/execution/conditions.py +246 -0
  112. dagron-0.1.0/py_src/dagron/execution/content_cache.py +356 -0
  113. dagron-0.1.0/py_src/dagron/execution/distributed.py +173 -0
  114. dagron-0.1.0/py_src/dagron/execution/distributed_executor.py +211 -0
  115. dagron-0.1.0/py_src/dagron/execution/dynamic.py +280 -0
  116. dagron-0.1.0/py_src/dagron/execution/executor.py +464 -0
  117. dagron-0.1.0/py_src/dagron/execution/gates.py +298 -0
  118. dagron-0.1.0/py_src/dagron/execution/incremental.py +217 -0
  119. dagron-0.1.0/py_src/dagron/execution/pipeline.py +324 -0
  120. dagron-0.1.0/py_src/dagron/execution/profiling.py +185 -0
  121. dagron-0.1.0/py_src/dagron/execution/reactive.py +290 -0
  122. dagron-0.1.0/py_src/dagron/execution/resources.py +649 -0
  123. dagron-0.1.0/py_src/dagron/execution/tracing.py +214 -0
  124. dagron-0.1.0/py_src/dagron/integration.py +64 -0
  125. dagron-0.1.0/py_src/dagron/plugins/__init__.py +18 -0
  126. dagron-0.1.0/py_src/dagron/plugins/base.py +29 -0
  127. dagron-0.1.0/py_src/dagron/plugins/hooks.py +104 -0
  128. dagron-0.1.0/py_src/dagron/plugins/manager.py +114 -0
  129. dagron-0.1.0/py_src/dagron/plugins/registry.py +85 -0
  130. dagron-0.1.0/py_src/dagron/py.typed +0 -0
  131. dagron-0.1.0/py_src/dagron/template.py +241 -0
  132. dagron-0.1.0/py_src/dagron/versioning.py +291 -0
  133. dagron-0.1.0/pyproject.toml +127 -0
@@ -0,0 +1,2075 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "anes"
29
+ version = "0.1.6"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
32
+
33
+ [[package]]
34
+ name = "anstyle"
35
+ version = "1.0.14"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
38
+
39
+ [[package]]
40
+ name = "async-stream"
41
+ version = "0.3.6"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
44
+ dependencies = [
45
+ "async-stream-impl",
46
+ "futures-core",
47
+ "pin-project-lite",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "async-stream-impl"
52
+ version = "0.3.6"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
55
+ dependencies = [
56
+ "proc-macro2",
57
+ "quote",
58
+ "syn",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "atomic-waker"
63
+ version = "1.1.2"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
66
+
67
+ [[package]]
68
+ name = "autocfg"
69
+ version = "1.5.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
72
+
73
+ [[package]]
74
+ name = "axum"
75
+ version = "0.8.9"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
78
+ dependencies = [
79
+ "axum-core",
80
+ "bytes",
81
+ "form_urlencoded",
82
+ "futures-util",
83
+ "http",
84
+ "http-body",
85
+ "http-body-util",
86
+ "hyper",
87
+ "hyper-util",
88
+ "itoa",
89
+ "matchit",
90
+ "memchr",
91
+ "mime",
92
+ "percent-encoding",
93
+ "pin-project-lite",
94
+ "serde_core",
95
+ "serde_json",
96
+ "serde_path_to_error",
97
+ "serde_urlencoded",
98
+ "sync_wrapper",
99
+ "tokio",
100
+ "tower",
101
+ "tower-layer",
102
+ "tower-service",
103
+ "tracing",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "axum-core"
108
+ version = "0.5.6"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
111
+ dependencies = [
112
+ "bytes",
113
+ "futures-core",
114
+ "http",
115
+ "http-body",
116
+ "http-body-util",
117
+ "mime",
118
+ "pin-project-lite",
119
+ "sync_wrapper",
120
+ "tower-layer",
121
+ "tower-service",
122
+ "tracing",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "base64"
127
+ version = "0.22.1"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
130
+
131
+ [[package]]
132
+ name = "bincode"
133
+ version = "1.3.3"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
136
+ dependencies = [
137
+ "serde",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "bitflags"
142
+ version = "2.11.1"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
145
+
146
+ [[package]]
147
+ name = "bumpalo"
148
+ version = "3.20.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
151
+
152
+ [[package]]
153
+ name = "bytes"
154
+ version = "1.11.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
157
+
158
+ [[package]]
159
+ name = "cast"
160
+ version = "0.3.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
163
+
164
+ [[package]]
165
+ name = "cc"
166
+ version = "1.2.62"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
169
+ dependencies = [
170
+ "find-msvc-tools",
171
+ "shlex",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "cfg-if"
176
+ version = "1.0.4"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
179
+
180
+ [[package]]
181
+ name = "cfg_aliases"
182
+ version = "0.2.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
185
+
186
+ [[package]]
187
+ name = "ciborium"
188
+ version = "0.2.2"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
191
+ dependencies = [
192
+ "ciborium-io",
193
+ "ciborium-ll",
194
+ "serde",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "ciborium-io"
199
+ version = "0.2.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
202
+
203
+ [[package]]
204
+ name = "ciborium-ll"
205
+ version = "0.2.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
208
+ dependencies = [
209
+ "ciborium-io",
210
+ "half",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "clap"
215
+ version = "4.6.1"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
218
+ dependencies = [
219
+ "clap_builder",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "clap_builder"
224
+ version = "4.6.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
227
+ dependencies = [
228
+ "anstyle",
229
+ "clap_lex",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "clap_lex"
234
+ version = "1.1.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
237
+
238
+ [[package]]
239
+ name = "criterion"
240
+ version = "0.5.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
243
+ dependencies = [
244
+ "anes",
245
+ "cast",
246
+ "ciborium",
247
+ "clap",
248
+ "criterion-plot",
249
+ "is-terminal",
250
+ "itertools",
251
+ "num-traits",
252
+ "once_cell",
253
+ "oorandom",
254
+ "plotters",
255
+ "rayon",
256
+ "regex",
257
+ "serde",
258
+ "serde_derive",
259
+ "serde_json",
260
+ "tinytemplate",
261
+ "walkdir",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "criterion-plot"
266
+ version = "0.5.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
269
+ dependencies = [
270
+ "cast",
271
+ "itertools",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "crossbeam-deque"
276
+ version = "0.8.6"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
279
+ dependencies = [
280
+ "crossbeam-epoch",
281
+ "crossbeam-utils",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "crossbeam-epoch"
286
+ version = "0.9.18"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
289
+ dependencies = [
290
+ "crossbeam-utils",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "crossbeam-utils"
295
+ version = "0.8.21"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
298
+
299
+ [[package]]
300
+ name = "crunchy"
301
+ version = "0.2.4"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
304
+
305
+ [[package]]
306
+ name = "dagron-core"
307
+ version = "0.1.0"
308
+ dependencies = [
309
+ "ahash",
310
+ "bincode",
311
+ "criterion",
312
+ "memmap2",
313
+ "petgraph",
314
+ "regex",
315
+ "serde",
316
+ "serde_json",
317
+ "thiserror",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "dagron-py"
322
+ version = "0.1.0"
323
+ dependencies = [
324
+ "ahash",
325
+ "dagron-core",
326
+ "dagron-ui",
327
+ "pyo3",
328
+ "serde_json",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "dagron-ui"
333
+ version = "0.1.0"
334
+ dependencies = [
335
+ "async-stream",
336
+ "axum",
337
+ "futures",
338
+ "indexmap",
339
+ "reqwest",
340
+ "serde",
341
+ "serde_json",
342
+ "tokio",
343
+ "tower-http",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "displaydoc"
348
+ version = "0.2.5"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
351
+ dependencies = [
352
+ "proc-macro2",
353
+ "quote",
354
+ "syn",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "either"
359
+ version = "1.15.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
362
+
363
+ [[package]]
364
+ name = "equivalent"
365
+ version = "1.0.2"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
368
+
369
+ [[package]]
370
+ name = "find-msvc-tools"
371
+ version = "0.1.9"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
374
+
375
+ [[package]]
376
+ name = "fixedbitset"
377
+ version = "0.5.7"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
380
+
381
+ [[package]]
382
+ name = "form_urlencoded"
383
+ version = "1.2.2"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
386
+ dependencies = [
387
+ "percent-encoding",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "futures"
392
+ version = "0.3.32"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
395
+ dependencies = [
396
+ "futures-channel",
397
+ "futures-core",
398
+ "futures-executor",
399
+ "futures-io",
400
+ "futures-sink",
401
+ "futures-task",
402
+ "futures-util",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "futures-channel"
407
+ version = "0.3.32"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
410
+ dependencies = [
411
+ "futures-core",
412
+ "futures-sink",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "futures-core"
417
+ version = "0.3.32"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
420
+
421
+ [[package]]
422
+ name = "futures-executor"
423
+ version = "0.3.32"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
426
+ dependencies = [
427
+ "futures-core",
428
+ "futures-task",
429
+ "futures-util",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "futures-io"
434
+ version = "0.3.32"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
437
+
438
+ [[package]]
439
+ name = "futures-macro"
440
+ version = "0.3.32"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
443
+ dependencies = [
444
+ "proc-macro2",
445
+ "quote",
446
+ "syn",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "futures-sink"
451
+ version = "0.3.32"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
454
+
455
+ [[package]]
456
+ name = "futures-task"
457
+ version = "0.3.32"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
460
+
461
+ [[package]]
462
+ name = "futures-util"
463
+ version = "0.3.32"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
466
+ dependencies = [
467
+ "futures-channel",
468
+ "futures-core",
469
+ "futures-io",
470
+ "futures-macro",
471
+ "futures-sink",
472
+ "futures-task",
473
+ "memchr",
474
+ "pin-project-lite",
475
+ "slab",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "getrandom"
480
+ version = "0.2.17"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
483
+ dependencies = [
484
+ "cfg-if",
485
+ "js-sys",
486
+ "libc",
487
+ "wasi",
488
+ "wasm-bindgen",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "getrandom"
493
+ version = "0.3.4"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
496
+ dependencies = [
497
+ "cfg-if",
498
+ "js-sys",
499
+ "libc",
500
+ "r-efi",
501
+ "wasip2",
502
+ "wasm-bindgen",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "half"
507
+ version = "2.7.1"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
510
+ dependencies = [
511
+ "cfg-if",
512
+ "crunchy",
513
+ "zerocopy",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "hashbrown"
518
+ version = "0.17.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
521
+
522
+ [[package]]
523
+ name = "heck"
524
+ version = "0.5.0"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
527
+
528
+ [[package]]
529
+ name = "hermit-abi"
530
+ version = "0.5.2"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
533
+
534
+ [[package]]
535
+ name = "http"
536
+ version = "1.4.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
539
+ dependencies = [
540
+ "bytes",
541
+ "itoa",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "http-body"
546
+ version = "1.0.1"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
549
+ dependencies = [
550
+ "bytes",
551
+ "http",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "http-body-util"
556
+ version = "0.1.3"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
559
+ dependencies = [
560
+ "bytes",
561
+ "futures-core",
562
+ "http",
563
+ "http-body",
564
+ "pin-project-lite",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "httparse"
569
+ version = "1.10.1"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
572
+
573
+ [[package]]
574
+ name = "httpdate"
575
+ version = "1.0.3"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
578
+
579
+ [[package]]
580
+ name = "hyper"
581
+ version = "1.9.0"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
584
+ dependencies = [
585
+ "atomic-waker",
586
+ "bytes",
587
+ "futures-channel",
588
+ "futures-core",
589
+ "http",
590
+ "http-body",
591
+ "httparse",
592
+ "httpdate",
593
+ "itoa",
594
+ "pin-project-lite",
595
+ "smallvec",
596
+ "tokio",
597
+ "want",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "hyper-rustls"
602
+ version = "0.27.9"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
605
+ dependencies = [
606
+ "http",
607
+ "hyper",
608
+ "hyper-util",
609
+ "rustls",
610
+ "tokio",
611
+ "tokio-rustls",
612
+ "tower-service",
613
+ "webpki-roots",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "hyper-util"
618
+ version = "0.1.20"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
621
+ dependencies = [
622
+ "base64",
623
+ "bytes",
624
+ "futures-channel",
625
+ "futures-util",
626
+ "http",
627
+ "http-body",
628
+ "hyper",
629
+ "ipnet",
630
+ "libc",
631
+ "percent-encoding",
632
+ "pin-project-lite",
633
+ "socket2",
634
+ "tokio",
635
+ "tower-service",
636
+ "tracing",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "icu_collections"
641
+ version = "2.2.0"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
644
+ dependencies = [
645
+ "displaydoc",
646
+ "potential_utf",
647
+ "utf8_iter",
648
+ "yoke",
649
+ "zerofrom",
650
+ "zerovec",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "icu_locale_core"
655
+ version = "2.2.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
658
+ dependencies = [
659
+ "displaydoc",
660
+ "litemap",
661
+ "tinystr",
662
+ "writeable",
663
+ "zerovec",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "icu_normalizer"
668
+ version = "2.2.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
671
+ dependencies = [
672
+ "icu_collections",
673
+ "icu_normalizer_data",
674
+ "icu_properties",
675
+ "icu_provider",
676
+ "smallvec",
677
+ "zerovec",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "icu_normalizer_data"
682
+ version = "2.2.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
685
+
686
+ [[package]]
687
+ name = "icu_properties"
688
+ version = "2.2.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
691
+ dependencies = [
692
+ "icu_collections",
693
+ "icu_locale_core",
694
+ "icu_properties_data",
695
+ "icu_provider",
696
+ "zerotrie",
697
+ "zerovec",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "icu_properties_data"
702
+ version = "2.2.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
705
+
706
+ [[package]]
707
+ name = "icu_provider"
708
+ version = "2.2.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
711
+ dependencies = [
712
+ "displaydoc",
713
+ "icu_locale_core",
714
+ "writeable",
715
+ "yoke",
716
+ "zerofrom",
717
+ "zerotrie",
718
+ "zerovec",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "idna"
723
+ version = "1.1.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
726
+ dependencies = [
727
+ "idna_adapter",
728
+ "smallvec",
729
+ "utf8_iter",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "idna_adapter"
734
+ version = "1.2.2"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
737
+ dependencies = [
738
+ "icu_normalizer",
739
+ "icu_properties",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "indexmap"
744
+ version = "2.14.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
747
+ dependencies = [
748
+ "equivalent",
749
+ "hashbrown",
750
+ "serde",
751
+ "serde_core",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "indoc"
756
+ version = "2.0.7"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
759
+ dependencies = [
760
+ "rustversion",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "inventory"
765
+ version = "0.3.24"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
768
+ dependencies = [
769
+ "rustversion",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "ipnet"
774
+ version = "2.12.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
777
+
778
+ [[package]]
779
+ name = "is-terminal"
780
+ version = "0.4.17"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
783
+ dependencies = [
784
+ "hermit-abi",
785
+ "libc",
786
+ "windows-sys 0.61.2",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "itertools"
791
+ version = "0.10.5"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
794
+ dependencies = [
795
+ "either",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "itoa"
800
+ version = "1.0.18"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
803
+
804
+ [[package]]
805
+ name = "js-sys"
806
+ version = "0.3.98"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
809
+ dependencies = [
810
+ "cfg-if",
811
+ "futures-util",
812
+ "once_cell",
813
+ "wasm-bindgen",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "libc"
818
+ version = "0.2.186"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
821
+
822
+ [[package]]
823
+ name = "litemap"
824
+ version = "0.8.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
827
+
828
+ [[package]]
829
+ name = "log"
830
+ version = "0.4.29"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
833
+
834
+ [[package]]
835
+ name = "lru-slab"
836
+ version = "0.1.2"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
839
+
840
+ [[package]]
841
+ name = "matchit"
842
+ version = "0.8.4"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
845
+
846
+ [[package]]
847
+ name = "memchr"
848
+ version = "2.8.0"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
851
+
852
+ [[package]]
853
+ name = "memmap2"
854
+ version = "0.9.10"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
857
+ dependencies = [
858
+ "libc",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "memoffset"
863
+ version = "0.9.1"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
866
+ dependencies = [
867
+ "autocfg",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "mime"
872
+ version = "0.3.17"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
875
+
876
+ [[package]]
877
+ name = "mio"
878
+ version = "1.2.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
881
+ dependencies = [
882
+ "libc",
883
+ "wasi",
884
+ "windows-sys 0.61.2",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "num-traits"
889
+ version = "0.2.19"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
892
+ dependencies = [
893
+ "autocfg",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "once_cell"
898
+ version = "1.21.4"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
901
+
902
+ [[package]]
903
+ name = "oorandom"
904
+ version = "11.1.5"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
907
+
908
+ [[package]]
909
+ name = "percent-encoding"
910
+ version = "2.3.2"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
913
+
914
+ [[package]]
915
+ name = "petgraph"
916
+ version = "0.7.1"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
919
+ dependencies = [
920
+ "fixedbitset",
921
+ "indexmap",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "pin-project-lite"
926
+ version = "0.2.17"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
929
+
930
+ [[package]]
931
+ name = "plotters"
932
+ version = "0.3.7"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
935
+ dependencies = [
936
+ "num-traits",
937
+ "plotters-backend",
938
+ "plotters-svg",
939
+ "wasm-bindgen",
940
+ "web-sys",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "plotters-backend"
945
+ version = "0.3.7"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
948
+
949
+ [[package]]
950
+ name = "plotters-svg"
951
+ version = "0.3.7"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
954
+ dependencies = [
955
+ "plotters-backend",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "portable-atomic"
960
+ version = "1.13.1"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
963
+
964
+ [[package]]
965
+ name = "potential_utf"
966
+ version = "0.1.5"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
969
+ dependencies = [
970
+ "zerovec",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "ppv-lite86"
975
+ version = "0.2.21"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
978
+ dependencies = [
979
+ "zerocopy",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "proc-macro2"
984
+ version = "1.0.106"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
987
+ dependencies = [
988
+ "unicode-ident",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "pyo3"
993
+ version = "0.24.2"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
996
+ dependencies = [
997
+ "cfg-if",
998
+ "indoc",
999
+ "inventory",
1000
+ "libc",
1001
+ "memoffset",
1002
+ "once_cell",
1003
+ "portable-atomic",
1004
+ "pyo3-build-config",
1005
+ "pyo3-ffi",
1006
+ "pyo3-macros",
1007
+ "unindent",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "pyo3-build-config"
1012
+ version = "0.24.2"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1015
+ dependencies = [
1016
+ "once_cell",
1017
+ "target-lexicon",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "pyo3-ffi"
1022
+ version = "0.24.2"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1025
+ dependencies = [
1026
+ "libc",
1027
+ "pyo3-build-config",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "pyo3-macros"
1032
+ version = "0.24.2"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1035
+ dependencies = [
1036
+ "proc-macro2",
1037
+ "pyo3-macros-backend",
1038
+ "quote",
1039
+ "syn",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "pyo3-macros-backend"
1044
+ version = "0.24.2"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1047
+ dependencies = [
1048
+ "heck",
1049
+ "proc-macro2",
1050
+ "pyo3-build-config",
1051
+ "quote",
1052
+ "syn",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "quinn"
1057
+ version = "0.11.9"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1060
+ dependencies = [
1061
+ "bytes",
1062
+ "cfg_aliases",
1063
+ "pin-project-lite",
1064
+ "quinn-proto",
1065
+ "quinn-udp",
1066
+ "rustc-hash",
1067
+ "rustls",
1068
+ "socket2",
1069
+ "thiserror",
1070
+ "tokio",
1071
+ "tracing",
1072
+ "web-time",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "quinn-proto"
1077
+ version = "0.11.14"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1080
+ dependencies = [
1081
+ "bytes",
1082
+ "getrandom 0.3.4",
1083
+ "lru-slab",
1084
+ "rand",
1085
+ "ring",
1086
+ "rustc-hash",
1087
+ "rustls",
1088
+ "rustls-pki-types",
1089
+ "slab",
1090
+ "thiserror",
1091
+ "tinyvec",
1092
+ "tracing",
1093
+ "web-time",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "quinn-udp"
1098
+ version = "0.5.14"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1101
+ dependencies = [
1102
+ "cfg_aliases",
1103
+ "libc",
1104
+ "once_cell",
1105
+ "socket2",
1106
+ "tracing",
1107
+ "windows-sys 0.60.2",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "quote"
1112
+ version = "1.0.45"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1115
+ dependencies = [
1116
+ "proc-macro2",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "r-efi"
1121
+ version = "5.3.0"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1124
+
1125
+ [[package]]
1126
+ name = "rand"
1127
+ version = "0.9.4"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1130
+ dependencies = [
1131
+ "rand_chacha",
1132
+ "rand_core",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "rand_chacha"
1137
+ version = "0.9.0"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1140
+ dependencies = [
1141
+ "ppv-lite86",
1142
+ "rand_core",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "rand_core"
1147
+ version = "0.9.5"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1150
+ dependencies = [
1151
+ "getrandom 0.3.4",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "rayon"
1156
+ version = "1.12.0"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1159
+ dependencies = [
1160
+ "either",
1161
+ "rayon-core",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "rayon-core"
1166
+ version = "1.13.0"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1169
+ dependencies = [
1170
+ "crossbeam-deque",
1171
+ "crossbeam-utils",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "regex"
1176
+ version = "1.12.3"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1179
+ dependencies = [
1180
+ "aho-corasick",
1181
+ "memchr",
1182
+ "regex-automata",
1183
+ "regex-syntax",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "regex-automata"
1188
+ version = "0.4.14"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1191
+ dependencies = [
1192
+ "aho-corasick",
1193
+ "memchr",
1194
+ "regex-syntax",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "regex-syntax"
1199
+ version = "0.8.10"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1202
+
1203
+ [[package]]
1204
+ name = "reqwest"
1205
+ version = "0.12.28"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1208
+ dependencies = [
1209
+ "base64",
1210
+ "bytes",
1211
+ "futures-channel",
1212
+ "futures-core",
1213
+ "futures-util",
1214
+ "http",
1215
+ "http-body",
1216
+ "http-body-util",
1217
+ "hyper",
1218
+ "hyper-rustls",
1219
+ "hyper-util",
1220
+ "js-sys",
1221
+ "log",
1222
+ "percent-encoding",
1223
+ "pin-project-lite",
1224
+ "quinn",
1225
+ "rustls",
1226
+ "rustls-pki-types",
1227
+ "serde",
1228
+ "serde_json",
1229
+ "serde_urlencoded",
1230
+ "sync_wrapper",
1231
+ "tokio",
1232
+ "tokio-rustls",
1233
+ "tower",
1234
+ "tower-http",
1235
+ "tower-service",
1236
+ "url",
1237
+ "wasm-bindgen",
1238
+ "wasm-bindgen-futures",
1239
+ "web-sys",
1240
+ "webpki-roots",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "ring"
1245
+ version = "0.17.14"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1248
+ dependencies = [
1249
+ "cc",
1250
+ "cfg-if",
1251
+ "getrandom 0.2.17",
1252
+ "libc",
1253
+ "untrusted",
1254
+ "windows-sys 0.52.0",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "rustc-hash"
1259
+ version = "2.1.2"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1262
+
1263
+ [[package]]
1264
+ name = "rustls"
1265
+ version = "0.23.40"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1268
+ dependencies = [
1269
+ "once_cell",
1270
+ "ring",
1271
+ "rustls-pki-types",
1272
+ "rustls-webpki",
1273
+ "subtle",
1274
+ "zeroize",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "rustls-pki-types"
1279
+ version = "1.14.1"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1282
+ dependencies = [
1283
+ "web-time",
1284
+ "zeroize",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "rustls-webpki"
1289
+ version = "0.103.13"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1292
+ dependencies = [
1293
+ "ring",
1294
+ "rustls-pki-types",
1295
+ "untrusted",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "rustversion"
1300
+ version = "1.0.22"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1303
+
1304
+ [[package]]
1305
+ name = "ryu"
1306
+ version = "1.0.23"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1309
+
1310
+ [[package]]
1311
+ name = "same-file"
1312
+ version = "1.0.6"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1315
+ dependencies = [
1316
+ "winapi-util",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "serde"
1321
+ version = "1.0.228"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1324
+ dependencies = [
1325
+ "serde_core",
1326
+ "serde_derive",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "serde_core"
1331
+ version = "1.0.228"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1334
+ dependencies = [
1335
+ "serde_derive",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "serde_derive"
1340
+ version = "1.0.228"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1343
+ dependencies = [
1344
+ "proc-macro2",
1345
+ "quote",
1346
+ "syn",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "serde_json"
1351
+ version = "1.0.149"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1354
+ dependencies = [
1355
+ "itoa",
1356
+ "memchr",
1357
+ "serde",
1358
+ "serde_core",
1359
+ "zmij",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "serde_path_to_error"
1364
+ version = "0.1.20"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1367
+ dependencies = [
1368
+ "itoa",
1369
+ "serde",
1370
+ "serde_core",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "serde_urlencoded"
1375
+ version = "0.7.1"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1378
+ dependencies = [
1379
+ "form_urlencoded",
1380
+ "itoa",
1381
+ "ryu",
1382
+ "serde",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "shlex"
1387
+ version = "1.3.0"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1390
+
1391
+ [[package]]
1392
+ name = "slab"
1393
+ version = "0.4.12"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1396
+
1397
+ [[package]]
1398
+ name = "smallvec"
1399
+ version = "1.15.1"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1402
+
1403
+ [[package]]
1404
+ name = "socket2"
1405
+ version = "0.6.3"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1408
+ dependencies = [
1409
+ "libc",
1410
+ "windows-sys 0.61.2",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "stable_deref_trait"
1415
+ version = "1.2.1"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1418
+
1419
+ [[package]]
1420
+ name = "subtle"
1421
+ version = "2.6.1"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1424
+
1425
+ [[package]]
1426
+ name = "syn"
1427
+ version = "2.0.117"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1430
+ dependencies = [
1431
+ "proc-macro2",
1432
+ "quote",
1433
+ "unicode-ident",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "sync_wrapper"
1438
+ version = "1.0.2"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1441
+ dependencies = [
1442
+ "futures-core",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "synstructure"
1447
+ version = "0.13.2"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1450
+ dependencies = [
1451
+ "proc-macro2",
1452
+ "quote",
1453
+ "syn",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "target-lexicon"
1458
+ version = "0.13.5"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1461
+
1462
+ [[package]]
1463
+ name = "thiserror"
1464
+ version = "2.0.18"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1467
+ dependencies = [
1468
+ "thiserror-impl",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "thiserror-impl"
1473
+ version = "2.0.18"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1476
+ dependencies = [
1477
+ "proc-macro2",
1478
+ "quote",
1479
+ "syn",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "tinystr"
1484
+ version = "0.8.3"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1487
+ dependencies = [
1488
+ "displaydoc",
1489
+ "zerovec",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "tinytemplate"
1494
+ version = "1.2.1"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1497
+ dependencies = [
1498
+ "serde",
1499
+ "serde_json",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "tinyvec"
1504
+ version = "1.11.0"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1507
+ dependencies = [
1508
+ "tinyvec_macros",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "tinyvec_macros"
1513
+ version = "0.1.1"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1516
+
1517
+ [[package]]
1518
+ name = "tokio"
1519
+ version = "1.52.3"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1522
+ dependencies = [
1523
+ "bytes",
1524
+ "libc",
1525
+ "mio",
1526
+ "pin-project-lite",
1527
+ "socket2",
1528
+ "tokio-macros",
1529
+ "windows-sys 0.61.2",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "tokio-macros"
1534
+ version = "2.7.0"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1537
+ dependencies = [
1538
+ "proc-macro2",
1539
+ "quote",
1540
+ "syn",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "tokio-rustls"
1545
+ version = "0.26.4"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1548
+ dependencies = [
1549
+ "rustls",
1550
+ "tokio",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "tower"
1555
+ version = "0.5.3"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1558
+ dependencies = [
1559
+ "futures-core",
1560
+ "futures-util",
1561
+ "pin-project-lite",
1562
+ "sync_wrapper",
1563
+ "tokio",
1564
+ "tower-layer",
1565
+ "tower-service",
1566
+ "tracing",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "tower-http"
1571
+ version = "0.6.10"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
1574
+ dependencies = [
1575
+ "bitflags",
1576
+ "bytes",
1577
+ "futures-util",
1578
+ "http",
1579
+ "http-body",
1580
+ "pin-project-lite",
1581
+ "tower",
1582
+ "tower-layer",
1583
+ "tower-service",
1584
+ "url",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "tower-layer"
1589
+ version = "0.3.3"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1592
+
1593
+ [[package]]
1594
+ name = "tower-service"
1595
+ version = "0.3.3"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1598
+
1599
+ [[package]]
1600
+ name = "tracing"
1601
+ version = "0.1.44"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1604
+ dependencies = [
1605
+ "log",
1606
+ "pin-project-lite",
1607
+ "tracing-core",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "tracing-core"
1612
+ version = "0.1.36"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1615
+ dependencies = [
1616
+ "once_cell",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "try-lock"
1621
+ version = "0.2.5"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1624
+
1625
+ [[package]]
1626
+ name = "unicode-ident"
1627
+ version = "1.0.24"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1630
+
1631
+ [[package]]
1632
+ name = "unindent"
1633
+ version = "0.2.4"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1636
+
1637
+ [[package]]
1638
+ name = "untrusted"
1639
+ version = "0.9.0"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1642
+
1643
+ [[package]]
1644
+ name = "url"
1645
+ version = "2.5.8"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1648
+ dependencies = [
1649
+ "form_urlencoded",
1650
+ "idna",
1651
+ "percent-encoding",
1652
+ "serde",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "utf8_iter"
1657
+ version = "1.0.4"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1660
+
1661
+ [[package]]
1662
+ name = "version_check"
1663
+ version = "0.9.5"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1666
+
1667
+ [[package]]
1668
+ name = "walkdir"
1669
+ version = "2.5.0"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1672
+ dependencies = [
1673
+ "same-file",
1674
+ "winapi-util",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "want"
1679
+ version = "0.3.1"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1682
+ dependencies = [
1683
+ "try-lock",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "wasi"
1688
+ version = "0.11.1+wasi-snapshot-preview1"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1691
+
1692
+ [[package]]
1693
+ name = "wasip2"
1694
+ version = "1.0.3+wasi-0.2.9"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1697
+ dependencies = [
1698
+ "wit-bindgen",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "wasm-bindgen"
1703
+ version = "0.2.121"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1706
+ dependencies = [
1707
+ "cfg-if",
1708
+ "once_cell",
1709
+ "rustversion",
1710
+ "wasm-bindgen-macro",
1711
+ "wasm-bindgen-shared",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "wasm-bindgen-futures"
1716
+ version = "0.4.71"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
1719
+ dependencies = [
1720
+ "js-sys",
1721
+ "wasm-bindgen",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "wasm-bindgen-macro"
1726
+ version = "0.2.121"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1729
+ dependencies = [
1730
+ "quote",
1731
+ "wasm-bindgen-macro-support",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "wasm-bindgen-macro-support"
1736
+ version = "0.2.121"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1739
+ dependencies = [
1740
+ "bumpalo",
1741
+ "proc-macro2",
1742
+ "quote",
1743
+ "syn",
1744
+ "wasm-bindgen-shared",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "wasm-bindgen-shared"
1749
+ version = "0.2.121"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1752
+ dependencies = [
1753
+ "unicode-ident",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "web-sys"
1758
+ version = "0.3.98"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
1761
+ dependencies = [
1762
+ "js-sys",
1763
+ "wasm-bindgen",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "web-time"
1768
+ version = "1.1.0"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1771
+ dependencies = [
1772
+ "js-sys",
1773
+ "wasm-bindgen",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "webpki-roots"
1778
+ version = "1.0.7"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
1781
+ dependencies = [
1782
+ "rustls-pki-types",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "winapi-util"
1787
+ version = "0.1.11"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1790
+ dependencies = [
1791
+ "windows-sys 0.61.2",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "windows-link"
1796
+ version = "0.2.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1799
+
1800
+ [[package]]
1801
+ name = "windows-sys"
1802
+ version = "0.52.0"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1805
+ dependencies = [
1806
+ "windows-targets 0.52.6",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "windows-sys"
1811
+ version = "0.60.2"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1814
+ dependencies = [
1815
+ "windows-targets 0.53.5",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "windows-sys"
1820
+ version = "0.61.2"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1823
+ dependencies = [
1824
+ "windows-link",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "windows-targets"
1829
+ version = "0.52.6"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1832
+ dependencies = [
1833
+ "windows_aarch64_gnullvm 0.52.6",
1834
+ "windows_aarch64_msvc 0.52.6",
1835
+ "windows_i686_gnu 0.52.6",
1836
+ "windows_i686_gnullvm 0.52.6",
1837
+ "windows_i686_msvc 0.52.6",
1838
+ "windows_x86_64_gnu 0.52.6",
1839
+ "windows_x86_64_gnullvm 0.52.6",
1840
+ "windows_x86_64_msvc 0.52.6",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "windows-targets"
1845
+ version = "0.53.5"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1848
+ dependencies = [
1849
+ "windows-link",
1850
+ "windows_aarch64_gnullvm 0.53.1",
1851
+ "windows_aarch64_msvc 0.53.1",
1852
+ "windows_i686_gnu 0.53.1",
1853
+ "windows_i686_gnullvm 0.53.1",
1854
+ "windows_i686_msvc 0.53.1",
1855
+ "windows_x86_64_gnu 0.53.1",
1856
+ "windows_x86_64_gnullvm 0.53.1",
1857
+ "windows_x86_64_msvc 0.53.1",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "windows_aarch64_gnullvm"
1862
+ version = "0.52.6"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1865
+
1866
+ [[package]]
1867
+ name = "windows_aarch64_gnullvm"
1868
+ version = "0.53.1"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1871
+
1872
+ [[package]]
1873
+ name = "windows_aarch64_msvc"
1874
+ version = "0.52.6"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1877
+
1878
+ [[package]]
1879
+ name = "windows_aarch64_msvc"
1880
+ version = "0.53.1"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1883
+
1884
+ [[package]]
1885
+ name = "windows_i686_gnu"
1886
+ version = "0.52.6"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1889
+
1890
+ [[package]]
1891
+ name = "windows_i686_gnu"
1892
+ version = "0.53.1"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1895
+
1896
+ [[package]]
1897
+ name = "windows_i686_gnullvm"
1898
+ version = "0.52.6"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1901
+
1902
+ [[package]]
1903
+ name = "windows_i686_gnullvm"
1904
+ version = "0.53.1"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1907
+
1908
+ [[package]]
1909
+ name = "windows_i686_msvc"
1910
+ version = "0.52.6"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1913
+
1914
+ [[package]]
1915
+ name = "windows_i686_msvc"
1916
+ version = "0.53.1"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1919
+
1920
+ [[package]]
1921
+ name = "windows_x86_64_gnu"
1922
+ version = "0.52.6"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1925
+
1926
+ [[package]]
1927
+ name = "windows_x86_64_gnu"
1928
+ version = "0.53.1"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1931
+
1932
+ [[package]]
1933
+ name = "windows_x86_64_gnullvm"
1934
+ version = "0.52.6"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1937
+
1938
+ [[package]]
1939
+ name = "windows_x86_64_gnullvm"
1940
+ version = "0.53.1"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1943
+
1944
+ [[package]]
1945
+ name = "windows_x86_64_msvc"
1946
+ version = "0.52.6"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1949
+
1950
+ [[package]]
1951
+ name = "windows_x86_64_msvc"
1952
+ version = "0.53.1"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1955
+
1956
+ [[package]]
1957
+ name = "wit-bindgen"
1958
+ version = "0.57.1"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1961
+
1962
+ [[package]]
1963
+ name = "writeable"
1964
+ version = "0.6.3"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1967
+
1968
+ [[package]]
1969
+ name = "yoke"
1970
+ version = "0.8.2"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
1973
+ dependencies = [
1974
+ "stable_deref_trait",
1975
+ "yoke-derive",
1976
+ "zerofrom",
1977
+ ]
1978
+
1979
+ [[package]]
1980
+ name = "yoke-derive"
1981
+ version = "0.8.2"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1984
+ dependencies = [
1985
+ "proc-macro2",
1986
+ "quote",
1987
+ "syn",
1988
+ "synstructure",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "zerocopy"
1993
+ version = "0.8.48"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1996
+ dependencies = [
1997
+ "zerocopy-derive",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "zerocopy-derive"
2002
+ version = "0.8.48"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2005
+ dependencies = [
2006
+ "proc-macro2",
2007
+ "quote",
2008
+ "syn",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "zerofrom"
2013
+ version = "0.1.7"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
2016
+ dependencies = [
2017
+ "zerofrom-derive",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "zerofrom-derive"
2022
+ version = "0.1.7"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2025
+ dependencies = [
2026
+ "proc-macro2",
2027
+ "quote",
2028
+ "syn",
2029
+ "synstructure",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "zeroize"
2034
+ version = "1.8.2"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2037
+
2038
+ [[package]]
2039
+ name = "zerotrie"
2040
+ version = "0.2.4"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2043
+ dependencies = [
2044
+ "displaydoc",
2045
+ "yoke",
2046
+ "zerofrom",
2047
+ ]
2048
+
2049
+ [[package]]
2050
+ name = "zerovec"
2051
+ version = "0.11.6"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2054
+ dependencies = [
2055
+ "yoke",
2056
+ "zerofrom",
2057
+ "zerovec-derive",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "zerovec-derive"
2062
+ version = "0.11.3"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2065
+ dependencies = [
2066
+ "proc-macro2",
2067
+ "quote",
2068
+ "syn",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "zmij"
2073
+ version = "1.0.21"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"