settingspec 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.
- settingspec-0.1.0/Cargo.lock +730 -0
- settingspec-0.1.0/Cargo.toml +53 -0
- settingspec-0.1.0/LICENSE-APACHE +202 -0
- settingspec-0.1.0/LICENSE-MIT +21 -0
- settingspec-0.1.0/PKG-INFO +9 -0
- settingspec-0.1.0/README.md +156 -0
- settingspec-0.1.0/pyproject.toml +13 -0
- settingspec-0.1.0/src/cli.rs +400 -0
- settingspec-0.1.0/src/envfile.rs +78 -0
- settingspec-0.1.0/src/error.rs +110 -0
- settingspec-0.1.0/src/filter.rs +135 -0
- settingspec-0.1.0/src/generator/common.rs +31 -0
- settingspec-0.1.0/src/generator/env.rs +47 -0
- settingspec-0.1.0/src/generator/javascript.rs +8 -0
- settingspec-0.1.0/src/generator/json.rs +52 -0
- settingspec-0.1.0/src/generator/lua.rs +83 -0
- settingspec-0.1.0/src/generator/mod.rs +66 -0
- settingspec-0.1.0/src/generator/python.rs +98 -0
- settingspec-0.1.0/src/generator/toml.rs +36 -0
- settingspec-0.1.0/src/generator/tree.rs +59 -0
- settingspec-0.1.0/src/generator/typescript.rs +81 -0
- settingspec-0.1.0/src/generator/yaml.rs +52 -0
- settingspec-0.1.0/src/lib.rs +11 -0
- settingspec-0.1.0/src/main.rs +16 -0
- settingspec-0.1.0/src/model.rs +419 -0
- settingspec-0.1.0/src/parser.rs +186 -0
- settingspec-0.1.0/src/profile.rs +36 -0
- settingspec-0.1.0/src/resolver.rs +189 -0
|
@@ -0,0 +1,730 @@
|
|
|
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.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anstream"
|
|
16
|
+
version = "1.0.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"anstyle",
|
|
21
|
+
"anstyle-parse",
|
|
22
|
+
"anstyle-query",
|
|
23
|
+
"anstyle-wincon",
|
|
24
|
+
"colorchoice",
|
|
25
|
+
"is_terminal_polyfill",
|
|
26
|
+
"utf8parse",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anstyle"
|
|
31
|
+
version = "1.0.14"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-parse"
|
|
37
|
+
version = "1.0.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"utf8parse",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-query"
|
|
46
|
+
version = "1.1.5"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"windows-sys",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle-wincon"
|
|
55
|
+
version = "3.0.11"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"anstyle",
|
|
60
|
+
"once_cell_polyfill",
|
|
61
|
+
"windows-sys",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anyhow"
|
|
66
|
+
version = "1.0.104"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "assert_cmd"
|
|
72
|
+
version = "2.2.2"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"anstyle",
|
|
77
|
+
"bstr",
|
|
78
|
+
"libc",
|
|
79
|
+
"predicates",
|
|
80
|
+
"predicates-core",
|
|
81
|
+
"predicates-tree",
|
|
82
|
+
"wait-timeout",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "assert_fs"
|
|
87
|
+
version = "1.1.4"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "6ecf5c70ca07b7f80220bce936f0556a960ca6fb00fc2bd4125b5e581b218137"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"anstyle",
|
|
92
|
+
"globwalk",
|
|
93
|
+
"predicates",
|
|
94
|
+
"predicates-core",
|
|
95
|
+
"predicates-tree",
|
|
96
|
+
"tempfile",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "autocfg"
|
|
101
|
+
version = "1.5.1"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "bitflags"
|
|
107
|
+
version = "2.13.2"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bstr"
|
|
113
|
+
version = "1.13.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"memchr",
|
|
118
|
+
"regex-automata",
|
|
119
|
+
"serde_core",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "cfg-if"
|
|
124
|
+
version = "1.0.5"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "4e7648175b45a9a48536d676f68d918270699102aa8dab5496df06904c914600"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "clap"
|
|
130
|
+
version = "4.6.7"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "aa8876b300ab35ba921adea3dfd70157a46249b33f95c9084ae5709785478946"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"clap_builder",
|
|
135
|
+
"clap_derive",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "clap_builder"
|
|
140
|
+
version = "4.6.7"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "ec0797fb7aeb1406c84efac526901f7ec3ead2124f946b494e72879d4b54704d"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"anstream",
|
|
145
|
+
"anstyle",
|
|
146
|
+
"clap_lex",
|
|
147
|
+
"strsim",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "clap_complete"
|
|
152
|
+
version = "4.6.11"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "037e2a1a92236d0aff7e845093f64661d6df4c02c9fcc61a60e9e1d736fa392f"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"clap",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "clap_derive"
|
|
161
|
+
version = "4.6.7"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "f9c751b79415d4e559e3d1fcf128e09e720eb673a06d26cf6f392d37d75b66e0"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"heck",
|
|
166
|
+
"proc-macro2",
|
|
167
|
+
"quote",
|
|
168
|
+
"syn",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "clap_lex"
|
|
173
|
+
version = "1.1.1"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "1c133bc6a41be0d194c306b5506d15e6feeea7b1d6604bd3f8310dfb2ca96486"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "colorchoice"
|
|
179
|
+
version = "1.0.5"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "crossbeam-deque"
|
|
185
|
+
version = "0.8.8"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"crossbeam-epoch",
|
|
190
|
+
"crossbeam-utils",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "crossbeam-epoch"
|
|
195
|
+
version = "0.9.21"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"crossbeam-utils",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "crossbeam-utils"
|
|
204
|
+
version = "0.8.23"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "difflib"
|
|
210
|
+
version = "0.4.0"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "dotenv"
|
|
216
|
+
version = "0.15.0"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "equivalent"
|
|
222
|
+
version = "1.0.2"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "errno"
|
|
228
|
+
version = "0.3.14"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"libc",
|
|
233
|
+
"windows-sys",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "fastrand"
|
|
238
|
+
version = "2.5.0"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "float-cmp"
|
|
244
|
+
version = "0.10.0"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"num-traits",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "getrandom"
|
|
253
|
+
version = "0.4.3"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"cfg-if",
|
|
258
|
+
"libc",
|
|
259
|
+
"r-efi",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "globset"
|
|
264
|
+
version = "0.4.20"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "07c34a9410465b45bd9787443bc7370f37735bad04b0f0cd57ff1a3186c98988"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"aho-corasick",
|
|
269
|
+
"bstr",
|
|
270
|
+
"log",
|
|
271
|
+
"regex-automata",
|
|
272
|
+
"regex-syntax",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "globwalk"
|
|
277
|
+
version = "0.9.1"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"bitflags",
|
|
282
|
+
"ignore",
|
|
283
|
+
"walkdir",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "hashbrown"
|
|
288
|
+
version = "0.17.1"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "heck"
|
|
294
|
+
version = "0.5.0"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "ignore"
|
|
300
|
+
version = "0.4.33"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "00b69833ed729dc5aa7d19541d96d6cf8e9137194207a04916d658e43168402f"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"crossbeam-deque",
|
|
305
|
+
"globset",
|
|
306
|
+
"log",
|
|
307
|
+
"memchr",
|
|
308
|
+
"regex-automata",
|
|
309
|
+
"same-file",
|
|
310
|
+
"walkdir",
|
|
311
|
+
"winapi-util",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "indexmap"
|
|
316
|
+
version = "2.14.2"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"equivalent",
|
|
321
|
+
"hashbrown",
|
|
322
|
+
"serde",
|
|
323
|
+
"serde_core",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "is_terminal_polyfill"
|
|
328
|
+
version = "1.70.2"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "itoa"
|
|
334
|
+
version = "1.0.18"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "libc"
|
|
340
|
+
version = "0.2.189"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "linux-raw-sys"
|
|
346
|
+
version = "0.12.1"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "log"
|
|
352
|
+
version = "0.4.34"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "memchr"
|
|
358
|
+
version = "2.8.3"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "normalize-line-endings"
|
|
364
|
+
version = "0.3.0"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "num-traits"
|
|
370
|
+
version = "0.2.19"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"autocfg",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "once_cell"
|
|
379
|
+
version = "1.21.4"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "once_cell_polyfill"
|
|
385
|
+
version = "1.70.2"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "predicates"
|
|
391
|
+
version = "3.1.4"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"anstyle",
|
|
396
|
+
"difflib",
|
|
397
|
+
"float-cmp",
|
|
398
|
+
"normalize-line-endings",
|
|
399
|
+
"predicates-core",
|
|
400
|
+
"regex",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "predicates-core"
|
|
405
|
+
version = "1.0.10"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "predicates-tree"
|
|
411
|
+
version = "1.0.13"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"predicates-core",
|
|
416
|
+
"termtree",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "proc-macro2"
|
|
421
|
+
version = "1.0.107"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"unicode-ident",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "quote"
|
|
430
|
+
version = "1.0.47"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"proc-macro2",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "r-efi"
|
|
439
|
+
version = "6.0.0"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "regex"
|
|
445
|
+
version = "1.13.1"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"aho-corasick",
|
|
450
|
+
"memchr",
|
|
451
|
+
"regex-automata",
|
|
452
|
+
"regex-syntax",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "regex-automata"
|
|
457
|
+
version = "0.4.18"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"aho-corasick",
|
|
462
|
+
"memchr",
|
|
463
|
+
"regex-syntax",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "regex-syntax"
|
|
468
|
+
version = "0.8.11"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "rustix"
|
|
474
|
+
version = "1.1.5"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "891efababe418670775f199f0d233d84843c227a0949a883ce15b37c78d6629d"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"bitflags",
|
|
479
|
+
"errno",
|
|
480
|
+
"libc",
|
|
481
|
+
"linux-raw-sys",
|
|
482
|
+
"windows-sys",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "ryu"
|
|
487
|
+
version = "1.0.23"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "same-file"
|
|
493
|
+
version = "1.0.6"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"winapi-util",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "serde"
|
|
502
|
+
version = "1.0.229"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"serde_core",
|
|
507
|
+
"serde_derive",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "serde_core"
|
|
512
|
+
version = "1.0.229"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"serde_derive",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "serde_derive"
|
|
521
|
+
version = "1.0.229"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"proc-macro2",
|
|
526
|
+
"quote",
|
|
527
|
+
"syn",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "serde_json"
|
|
532
|
+
version = "1.0.151"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"itoa",
|
|
537
|
+
"memchr",
|
|
538
|
+
"serde",
|
|
539
|
+
"serde_core",
|
|
540
|
+
"zmij",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "serde_spanned"
|
|
545
|
+
version = "1.1.1"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"serde_core",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "serde_yaml"
|
|
554
|
+
version = "0.9.34+deprecated"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"indexmap",
|
|
559
|
+
"itoa",
|
|
560
|
+
"ryu",
|
|
561
|
+
"serde",
|
|
562
|
+
"unsafe-libyaml",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "settingspec"
|
|
567
|
+
version = "0.1.0"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"anyhow",
|
|
570
|
+
"assert_cmd",
|
|
571
|
+
"assert_fs",
|
|
572
|
+
"clap",
|
|
573
|
+
"clap_complete",
|
|
574
|
+
"dotenv",
|
|
575
|
+
"indexmap",
|
|
576
|
+
"predicates",
|
|
577
|
+
"serde",
|
|
578
|
+
"serde_json",
|
|
579
|
+
"serde_yaml",
|
|
580
|
+
"tempfile",
|
|
581
|
+
"toml",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "strsim"
|
|
586
|
+
version = "0.11.1"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "syn"
|
|
592
|
+
version = "3.0.6"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"proc-macro2",
|
|
597
|
+
"quote",
|
|
598
|
+
"unicode-ident",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "tempfile"
|
|
603
|
+
version = "3.27.0"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"fastrand",
|
|
608
|
+
"getrandom",
|
|
609
|
+
"once_cell",
|
|
610
|
+
"rustix",
|
|
611
|
+
"windows-sys",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "termtree"
|
|
616
|
+
version = "0.5.1"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "toml"
|
|
622
|
+
version = "1.1.6+spec-1.1.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "920602543f0911ab71da12c50d59701da54c196d1a2bf5cb4b75667f137a406a"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"indexmap",
|
|
627
|
+
"serde_core",
|
|
628
|
+
"serde_spanned",
|
|
629
|
+
"toml_datetime",
|
|
630
|
+
"toml_parser",
|
|
631
|
+
"toml_writer",
|
|
632
|
+
"winnow",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "toml_datetime"
|
|
637
|
+
version = "1.1.1+spec-1.1.0"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"serde_core",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "toml_parser"
|
|
646
|
+
version = "1.1.3+spec-1.1.0"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"winnow",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "toml_writer"
|
|
655
|
+
version = "1.1.2+spec-1.1.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "unicode-ident"
|
|
661
|
+
version = "1.0.26"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "unsafe-libyaml"
|
|
667
|
+
version = "0.2.11"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "utf8parse"
|
|
673
|
+
version = "0.2.2"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "wait-timeout"
|
|
679
|
+
version = "0.2.1"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"libc",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "walkdir"
|
|
688
|
+
version = "2.5.0"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"same-file",
|
|
693
|
+
"winapi-util",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "winapi-util"
|
|
698
|
+
version = "0.1.11"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"windows-sys",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "windows-link"
|
|
707
|
+
version = "0.2.1"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "windows-sys"
|
|
713
|
+
version = "0.61.2"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"windows-link",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "winnow"
|
|
722
|
+
version = "1.0.4"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "zmij"
|
|
728
|
+
version = "1.0.23"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|