libcodeowners 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.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +124 -0
- data/Cargo.lock +1129 -0
- data/Cargo.toml +7 -0
- data/README.md +27 -0
- data/Rakefile +19 -0
- data/ext/libcodeowners/Cargo.toml +15 -0
- data/ext/libcodeowners/extconf.rb +6 -0
- data/ext/libcodeowners/src/lib.rs +76 -0
- data/ext/libcodeowners/tests/fixtures/valid_project/config/teams/bar.yml +5 -0
- data/ext/libcodeowners/tests/fixtures/valid_project/config/teams/foo.yml +5 -0
- data/ext/libcodeowners/tests/fixtures/valid_project/ruby/app/bar/bar_none.rb +0 -0
- data/ext/libcodeowners/tests/fixtures/valid_project/ruby/app/foo/foo_none.rb +0 -0
- data/lib/libcodeowners/file_path_finder.rb +63 -0
- data/lib/libcodeowners/file_path_team_cache.rb +39 -0
- data/lib/libcodeowners/team_finder.rb +72 -0
- data/lib/libcodeowners/version.rb +5 -0
- data/lib/libcodeowners.rb +53 -0
- data/sig/libcodeowners.rbs +4 -0
- data/sorbet/config +6 -0
- data/sorbet/rbi/gems/code_teams@1.0.0.rbi +120 -0
- data/sorbet/rbi/gems/packs@0.0.2.rbi +80 -0
- data/sorbet/rbi/gems/packwerk@3.0.1.rbi +92 -0
- data/sorbet/rbi/manual.rbi +10 -0
- data/sorbet/rbi/todo.rbi +6 -0
- metadata +227 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,1129 @@
|
|
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.7.8"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
10
|
+
dependencies = [
|
11
|
+
"getrandom 0.2.15",
|
12
|
+
"once_cell",
|
13
|
+
"version_check",
|
14
|
+
]
|
15
|
+
|
16
|
+
[[package]]
|
17
|
+
name = "aho-corasick"
|
18
|
+
version = "1.1.3"
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
20
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
21
|
+
dependencies = [
|
22
|
+
"memchr",
|
23
|
+
]
|
24
|
+
|
25
|
+
[[package]]
|
26
|
+
name = "anstream"
|
27
|
+
version = "0.6.18"
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
29
|
+
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
|
30
|
+
dependencies = [
|
31
|
+
"anstyle",
|
32
|
+
"anstyle-parse",
|
33
|
+
"anstyle-query",
|
34
|
+
"anstyle-wincon",
|
35
|
+
"colorchoice",
|
36
|
+
"is_terminal_polyfill",
|
37
|
+
"utf8parse",
|
38
|
+
]
|
39
|
+
|
40
|
+
[[package]]
|
41
|
+
name = "anstyle"
|
42
|
+
version = "1.0.10"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "anstyle-parse"
|
48
|
+
version = "0.2.6"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
|
51
|
+
dependencies = [
|
52
|
+
"utf8parse",
|
53
|
+
]
|
54
|
+
|
55
|
+
[[package]]
|
56
|
+
name = "anstyle-query"
|
57
|
+
version = "1.1.2"
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
59
|
+
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
|
60
|
+
dependencies = [
|
61
|
+
"windows-sys",
|
62
|
+
]
|
63
|
+
|
64
|
+
[[package]]
|
65
|
+
name = "anstyle-wincon"
|
66
|
+
version = "3.0.7"
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
+
checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
|
69
|
+
dependencies = [
|
70
|
+
"anstyle",
|
71
|
+
"once_cell",
|
72
|
+
"windows-sys",
|
73
|
+
]
|
74
|
+
|
75
|
+
[[package]]
|
76
|
+
name = "anyhow"
|
77
|
+
version = "1.0.97"
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
79
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
80
|
+
|
81
|
+
[[package]]
|
82
|
+
name = "arrayvec"
|
83
|
+
version = "0.7.6"
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
85
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
86
|
+
|
87
|
+
[[package]]
|
88
|
+
name = "bindgen"
|
89
|
+
version = "0.69.5"
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
91
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
92
|
+
dependencies = [
|
93
|
+
"bitflags",
|
94
|
+
"cexpr",
|
95
|
+
"clang-sys",
|
96
|
+
"itertools 0.12.1",
|
97
|
+
"lazy_static",
|
98
|
+
"lazycell",
|
99
|
+
"proc-macro2",
|
100
|
+
"quote",
|
101
|
+
"regex",
|
102
|
+
"rustc-hash",
|
103
|
+
"shlex",
|
104
|
+
"syn 2.0.99",
|
105
|
+
]
|
106
|
+
|
107
|
+
[[package]]
|
108
|
+
name = "bitflags"
|
109
|
+
version = "2.9.0"
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
111
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
112
|
+
|
113
|
+
[[package]]
|
114
|
+
name = "bstr"
|
115
|
+
version = "1.11.3"
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
+
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
|
118
|
+
dependencies = [
|
119
|
+
"memchr",
|
120
|
+
"serde",
|
121
|
+
]
|
122
|
+
|
123
|
+
[[package]]
|
124
|
+
name = "cexpr"
|
125
|
+
version = "0.6.0"
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
128
|
+
dependencies = [
|
129
|
+
"nom",
|
130
|
+
]
|
131
|
+
|
132
|
+
[[package]]
|
133
|
+
name = "cfg-if"
|
134
|
+
version = "1.0.0"
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
137
|
+
|
138
|
+
[[package]]
|
139
|
+
name = "clang-sys"
|
140
|
+
version = "1.8.1"
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
142
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
143
|
+
dependencies = [
|
144
|
+
"glob",
|
145
|
+
"libc",
|
146
|
+
"libloading",
|
147
|
+
]
|
148
|
+
|
149
|
+
[[package]]
|
150
|
+
name = "clap"
|
151
|
+
version = "4.5.31"
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
153
|
+
checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767"
|
154
|
+
dependencies = [
|
155
|
+
"clap_builder",
|
156
|
+
"clap_derive",
|
157
|
+
]
|
158
|
+
|
159
|
+
[[package]]
|
160
|
+
name = "clap_builder"
|
161
|
+
version = "4.5.31"
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
+
checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863"
|
164
|
+
dependencies = [
|
165
|
+
"anstream",
|
166
|
+
"anstyle",
|
167
|
+
"clap_lex",
|
168
|
+
"strsim",
|
169
|
+
]
|
170
|
+
|
171
|
+
[[package]]
|
172
|
+
name = "clap_derive"
|
173
|
+
version = "4.5.28"
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
175
|
+
checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed"
|
176
|
+
dependencies = [
|
177
|
+
"heck",
|
178
|
+
"proc-macro2",
|
179
|
+
"quote",
|
180
|
+
"syn 2.0.99",
|
181
|
+
]
|
182
|
+
|
183
|
+
[[package]]
|
184
|
+
name = "clap_lex"
|
185
|
+
version = "0.7.4"
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
188
|
+
|
189
|
+
[[package]]
|
190
|
+
name = "codeowners"
|
191
|
+
version = "0.2.4"
|
192
|
+
source = "git+https://github.com/rubyatscale/codeowners-rs.git?tag=v0.2.4#d41931234a8fc45f3fa75b02ae588c2cce1b20aa"
|
193
|
+
dependencies = [
|
194
|
+
"clap",
|
195
|
+
"clap_derive",
|
196
|
+
"enum_dispatch",
|
197
|
+
"error-stack",
|
198
|
+
"fast-glob",
|
199
|
+
"glob",
|
200
|
+
"ignore",
|
201
|
+
"itertools 0.14.0",
|
202
|
+
"lazy_static",
|
203
|
+
"memoize",
|
204
|
+
"path-clean",
|
205
|
+
"rayon",
|
206
|
+
"regex",
|
207
|
+
"serde",
|
208
|
+
"serde_json",
|
209
|
+
"serde_yaml",
|
210
|
+
"tempfile",
|
211
|
+
"tracing",
|
212
|
+
"tracing-subscriber",
|
213
|
+
]
|
214
|
+
|
215
|
+
[[package]]
|
216
|
+
name = "colorchoice"
|
217
|
+
version = "1.0.3"
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
219
|
+
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
220
|
+
|
221
|
+
[[package]]
|
222
|
+
name = "crossbeam-deque"
|
223
|
+
version = "0.8.6"
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
225
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
226
|
+
dependencies = [
|
227
|
+
"crossbeam-epoch",
|
228
|
+
"crossbeam-utils",
|
229
|
+
]
|
230
|
+
|
231
|
+
[[package]]
|
232
|
+
name = "crossbeam-epoch"
|
233
|
+
version = "0.9.18"
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
235
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
236
|
+
dependencies = [
|
237
|
+
"crossbeam-utils",
|
238
|
+
]
|
239
|
+
|
240
|
+
[[package]]
|
241
|
+
name = "crossbeam-utils"
|
242
|
+
version = "0.8.21"
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
244
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
245
|
+
|
246
|
+
[[package]]
|
247
|
+
name = "either"
|
248
|
+
version = "1.15.0"
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
250
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
251
|
+
|
252
|
+
[[package]]
|
253
|
+
name = "enum_dispatch"
|
254
|
+
version = "0.3.13"
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
256
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
257
|
+
dependencies = [
|
258
|
+
"once_cell",
|
259
|
+
"proc-macro2",
|
260
|
+
"quote",
|
261
|
+
"syn 2.0.99",
|
262
|
+
]
|
263
|
+
|
264
|
+
[[package]]
|
265
|
+
name = "equivalent"
|
266
|
+
version = "1.0.2"
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
269
|
+
|
270
|
+
[[package]]
|
271
|
+
name = "errno"
|
272
|
+
version = "0.3.10"
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
275
|
+
dependencies = [
|
276
|
+
"libc",
|
277
|
+
"windows-sys",
|
278
|
+
]
|
279
|
+
|
280
|
+
[[package]]
|
281
|
+
name = "error-stack"
|
282
|
+
version = "0.5.0"
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
284
|
+
checksum = "fe413319145d1063f080f27556fd30b1d70b01e2ba10c2a6e40d4be982ffc5d1"
|
285
|
+
dependencies = [
|
286
|
+
"anyhow",
|
287
|
+
"rustc_version",
|
288
|
+
]
|
289
|
+
|
290
|
+
[[package]]
|
291
|
+
name = "fast-glob"
|
292
|
+
version = "0.4.5"
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
294
|
+
checksum = "39ea3f6bbcf4dbe2076b372186fc7aeecd5f6f84754582e56ee7db262b15a6f0"
|
295
|
+
dependencies = [
|
296
|
+
"arrayvec",
|
297
|
+
]
|
298
|
+
|
299
|
+
[[package]]
|
300
|
+
name = "fastrand"
|
301
|
+
version = "2.3.0"
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
304
|
+
|
305
|
+
[[package]]
|
306
|
+
name = "getrandom"
|
307
|
+
version = "0.2.15"
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
310
|
+
dependencies = [
|
311
|
+
"cfg-if",
|
312
|
+
"libc",
|
313
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
314
|
+
]
|
315
|
+
|
316
|
+
[[package]]
|
317
|
+
name = "getrandom"
|
318
|
+
version = "0.3.1"
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
320
|
+
checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
|
321
|
+
dependencies = [
|
322
|
+
"cfg-if",
|
323
|
+
"libc",
|
324
|
+
"wasi 0.13.3+wasi-0.2.2",
|
325
|
+
"windows-targets",
|
326
|
+
]
|
327
|
+
|
328
|
+
[[package]]
|
329
|
+
name = "glob"
|
330
|
+
version = "0.3.2"
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
332
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
333
|
+
|
334
|
+
[[package]]
|
335
|
+
name = "globset"
|
336
|
+
version = "0.4.16"
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
338
|
+
checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
|
339
|
+
dependencies = [
|
340
|
+
"aho-corasick",
|
341
|
+
"bstr",
|
342
|
+
"log",
|
343
|
+
"regex-automata 0.4.9",
|
344
|
+
"regex-syntax 0.8.5",
|
345
|
+
]
|
346
|
+
|
347
|
+
[[package]]
|
348
|
+
name = "hashbrown"
|
349
|
+
version = "0.12.3"
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
351
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
352
|
+
dependencies = [
|
353
|
+
"ahash",
|
354
|
+
]
|
355
|
+
|
356
|
+
[[package]]
|
357
|
+
name = "hashbrown"
|
358
|
+
version = "0.15.2"
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
361
|
+
|
362
|
+
[[package]]
|
363
|
+
name = "heck"
|
364
|
+
version = "0.5.0"
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
367
|
+
|
368
|
+
[[package]]
|
369
|
+
name = "ignore"
|
370
|
+
version = "0.4.23"
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
372
|
+
checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
|
373
|
+
dependencies = [
|
374
|
+
"crossbeam-deque",
|
375
|
+
"globset",
|
376
|
+
"log",
|
377
|
+
"memchr",
|
378
|
+
"regex-automata 0.4.9",
|
379
|
+
"same-file",
|
380
|
+
"walkdir",
|
381
|
+
"winapi-util",
|
382
|
+
]
|
383
|
+
|
384
|
+
[[package]]
|
385
|
+
name = "indexmap"
|
386
|
+
version = "2.7.1"
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
+
checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
|
389
|
+
dependencies = [
|
390
|
+
"equivalent",
|
391
|
+
"hashbrown 0.15.2",
|
392
|
+
]
|
393
|
+
|
394
|
+
[[package]]
|
395
|
+
name = "is_terminal_polyfill"
|
396
|
+
version = "1.70.1"
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
398
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
399
|
+
|
400
|
+
[[package]]
|
401
|
+
name = "itertools"
|
402
|
+
version = "0.12.1"
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
405
|
+
dependencies = [
|
406
|
+
"either",
|
407
|
+
]
|
408
|
+
|
409
|
+
[[package]]
|
410
|
+
name = "itertools"
|
411
|
+
version = "0.14.0"
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
413
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
414
|
+
dependencies = [
|
415
|
+
"either",
|
416
|
+
]
|
417
|
+
|
418
|
+
[[package]]
|
419
|
+
name = "itoa"
|
420
|
+
version = "1.0.15"
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
422
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
423
|
+
|
424
|
+
[[package]]
|
425
|
+
name = "lazy_static"
|
426
|
+
version = "1.5.0"
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
429
|
+
|
430
|
+
[[package]]
|
431
|
+
name = "lazycell"
|
432
|
+
version = "1.3.0"
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
434
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
435
|
+
|
436
|
+
[[package]]
|
437
|
+
name = "libc"
|
438
|
+
version = "0.2.170"
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
+
checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
|
441
|
+
|
442
|
+
[[package]]
|
443
|
+
name = "libcodeowners"
|
444
|
+
version = "0.1.0"
|
445
|
+
dependencies = [
|
446
|
+
"codeowners",
|
447
|
+
"magnus",
|
448
|
+
"serde",
|
449
|
+
"serde_magnus",
|
450
|
+
]
|
451
|
+
|
452
|
+
[[package]]
|
453
|
+
name = "libloading"
|
454
|
+
version = "0.8.6"
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
456
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
457
|
+
dependencies = [
|
458
|
+
"cfg-if",
|
459
|
+
"windows-targets",
|
460
|
+
]
|
461
|
+
|
462
|
+
[[package]]
|
463
|
+
name = "linux-raw-sys"
|
464
|
+
version = "0.9.2"
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
466
|
+
checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9"
|
467
|
+
|
468
|
+
[[package]]
|
469
|
+
name = "log"
|
470
|
+
version = "0.4.26"
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
472
|
+
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
473
|
+
|
474
|
+
[[package]]
|
475
|
+
name = "lru"
|
476
|
+
version = "0.7.8"
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
478
|
+
checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a"
|
479
|
+
dependencies = [
|
480
|
+
"hashbrown 0.12.3",
|
481
|
+
]
|
482
|
+
|
483
|
+
[[package]]
|
484
|
+
name = "magnus"
|
485
|
+
version = "0.7.1"
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
487
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
488
|
+
dependencies = [
|
489
|
+
"magnus-macros",
|
490
|
+
"rb-sys",
|
491
|
+
"rb-sys-env",
|
492
|
+
"seq-macro",
|
493
|
+
]
|
494
|
+
|
495
|
+
[[package]]
|
496
|
+
name = "magnus-macros"
|
497
|
+
version = "0.6.0"
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
499
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
500
|
+
dependencies = [
|
501
|
+
"proc-macro2",
|
502
|
+
"quote",
|
503
|
+
"syn 2.0.99",
|
504
|
+
]
|
505
|
+
|
506
|
+
[[package]]
|
507
|
+
name = "matchers"
|
508
|
+
version = "0.1.0"
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
511
|
+
dependencies = [
|
512
|
+
"regex-automata 0.1.10",
|
513
|
+
]
|
514
|
+
|
515
|
+
[[package]]
|
516
|
+
name = "memchr"
|
517
|
+
version = "2.7.4"
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
519
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
520
|
+
|
521
|
+
[[package]]
|
522
|
+
name = "memoize"
|
523
|
+
version = "0.5.1"
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
525
|
+
checksum = "f8d1d5792299bab3f8b5d88d1b7a7cb50ad7ef039a8c4d45a6b84880a6526276"
|
526
|
+
dependencies = [
|
527
|
+
"lazy_static",
|
528
|
+
"lru",
|
529
|
+
"memoize-inner",
|
530
|
+
]
|
531
|
+
|
532
|
+
[[package]]
|
533
|
+
name = "memoize-inner"
|
534
|
+
version = "0.5.1"
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
+
checksum = "6dd8f89255d8ff313afabed9a3c83ef0993cc056679dfd001f5111a026f876f7"
|
537
|
+
dependencies = [
|
538
|
+
"lazy_static",
|
539
|
+
"proc-macro2",
|
540
|
+
"quote",
|
541
|
+
"syn 1.0.109",
|
542
|
+
]
|
543
|
+
|
544
|
+
[[package]]
|
545
|
+
name = "minimal-lexical"
|
546
|
+
version = "0.2.1"
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
548
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
549
|
+
|
550
|
+
[[package]]
|
551
|
+
name = "nom"
|
552
|
+
version = "7.1.3"
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
555
|
+
dependencies = [
|
556
|
+
"memchr",
|
557
|
+
"minimal-lexical",
|
558
|
+
]
|
559
|
+
|
560
|
+
[[package]]
|
561
|
+
name = "nu-ansi-term"
|
562
|
+
version = "0.46.0"
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
565
|
+
dependencies = [
|
566
|
+
"overload",
|
567
|
+
"winapi",
|
568
|
+
]
|
569
|
+
|
570
|
+
[[package]]
|
571
|
+
name = "once_cell"
|
572
|
+
version = "1.20.3"
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
574
|
+
checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
|
575
|
+
|
576
|
+
[[package]]
|
577
|
+
name = "overload"
|
578
|
+
version = "0.1.1"
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
580
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
581
|
+
|
582
|
+
[[package]]
|
583
|
+
name = "path-clean"
|
584
|
+
version = "1.0.1"
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
+
checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef"
|
587
|
+
|
588
|
+
[[package]]
|
589
|
+
name = "pin-project-lite"
|
590
|
+
version = "0.2.16"
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
592
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
593
|
+
|
594
|
+
[[package]]
|
595
|
+
name = "proc-macro2"
|
596
|
+
version = "1.0.94"
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
598
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
599
|
+
dependencies = [
|
600
|
+
"unicode-ident",
|
601
|
+
]
|
602
|
+
|
603
|
+
[[package]]
|
604
|
+
name = "quote"
|
605
|
+
version = "1.0.39"
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
607
|
+
checksum = "c1f1914ce909e1658d9907913b4b91947430c7d9be598b15a1912935b8c04801"
|
608
|
+
dependencies = [
|
609
|
+
"proc-macro2",
|
610
|
+
]
|
611
|
+
|
612
|
+
[[package]]
|
613
|
+
name = "rayon"
|
614
|
+
version = "1.10.0"
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
616
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
617
|
+
dependencies = [
|
618
|
+
"either",
|
619
|
+
"rayon-core",
|
620
|
+
]
|
621
|
+
|
622
|
+
[[package]]
|
623
|
+
name = "rayon-core"
|
624
|
+
version = "1.12.1"
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
627
|
+
dependencies = [
|
628
|
+
"crossbeam-deque",
|
629
|
+
"crossbeam-utils",
|
630
|
+
]
|
631
|
+
|
632
|
+
[[package]]
|
633
|
+
name = "rb-sys"
|
634
|
+
version = "0.9.111"
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
+
checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
|
637
|
+
dependencies = [
|
638
|
+
"rb-sys-build",
|
639
|
+
]
|
640
|
+
|
641
|
+
[[package]]
|
642
|
+
name = "rb-sys-build"
|
643
|
+
version = "0.9.111"
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
+
checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
|
646
|
+
dependencies = [
|
647
|
+
"bindgen",
|
648
|
+
"lazy_static",
|
649
|
+
"proc-macro2",
|
650
|
+
"quote",
|
651
|
+
"regex",
|
652
|
+
"shell-words",
|
653
|
+
"syn 2.0.99",
|
654
|
+
]
|
655
|
+
|
656
|
+
[[package]]
|
657
|
+
name = "rb-sys-env"
|
658
|
+
version = "0.1.2"
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
660
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
661
|
+
|
662
|
+
[[package]]
|
663
|
+
name = "regex"
|
664
|
+
version = "1.11.1"
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
666
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
667
|
+
dependencies = [
|
668
|
+
"aho-corasick",
|
669
|
+
"memchr",
|
670
|
+
"regex-automata 0.4.9",
|
671
|
+
"regex-syntax 0.8.5",
|
672
|
+
]
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "regex-automata"
|
676
|
+
version = "0.1.10"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
679
|
+
dependencies = [
|
680
|
+
"regex-syntax 0.6.29",
|
681
|
+
]
|
682
|
+
|
683
|
+
[[package]]
|
684
|
+
name = "regex-automata"
|
685
|
+
version = "0.4.9"
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
687
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
688
|
+
dependencies = [
|
689
|
+
"aho-corasick",
|
690
|
+
"memchr",
|
691
|
+
"regex-syntax 0.8.5",
|
692
|
+
]
|
693
|
+
|
694
|
+
[[package]]
|
695
|
+
name = "regex-syntax"
|
696
|
+
version = "0.6.29"
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
698
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
699
|
+
|
700
|
+
[[package]]
|
701
|
+
name = "regex-syntax"
|
702
|
+
version = "0.8.5"
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
704
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
705
|
+
|
706
|
+
[[package]]
|
707
|
+
name = "rustc-hash"
|
708
|
+
version = "1.1.0"
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
710
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
711
|
+
|
712
|
+
[[package]]
|
713
|
+
name = "rustc_version"
|
714
|
+
version = "0.4.1"
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
717
|
+
dependencies = [
|
718
|
+
"semver",
|
719
|
+
]
|
720
|
+
|
721
|
+
[[package]]
|
722
|
+
name = "rustix"
|
723
|
+
version = "1.0.0"
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
+
checksum = "17f8dcd64f141950290e45c99f7710ede1b600297c91818bb30b3667c0f45dc0"
|
726
|
+
dependencies = [
|
727
|
+
"bitflags",
|
728
|
+
"errno",
|
729
|
+
"libc",
|
730
|
+
"linux-raw-sys",
|
731
|
+
"windows-sys",
|
732
|
+
]
|
733
|
+
|
734
|
+
[[package]]
|
735
|
+
name = "ryu"
|
736
|
+
version = "1.0.20"
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
738
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
739
|
+
|
740
|
+
[[package]]
|
741
|
+
name = "same-file"
|
742
|
+
version = "1.0.6"
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
744
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
745
|
+
dependencies = [
|
746
|
+
"winapi-util",
|
747
|
+
]
|
748
|
+
|
749
|
+
[[package]]
|
750
|
+
name = "semver"
|
751
|
+
version = "1.0.26"
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
753
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
754
|
+
|
755
|
+
[[package]]
|
756
|
+
name = "seq-macro"
|
757
|
+
version = "0.3.6"
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "serde"
|
763
|
+
version = "1.0.218"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60"
|
766
|
+
dependencies = [
|
767
|
+
"serde_derive",
|
768
|
+
]
|
769
|
+
|
770
|
+
[[package]]
|
771
|
+
name = "serde_derive"
|
772
|
+
version = "1.0.218"
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
774
|
+
checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b"
|
775
|
+
dependencies = [
|
776
|
+
"proc-macro2",
|
777
|
+
"quote",
|
778
|
+
"syn 2.0.99",
|
779
|
+
]
|
780
|
+
|
781
|
+
[[package]]
|
782
|
+
name = "serde_json"
|
783
|
+
version = "1.0.140"
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
786
|
+
dependencies = [
|
787
|
+
"itoa",
|
788
|
+
"memchr",
|
789
|
+
"ryu",
|
790
|
+
"serde",
|
791
|
+
]
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "serde_magnus"
|
795
|
+
version = "0.9.0"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "51b8b945a2dadb221f1c5490cfb411cab6c3821446b8eca50ee07e5a3893ec51"
|
798
|
+
dependencies = [
|
799
|
+
"magnus",
|
800
|
+
"serde",
|
801
|
+
"tap",
|
802
|
+
]
|
803
|
+
|
804
|
+
[[package]]
|
805
|
+
name = "serde_yaml"
|
806
|
+
version = "0.9.34+deprecated"
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
808
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
809
|
+
dependencies = [
|
810
|
+
"indexmap",
|
811
|
+
"itoa",
|
812
|
+
"ryu",
|
813
|
+
"serde",
|
814
|
+
"unsafe-libyaml",
|
815
|
+
]
|
816
|
+
|
817
|
+
[[package]]
|
818
|
+
name = "sharded-slab"
|
819
|
+
version = "0.1.7"
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
821
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
822
|
+
dependencies = [
|
823
|
+
"lazy_static",
|
824
|
+
]
|
825
|
+
|
826
|
+
[[package]]
|
827
|
+
name = "shell-words"
|
828
|
+
version = "1.1.0"
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
830
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
831
|
+
|
832
|
+
[[package]]
|
833
|
+
name = "shlex"
|
834
|
+
version = "1.3.0"
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
837
|
+
|
838
|
+
[[package]]
|
839
|
+
name = "smallvec"
|
840
|
+
version = "1.14.0"
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
843
|
+
|
844
|
+
[[package]]
|
845
|
+
name = "strsim"
|
846
|
+
version = "0.11.1"
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
849
|
+
|
850
|
+
[[package]]
|
851
|
+
name = "syn"
|
852
|
+
version = "1.0.109"
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
854
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
855
|
+
dependencies = [
|
856
|
+
"proc-macro2",
|
857
|
+
"quote",
|
858
|
+
"unicode-ident",
|
859
|
+
]
|
860
|
+
|
861
|
+
[[package]]
|
862
|
+
name = "syn"
|
863
|
+
version = "2.0.99"
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
+
checksum = "e02e925281e18ffd9d640e234264753c43edc62d64b2d4cf898f1bc5e75f3fc2"
|
866
|
+
dependencies = [
|
867
|
+
"proc-macro2",
|
868
|
+
"quote",
|
869
|
+
"unicode-ident",
|
870
|
+
]
|
871
|
+
|
872
|
+
[[package]]
|
873
|
+
name = "tap"
|
874
|
+
version = "1.0.1"
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
876
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
877
|
+
|
878
|
+
[[package]]
|
879
|
+
name = "tempfile"
|
880
|
+
version = "3.18.0"
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
+
checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567"
|
883
|
+
dependencies = [
|
884
|
+
"cfg-if",
|
885
|
+
"fastrand",
|
886
|
+
"getrandom 0.3.1",
|
887
|
+
"once_cell",
|
888
|
+
"rustix",
|
889
|
+
"windows-sys",
|
890
|
+
]
|
891
|
+
|
892
|
+
[[package]]
|
893
|
+
name = "thread_local"
|
894
|
+
version = "1.1.8"
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
896
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
897
|
+
dependencies = [
|
898
|
+
"cfg-if",
|
899
|
+
"once_cell",
|
900
|
+
]
|
901
|
+
|
902
|
+
[[package]]
|
903
|
+
name = "tracing"
|
904
|
+
version = "0.1.41"
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
906
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
907
|
+
dependencies = [
|
908
|
+
"pin-project-lite",
|
909
|
+
"tracing-attributes",
|
910
|
+
"tracing-core",
|
911
|
+
]
|
912
|
+
|
913
|
+
[[package]]
|
914
|
+
name = "tracing-attributes"
|
915
|
+
version = "0.1.28"
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
918
|
+
dependencies = [
|
919
|
+
"proc-macro2",
|
920
|
+
"quote",
|
921
|
+
"syn 2.0.99",
|
922
|
+
]
|
923
|
+
|
924
|
+
[[package]]
|
925
|
+
name = "tracing-core"
|
926
|
+
version = "0.1.33"
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
928
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
929
|
+
dependencies = [
|
930
|
+
"once_cell",
|
931
|
+
"valuable",
|
932
|
+
]
|
933
|
+
|
934
|
+
[[package]]
|
935
|
+
name = "tracing-log"
|
936
|
+
version = "0.2.0"
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
938
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
939
|
+
dependencies = [
|
940
|
+
"log",
|
941
|
+
"once_cell",
|
942
|
+
"tracing-core",
|
943
|
+
]
|
944
|
+
|
945
|
+
[[package]]
|
946
|
+
name = "tracing-subscriber"
|
947
|
+
version = "0.3.19"
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
949
|
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
950
|
+
dependencies = [
|
951
|
+
"matchers",
|
952
|
+
"nu-ansi-term",
|
953
|
+
"once_cell",
|
954
|
+
"regex",
|
955
|
+
"sharded-slab",
|
956
|
+
"smallvec",
|
957
|
+
"thread_local",
|
958
|
+
"tracing",
|
959
|
+
"tracing-core",
|
960
|
+
"tracing-log",
|
961
|
+
]
|
962
|
+
|
963
|
+
[[package]]
|
964
|
+
name = "unicode-ident"
|
965
|
+
version = "1.0.18"
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
967
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
968
|
+
|
969
|
+
[[package]]
|
970
|
+
name = "unsafe-libyaml"
|
971
|
+
version = "0.2.11"
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
973
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
974
|
+
|
975
|
+
[[package]]
|
976
|
+
name = "utf8parse"
|
977
|
+
version = "0.2.2"
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
979
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
980
|
+
|
981
|
+
[[package]]
|
982
|
+
name = "valuable"
|
983
|
+
version = "0.1.1"
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
985
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
986
|
+
|
987
|
+
[[package]]
|
988
|
+
name = "version_check"
|
989
|
+
version = "0.9.5"
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
991
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
992
|
+
|
993
|
+
[[package]]
|
994
|
+
name = "walkdir"
|
995
|
+
version = "2.5.0"
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
998
|
+
dependencies = [
|
999
|
+
"same-file",
|
1000
|
+
"winapi-util",
|
1001
|
+
]
|
1002
|
+
|
1003
|
+
[[package]]
|
1004
|
+
name = "wasi"
|
1005
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1007
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1008
|
+
|
1009
|
+
[[package]]
|
1010
|
+
name = "wasi"
|
1011
|
+
version = "0.13.3+wasi-0.2.2"
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
+
checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
|
1014
|
+
dependencies = [
|
1015
|
+
"wit-bindgen-rt",
|
1016
|
+
]
|
1017
|
+
|
1018
|
+
[[package]]
|
1019
|
+
name = "winapi"
|
1020
|
+
version = "0.3.9"
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
1023
|
+
dependencies = [
|
1024
|
+
"winapi-i686-pc-windows-gnu",
|
1025
|
+
"winapi-x86_64-pc-windows-gnu",
|
1026
|
+
]
|
1027
|
+
|
1028
|
+
[[package]]
|
1029
|
+
name = "winapi-i686-pc-windows-gnu"
|
1030
|
+
version = "0.4.0"
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1032
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1033
|
+
|
1034
|
+
[[package]]
|
1035
|
+
name = "winapi-util"
|
1036
|
+
version = "0.1.9"
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1038
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1039
|
+
dependencies = [
|
1040
|
+
"windows-sys",
|
1041
|
+
]
|
1042
|
+
|
1043
|
+
[[package]]
|
1044
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
1045
|
+
version = "0.4.0"
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1047
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1048
|
+
|
1049
|
+
[[package]]
|
1050
|
+
name = "windows-sys"
|
1051
|
+
version = "0.59.0"
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1053
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1054
|
+
dependencies = [
|
1055
|
+
"windows-targets",
|
1056
|
+
]
|
1057
|
+
|
1058
|
+
[[package]]
|
1059
|
+
name = "windows-targets"
|
1060
|
+
version = "0.52.6"
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1062
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1063
|
+
dependencies = [
|
1064
|
+
"windows_aarch64_gnullvm",
|
1065
|
+
"windows_aarch64_msvc",
|
1066
|
+
"windows_i686_gnu",
|
1067
|
+
"windows_i686_gnullvm",
|
1068
|
+
"windows_i686_msvc",
|
1069
|
+
"windows_x86_64_gnu",
|
1070
|
+
"windows_x86_64_gnullvm",
|
1071
|
+
"windows_x86_64_msvc",
|
1072
|
+
]
|
1073
|
+
|
1074
|
+
[[package]]
|
1075
|
+
name = "windows_aarch64_gnullvm"
|
1076
|
+
version = "0.52.6"
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1078
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1079
|
+
|
1080
|
+
[[package]]
|
1081
|
+
name = "windows_aarch64_msvc"
|
1082
|
+
version = "0.52.6"
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1084
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1085
|
+
|
1086
|
+
[[package]]
|
1087
|
+
name = "windows_i686_gnu"
|
1088
|
+
version = "0.52.6"
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1091
|
+
|
1092
|
+
[[package]]
|
1093
|
+
name = "windows_i686_gnullvm"
|
1094
|
+
version = "0.52.6"
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1097
|
+
|
1098
|
+
[[package]]
|
1099
|
+
name = "windows_i686_msvc"
|
1100
|
+
version = "0.52.6"
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1102
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1103
|
+
|
1104
|
+
[[package]]
|
1105
|
+
name = "windows_x86_64_gnu"
|
1106
|
+
version = "0.52.6"
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1108
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1109
|
+
|
1110
|
+
[[package]]
|
1111
|
+
name = "windows_x86_64_gnullvm"
|
1112
|
+
version = "0.52.6"
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1115
|
+
|
1116
|
+
[[package]]
|
1117
|
+
name = "windows_x86_64_msvc"
|
1118
|
+
version = "0.52.6"
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1121
|
+
|
1122
|
+
[[package]]
|
1123
|
+
name = "wit-bindgen-rt"
|
1124
|
+
version = "0.33.0"
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1126
|
+
checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
|
1127
|
+
dependencies = [
|
1128
|
+
"bitflags",
|
1129
|
+
]
|