sc-compose 1.2.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.
- sc_compose-1.2.0/Cargo.lock +826 -0
- sc_compose-1.2.0/Cargo.toml +65 -0
- sc_compose-1.2.0/PKG-INFO +51 -0
- sc_compose-1.2.0/README.md +33 -0
- sc_compose-1.2.0/bindings/python/Cargo.toml +29 -0
- sc_compose-1.2.0/bindings/python/README.md +33 -0
- sc_compose-1.2.0/bindings/python/python/sc_compose/__init__.py +101 -0
- sc_compose-1.2.0/bindings/python/python/sc_compose/_native.pyi +328 -0
- sc_compose-1.2.0/bindings/python/python/sc_compose/py.typed +1 -0
- sc_compose-1.2.0/bindings/python/src/convert.rs +262 -0
- sc_compose-1.2.0/bindings/python/src/enums.rs +274 -0
- sc_compose-1.2.0/bindings/python/src/errors.rs +269 -0
- sc_compose-1.2.0/bindings/python/src/functions.rs +205 -0
- sc_compose-1.2.0/bindings/python/src/lib.rs +24 -0
- sc_compose-1.2.0/bindings/python/src/types.rs +957 -0
- sc_compose-1.2.0/bindings/python/tests/test_smoke.py +273 -0
- sc_compose-1.2.0/crates/sc-composer/Cargo.toml +23 -0
- sc_compose-1.2.0/crates/sc-composer/README.md +476 -0
- sc_compose-1.2.0/crates/sc-composer/src/composer.rs +491 -0
- sc_compose-1.2.0/crates/sc-composer/src/diagnostics.rs +213 -0
- sc_compose-1.2.0/crates/sc-composer/src/error.rs +702 -0
- sc_compose-1.2.0/crates/sc-composer/src/frontmatter.rs +216 -0
- sc_compose-1.2.0/crates/sc-composer/src/frontmatter_init.rs +152 -0
- sc_compose-1.2.0/crates/sc-composer/src/include.rs +500 -0
- sc_compose-1.2.0/crates/sc-composer/src/init_workspace.rs +225 -0
- sc_compose-1.2.0/crates/sc-composer/src/lib.rs +215 -0
- sc_compose-1.2.0/crates/sc-composer/src/observer.rs +211 -0
- sc_compose-1.2.0/crates/sc-composer/src/path_utils.rs +9 -0
- sc_compose-1.2.0/crates/sc-composer/src/renderer.rs +221 -0
- sc_compose-1.2.0/crates/sc-composer/src/resolver.rs +518 -0
- sc_compose-1.2.0/crates/sc-composer/src/types.rs +709 -0
- sc_compose-1.2.0/crates/sc-composer/src/validate.rs +179 -0
- sc_compose-1.2.0/crates/sc-composer/src/validation.rs +1545 -0
- sc_compose-1.2.0/pyproject.toml +33 -0
- sc_compose-1.2.0/python/sc_compose/__init__.py +101 -0
- sc_compose-1.2.0/python/sc_compose/_native.pyi +328 -0
- sc_compose-1.2.0/python/sc_compose/py.typed +1 -0
|
@@ -0,0 +1,826 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "anstream"
|
|
13
|
+
version = "1.0.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"anstyle",
|
|
18
|
+
"anstyle-parse",
|
|
19
|
+
"anstyle-query",
|
|
20
|
+
"anstyle-wincon",
|
|
21
|
+
"colorchoice",
|
|
22
|
+
"is_terminal_polyfill",
|
|
23
|
+
"utf8parse",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle"
|
|
28
|
+
version = "1.0.14"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anstyle-parse"
|
|
34
|
+
version = "1.0.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"utf8parse",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-query"
|
|
43
|
+
version = "1.1.5"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"windows-sys",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-wincon"
|
|
52
|
+
version = "3.0.11"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"anstyle",
|
|
57
|
+
"once_cell_polyfill",
|
|
58
|
+
"windows-sys",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anyhow"
|
|
63
|
+
version = "1.0.102"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "bumpalo"
|
|
69
|
+
version = "3.20.2"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "cc"
|
|
75
|
+
version = "1.2.60"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"find-msvc-tools",
|
|
80
|
+
"shlex",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "cfg-if"
|
|
85
|
+
version = "1.0.4"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "clap"
|
|
91
|
+
version = "4.6.0"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"clap_builder",
|
|
96
|
+
"clap_derive",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "clap_builder"
|
|
101
|
+
version = "4.6.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"anstream",
|
|
106
|
+
"anstyle",
|
|
107
|
+
"clap_lex",
|
|
108
|
+
"strsim",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "clap_derive"
|
|
113
|
+
version = "4.6.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"heck",
|
|
118
|
+
"proc-macro2",
|
|
119
|
+
"quote",
|
|
120
|
+
"syn",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "clap_lex"
|
|
125
|
+
version = "1.1.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "colorchoice"
|
|
131
|
+
version = "1.0.5"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "deranged"
|
|
137
|
+
version = "0.5.8"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"powerfmt",
|
|
142
|
+
"serde_core",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "equivalent"
|
|
147
|
+
version = "1.0.2"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "find-msvc-tools"
|
|
153
|
+
version = "0.1.9"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "getrandom"
|
|
159
|
+
version = "0.3.4"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"cfg-if",
|
|
164
|
+
"libc",
|
|
165
|
+
"r-efi",
|
|
166
|
+
"wasip2",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "glob"
|
|
171
|
+
version = "0.3.3"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "hashbrown"
|
|
177
|
+
version = "0.16.1"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "heck"
|
|
183
|
+
version = "0.5.0"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "indexmap"
|
|
189
|
+
version = "2.13.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"equivalent",
|
|
194
|
+
"hashbrown",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "is_terminal_polyfill"
|
|
199
|
+
version = "1.70.2"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "itoa"
|
|
205
|
+
version = "1.0.18"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "js-sys"
|
|
211
|
+
version = "0.3.91"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"once_cell",
|
|
216
|
+
"wasm-bindgen",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "libc"
|
|
221
|
+
version = "0.2.183"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "libmimalloc-sys"
|
|
227
|
+
version = "0.1.44"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"cc",
|
|
232
|
+
"libc",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "memchr"
|
|
237
|
+
version = "2.8.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "memo-map"
|
|
243
|
+
version = "0.3.3"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "mimalloc"
|
|
249
|
+
version = "0.1.48"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"libmimalloc-sys",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "minijinja"
|
|
258
|
+
version = "2.18.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "328251e58ad8e415be6198888fc207502727dc77945806421ab34f35bf012e7d"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"aho-corasick",
|
|
263
|
+
"memo-map",
|
|
264
|
+
"serde",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "num-conv"
|
|
269
|
+
version = "0.2.1"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "once_cell"
|
|
275
|
+
version = "1.21.4"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "once_cell_polyfill"
|
|
281
|
+
version = "1.70.2"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "portable-atomic"
|
|
287
|
+
version = "1.13.1"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "powerfmt"
|
|
293
|
+
version = "0.2.0"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "ppv-lite86"
|
|
299
|
+
version = "0.2.21"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"zerocopy",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "proc-macro2"
|
|
308
|
+
version = "1.0.106"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"unicode-ident",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "pyo3"
|
|
317
|
+
version = "0.29.0"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"libc",
|
|
322
|
+
"once_cell",
|
|
323
|
+
"portable-atomic",
|
|
324
|
+
"pyo3-build-config",
|
|
325
|
+
"pyo3-ffi",
|
|
326
|
+
"pyo3-macros",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "pyo3-build-config"
|
|
331
|
+
version = "0.29.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"target-lexicon",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "pyo3-ffi"
|
|
340
|
+
version = "0.29.0"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"libc",
|
|
345
|
+
"pyo3-build-config",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "pyo3-macros"
|
|
350
|
+
version = "0.29.0"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"proc-macro2",
|
|
355
|
+
"pyo3-macros-backend",
|
|
356
|
+
"quote",
|
|
357
|
+
"syn",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "pyo3-macros-backend"
|
|
362
|
+
version = "0.29.0"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"heck",
|
|
367
|
+
"proc-macro2",
|
|
368
|
+
"quote",
|
|
369
|
+
"syn",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "quote"
|
|
374
|
+
version = "1.0.45"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"proc-macro2",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "r-efi"
|
|
383
|
+
version = "5.3.0"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "rand"
|
|
389
|
+
version = "0.9.2"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"rand_chacha",
|
|
394
|
+
"rand_core",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "rand_chacha"
|
|
399
|
+
version = "0.9.0"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"ppv-lite86",
|
|
404
|
+
"rand_core",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "rand_core"
|
|
409
|
+
version = "0.9.5"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"getrandom",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "rustversion"
|
|
418
|
+
version = "1.0.22"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "ryu"
|
|
424
|
+
version = "1.0.23"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "sc-compose"
|
|
430
|
+
version = "1.2.0"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"anyhow",
|
|
433
|
+
"clap",
|
|
434
|
+
"glob",
|
|
435
|
+
"mimalloc",
|
|
436
|
+
"sc-composer",
|
|
437
|
+
"sc-observability",
|
|
438
|
+
"sc-observability-types",
|
|
439
|
+
"serde",
|
|
440
|
+
"serde_json",
|
|
441
|
+
"serde_yaml",
|
|
442
|
+
"time",
|
|
443
|
+
"toml",
|
|
444
|
+
"ulid",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "sc-compose-py"
|
|
449
|
+
version = "1.2.0"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"pyo3",
|
|
452
|
+
"sc-composer",
|
|
453
|
+
"serde_json",
|
|
454
|
+
"serde_yaml",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "sc-composer"
|
|
459
|
+
version = "1.2.0"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"minijinja",
|
|
462
|
+
"serde",
|
|
463
|
+
"serde_json",
|
|
464
|
+
"serde_yaml",
|
|
465
|
+
"thiserror",
|
|
466
|
+
"time",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "sc-observability"
|
|
471
|
+
version = "1.2.0"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "2055d92ac115dce2a139b182f9f7c716351a4f93c4449f9693a2a3c4493b345d"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"sc-observability-types",
|
|
476
|
+
"serde",
|
|
477
|
+
"serde_json",
|
|
478
|
+
"thiserror",
|
|
479
|
+
"windows-sys",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "sc-observability-types"
|
|
484
|
+
version = "1.2.0"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "b3ddd83dc10e65f4fda4c8b392fb9cfb520c4007c5ee5d0cde3af75c463b98ab"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"serde",
|
|
489
|
+
"serde_json",
|
|
490
|
+
"thiserror",
|
|
491
|
+
"time",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "serde"
|
|
496
|
+
version = "1.0.228"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"serde_core",
|
|
501
|
+
"serde_derive",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "serde_core"
|
|
506
|
+
version = "1.0.228"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"serde_derive",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "serde_derive"
|
|
515
|
+
version = "1.0.228"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"proc-macro2",
|
|
520
|
+
"quote",
|
|
521
|
+
"syn",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "serde_json"
|
|
526
|
+
version = "1.0.149"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"itoa",
|
|
531
|
+
"memchr",
|
|
532
|
+
"serde",
|
|
533
|
+
"serde_core",
|
|
534
|
+
"zmij",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "serde_spanned"
|
|
539
|
+
version = "0.6.9"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
542
|
+
dependencies = [
|
|
543
|
+
"serde",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "serde_yaml"
|
|
548
|
+
version = "0.9.34+deprecated"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"indexmap",
|
|
553
|
+
"itoa",
|
|
554
|
+
"ryu",
|
|
555
|
+
"serde",
|
|
556
|
+
"unsafe-libyaml",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "shlex"
|
|
561
|
+
version = "1.3.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "strsim"
|
|
567
|
+
version = "0.11.1"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "syn"
|
|
573
|
+
version = "2.0.117"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"proc-macro2",
|
|
578
|
+
"quote",
|
|
579
|
+
"unicode-ident",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "target-lexicon"
|
|
584
|
+
version = "0.13.5"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "thiserror"
|
|
590
|
+
version = "2.0.18"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"thiserror-impl",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "thiserror-impl"
|
|
599
|
+
version = "2.0.18"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"proc-macro2",
|
|
604
|
+
"quote",
|
|
605
|
+
"syn",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "time"
|
|
610
|
+
version = "0.3.47"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"deranged",
|
|
615
|
+
"itoa",
|
|
616
|
+
"num-conv",
|
|
617
|
+
"powerfmt",
|
|
618
|
+
"serde_core",
|
|
619
|
+
"time-core",
|
|
620
|
+
"time-macros",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "time-core"
|
|
625
|
+
version = "0.1.8"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "time-macros"
|
|
631
|
+
version = "0.2.27"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"num-conv",
|
|
636
|
+
"time-core",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "toml"
|
|
641
|
+
version = "0.8.23"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"serde",
|
|
646
|
+
"serde_spanned",
|
|
647
|
+
"toml_datetime",
|
|
648
|
+
"toml_edit",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "toml_datetime"
|
|
653
|
+
version = "0.6.11"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"serde",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "toml_edit"
|
|
662
|
+
version = "0.22.27"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"indexmap",
|
|
667
|
+
"serde",
|
|
668
|
+
"serde_spanned",
|
|
669
|
+
"toml_datetime",
|
|
670
|
+
"toml_write",
|
|
671
|
+
"winnow",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "toml_write"
|
|
676
|
+
version = "0.1.2"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "ulid"
|
|
682
|
+
version = "1.2.1"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"rand",
|
|
687
|
+
"web-time",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "unicode-ident"
|
|
692
|
+
version = "1.0.24"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "unsafe-libyaml"
|
|
698
|
+
version = "0.2.11"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "utf8parse"
|
|
704
|
+
version = "0.2.2"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "wasip2"
|
|
710
|
+
version = "1.0.2+wasi-0.2.9"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"wit-bindgen",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "wasm-bindgen"
|
|
719
|
+
version = "0.2.114"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"cfg-if",
|
|
724
|
+
"once_cell",
|
|
725
|
+
"rustversion",
|
|
726
|
+
"wasm-bindgen-macro",
|
|
727
|
+
"wasm-bindgen-shared",
|
|
728
|
+
]
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "wasm-bindgen-macro"
|
|
732
|
+
version = "0.2.114"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
735
|
+
dependencies = [
|
|
736
|
+
"quote",
|
|
737
|
+
"wasm-bindgen-macro-support",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "wasm-bindgen-macro-support"
|
|
742
|
+
version = "0.2.114"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"bumpalo",
|
|
747
|
+
"proc-macro2",
|
|
748
|
+
"quote",
|
|
749
|
+
"syn",
|
|
750
|
+
"wasm-bindgen-shared",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "wasm-bindgen-shared"
|
|
755
|
+
version = "0.2.114"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"unicode-ident",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "web-time"
|
|
764
|
+
version = "1.1.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"js-sys",
|
|
769
|
+
"wasm-bindgen",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "windows-link"
|
|
774
|
+
version = "0.2.1"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "windows-sys"
|
|
780
|
+
version = "0.61.2"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"windows-link",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "winnow"
|
|
789
|
+
version = "0.7.15"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"memchr",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "wit-bindgen"
|
|
798
|
+
version = "0.51.0"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "zerocopy"
|
|
804
|
+
version = "0.8.47"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"zerocopy-derive",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "zerocopy-derive"
|
|
813
|
+
version = "0.8.47"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"proc-macro2",
|
|
818
|
+
"quote",
|
|
819
|
+
"syn",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "zmij"
|
|
824
|
+
version = "1.0.21"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|