@repokit/core 0.0.1
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.
- package/.vscode/settings.json +11 -0
- package/Cargo.lock +517 -0
- package/Cargo.toml +26 -0
- package/README.md +204 -0
- package/dist/cjs/CommandParser.js +68 -0
- package/dist/cjs/ConfigurationParser.js +46 -0
- package/dist/cjs/RepoKitCommand.js +16 -0
- package/dist/cjs/RepoKitConfig.js +10 -0
- package/dist/cjs/TaskPooler.js +42 -0
- package/dist/cjs/commands/parse_commands.js +15 -0
- package/dist/cjs/commands/parse_configuration.js +15 -0
- package/dist/cjs/index.js +19 -0
- package/dist/cjs/package.json +3 -0
- package/dist/cjs/types.js +2 -0
- package/dist/mjs/CommandParser.js +51 -0
- package/dist/mjs/ConfigurationParser.js +31 -0
- package/dist/mjs/RepoKitCommand.js +16 -0
- package/dist/mjs/RepoKitConfig.js +8 -0
- package/dist/mjs/TaskPooler.js +28 -0
- package/dist/mjs/commands/parse_commands.js +4 -0
- package/dist/mjs/commands/parse_configuration.js +4 -0
- package/dist/mjs/index.js +3 -0
- package/dist/mjs/package.json +4 -0
- package/dist/mjs/types.js +1 -0
- package/dist/types/CommandParser.d.ts +5 -0
- package/dist/types/ConfigurationParser.d.ts +4 -0
- package/dist/types/RepoKitCommand.d.ts +14 -0
- package/dist/types/RepoKitConfig.d.ts +6 -0
- package/dist/types/TaskPooler.d.ts +10 -0
- package/dist/types/commands/parse_commands.d.ts +1 -0
- package/dist/types/commands/parse_configuration.d.ts +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/types.d.ts +18 -0
- package/install.sh +43 -0
- package/package.json +40 -0
- package/repokit.ts +36 -0
- package/src/CommandParser.ts +59 -0
- package/src/ConfigurationParser.ts +34 -0
- package/src/RepoKitCommand.ts +24 -0
- package/src/RepoKitConfig.ts +10 -0
- package/src/TaskPooler.ts +31 -0
- package/src/commands/parse_commands.ts +5 -0
- package/src/commands/parse_configuration.ts +5 -0
- package/src/index.ts +3 -0
- package/src/types.ts +22 -0
- package/tsconfig.json +24 -0
- package/workspaces/concurrency/mod.rs +1 -0
- package/workspaces/concurrency/thread_pool.rs +32 -0
- package/workspaces/configuration/configuration.rs +47 -0
- package/workspaces/configuration/configuration_template.ts +23 -0
- package/workspaces/configuration/mod.rs +1 -0
- package/workspaces/executables/external_executable.rs +4 -0
- package/workspaces/executables/intenal_executable.rs +9 -0
- package/workspaces/executables/internal_executable_definition.rs +8 -0
- package/workspaces/executables/mod.rs +3 -0
- package/workspaces/executor/executor.rs +62 -0
- package/workspaces/executor/mod.rs +1 -0
- package/workspaces/external_commands/external_commands.rs +125 -0
- package/workspaces/external_commands/mod.rs +1 -0
- package/workspaces/internal_commands/command_template.ts +24 -0
- package/workspaces/internal_commands/help.rs +146 -0
- package/workspaces/internal_commands/internal_registry.rs +59 -0
- package/workspaces/internal_commands/list_commands.rs +106 -0
- package/workspaces/internal_commands/list_owners.rs +74 -0
- package/workspaces/internal_commands/locate_command.rs +78 -0
- package/workspaces/internal_commands/mod.rs +10 -0
- package/workspaces/internal_commands/onboarder.rs +66 -0
- package/workspaces/internal_commands/register_command.rs +117 -0
- package/workspaces/internal_commands/search_commands.rs +189 -0
- package/workspaces/internal_commands/typescript_command.rs +63 -0
- package/workspaces/internal_commands/upgrade_repokit.rs +76 -0
- package/workspaces/logger/logger.rs +98 -0
- package/workspaces/logger/mod.rs +1 -0
- package/workspaces/main.rs +21 -0
- package/workspaces/repokit/interfaces.rs +41 -0
- package/workspaces/repokit/mod.rs +2 -0
- package/workspaces/repokit/repokit.rs +141 -0
- package/workspaces/validations/command_validations.rs +140 -0
- package/workspaces/validations/mod.rs +1 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,517 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "alphanumeric-sort"
|
|
7
|
+
version = "1.5.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "774ffdfeac16e9b4d75e41225dc2545d9c2082a0634b5d7f6f70e168546eecb1"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "arrayref"
|
|
13
|
+
version = "0.3.9"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "arrayvec"
|
|
19
|
+
version = "0.5.2"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "base64"
|
|
25
|
+
version = "0.13.1"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "blake2b_simd"
|
|
31
|
+
version = "0.5.11"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"arrayref",
|
|
36
|
+
"arrayvec",
|
|
37
|
+
"constant_time_eq",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "byteorder"
|
|
42
|
+
version = "1.5.0"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "cfg-if"
|
|
48
|
+
version = "1.0.4"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "clippy"
|
|
54
|
+
version = "0.0.302"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "d911ee15579a3f50880d8c1d59ef6e79f9533127a3bd342462f5d584f5e8c294"
|
|
57
|
+
dependencies = [
|
|
58
|
+
"term",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "colored"
|
|
63
|
+
version = "3.1.1"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"windows-sys",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "constant_time_eq"
|
|
72
|
+
version = "0.1.5"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "crossbeam"
|
|
78
|
+
version = "0.8.4"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"crossbeam-channel",
|
|
83
|
+
"crossbeam-deque",
|
|
84
|
+
"crossbeam-epoch",
|
|
85
|
+
"crossbeam-queue",
|
|
86
|
+
"crossbeam-utils",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "crossbeam-channel"
|
|
91
|
+
version = "0.5.15"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"crossbeam-utils",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "crossbeam-deque"
|
|
100
|
+
version = "0.8.6"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"crossbeam-epoch",
|
|
105
|
+
"crossbeam-utils",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "crossbeam-epoch"
|
|
110
|
+
version = "0.9.18"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"crossbeam-utils",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "crossbeam-queue"
|
|
119
|
+
version = "0.3.12"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"crossbeam-utils",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "crossbeam-utils"
|
|
128
|
+
version = "0.8.21"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "dirs"
|
|
134
|
+
version = "1.0.5"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"libc",
|
|
139
|
+
"redox_users",
|
|
140
|
+
"winapi",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "either"
|
|
145
|
+
version = "1.15.0"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "futures"
|
|
151
|
+
version = "0.3.31"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"futures-channel",
|
|
156
|
+
"futures-core",
|
|
157
|
+
"futures-executor",
|
|
158
|
+
"futures-io",
|
|
159
|
+
"futures-sink",
|
|
160
|
+
"futures-task",
|
|
161
|
+
"futures-util",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "futures-channel"
|
|
166
|
+
version = "0.3.31"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"futures-core",
|
|
171
|
+
"futures-sink",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "futures-core"
|
|
176
|
+
version = "0.3.31"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "futures-executor"
|
|
182
|
+
version = "0.3.31"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"futures-core",
|
|
187
|
+
"futures-task",
|
|
188
|
+
"futures-util",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "futures-io"
|
|
193
|
+
version = "0.3.31"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "futures-macro"
|
|
199
|
+
version = "0.3.31"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"proc-macro2",
|
|
204
|
+
"quote",
|
|
205
|
+
"syn",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "futures-sink"
|
|
210
|
+
version = "0.3.31"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "futures-task"
|
|
216
|
+
version = "0.3.31"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "futures-util"
|
|
222
|
+
version = "0.3.31"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"futures-channel",
|
|
227
|
+
"futures-core",
|
|
228
|
+
"futures-io",
|
|
229
|
+
"futures-macro",
|
|
230
|
+
"futures-sink",
|
|
231
|
+
"futures-task",
|
|
232
|
+
"memchr",
|
|
233
|
+
"pin-project-lite",
|
|
234
|
+
"pin-utils",
|
|
235
|
+
"slab",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "getrandom"
|
|
240
|
+
version = "0.1.16"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"cfg-if",
|
|
245
|
+
"libc",
|
|
246
|
+
"wasi",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "itoa"
|
|
251
|
+
version = "1.0.17"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "jwalk"
|
|
257
|
+
version = "0.8.1"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"crossbeam",
|
|
262
|
+
"rayon",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "lexopt"
|
|
267
|
+
version = "0.3.1"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "9fa0e2a1fcbe2f6be6c42e342259976206b383122fc152e872795338b5a3f3a7"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "libc"
|
|
273
|
+
version = "0.2.180"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "memchr"
|
|
279
|
+
version = "2.7.6"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "normalize-path"
|
|
285
|
+
version = "0.2.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "f5438dd2b2ff4c6df6e1ce22d825ed2fa93ee2922235cc45186991717f0a892d"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "pin-project-lite"
|
|
291
|
+
version = "0.2.16"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "pin-utils"
|
|
297
|
+
version = "0.1.0"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "proc-macro2"
|
|
303
|
+
version = "1.0.106"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"unicode-ident",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "quote"
|
|
312
|
+
version = "1.0.44"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"proc-macro2",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "rayon"
|
|
321
|
+
version = "1.11.0"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"either",
|
|
326
|
+
"rayon-core",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "rayon-core"
|
|
331
|
+
version = "1.13.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"crossbeam-deque",
|
|
336
|
+
"crossbeam-utils",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "redox_syscall"
|
|
341
|
+
version = "0.1.57"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "redox_users"
|
|
347
|
+
version = "0.3.5"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"getrandom",
|
|
352
|
+
"redox_syscall",
|
|
353
|
+
"rust-argon2",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "repokit"
|
|
358
|
+
version = "0.1.0"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"alphanumeric-sort",
|
|
361
|
+
"clippy",
|
|
362
|
+
"colored",
|
|
363
|
+
"futures",
|
|
364
|
+
"jwalk",
|
|
365
|
+
"lexopt",
|
|
366
|
+
"normalize-path",
|
|
367
|
+
"serde",
|
|
368
|
+
"serde_json",
|
|
369
|
+
"tokio",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "rust-argon2"
|
|
374
|
+
version = "0.8.3"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"base64",
|
|
379
|
+
"blake2b_simd",
|
|
380
|
+
"constant_time_eq",
|
|
381
|
+
"crossbeam-utils",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "serde"
|
|
386
|
+
version = "1.0.228"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"serde_core",
|
|
391
|
+
"serde_derive",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "serde_core"
|
|
396
|
+
version = "1.0.228"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"serde_derive",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "serde_derive"
|
|
405
|
+
version = "1.0.228"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"proc-macro2",
|
|
410
|
+
"quote",
|
|
411
|
+
"syn",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "serde_json"
|
|
416
|
+
version = "1.0.149"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"itoa",
|
|
421
|
+
"memchr",
|
|
422
|
+
"serde",
|
|
423
|
+
"serde_core",
|
|
424
|
+
"zmij",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "slab"
|
|
429
|
+
version = "0.4.11"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "syn"
|
|
435
|
+
version = "2.0.114"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"proc-macro2",
|
|
440
|
+
"quote",
|
|
441
|
+
"unicode-ident",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "term"
|
|
446
|
+
version = "0.5.2"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42"
|
|
449
|
+
dependencies = [
|
|
450
|
+
"byteorder",
|
|
451
|
+
"dirs",
|
|
452
|
+
"winapi",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "tokio"
|
|
457
|
+
version = "1.49.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"pin-project-lite",
|
|
462
|
+
]
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "unicode-ident"
|
|
466
|
+
version = "1.0.22"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "wasi"
|
|
472
|
+
version = "0.9.0+wasi-snapshot-preview1"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "winapi"
|
|
478
|
+
version = "0.3.9"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"winapi-i686-pc-windows-gnu",
|
|
483
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
488
|
+
version = "0.4.0"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
494
|
+
version = "0.4.0"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "windows-link"
|
|
500
|
+
version = "0.2.1"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "windows-sys"
|
|
506
|
+
version = "0.61.2"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"windows-link",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "zmij"
|
|
515
|
+
version = "1.0.17"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"
|
package/Cargo.toml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "repokit"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
edition = "2024"
|
|
5
|
+
|
|
6
|
+
[lib]
|
|
7
|
+
name = "repokit"
|
|
8
|
+
path = "workspaces/main.rs"
|
|
9
|
+
|
|
10
|
+
[[bin]]
|
|
11
|
+
name = "repokit"
|
|
12
|
+
path = "workspaces/main.rs"
|
|
13
|
+
|
|
14
|
+
[dependencies]
|
|
15
|
+
serde = { version = "1.0", features = ["derive"] }
|
|
16
|
+
serde_json = "1.0"
|
|
17
|
+
colored = "3"
|
|
18
|
+
lexopt = "0.3.1"
|
|
19
|
+
normalize-path = "0.2.1"
|
|
20
|
+
tokio = { version = "1.49.0", features = ["rt-multi-thread"] }
|
|
21
|
+
futures = "0.3.31"
|
|
22
|
+
clippy = "0.0.302"
|
|
23
|
+
jwalk = "0.8.1"
|
|
24
|
+
alphanumeric-sort = "1.5.5"
|
|
25
|
+
|
|
26
|
+
|