yerba 0.2.0-arm-linux-gnu

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +528 -0
  4. data/exe/yerba +6 -0
  5. data/ext/yerba/extconf.rb +111 -0
  6. data/ext/yerba/yerba.c +752 -0
  7. data/lib/yerba/3.2/yerba.so +0 -0
  8. data/lib/yerba/3.3/yerba.so +0 -0
  9. data/lib/yerba/3.4/yerba.so +0 -0
  10. data/lib/yerba/4.0/yerba.so +0 -0
  11. data/lib/yerba/collection.rb +31 -0
  12. data/lib/yerba/document.rb +59 -0
  13. data/lib/yerba/formatting.rb +18 -0
  14. data/lib/yerba/location.rb +5 -0
  15. data/lib/yerba/map.rb +166 -0
  16. data/lib/yerba/scalar.rb +85 -0
  17. data/lib/yerba/sequence.rb +182 -0
  18. data/lib/yerba/version.rb +5 -0
  19. data/lib/yerba.rb +131 -0
  20. data/rust/Cargo.lock +805 -0
  21. data/rust/Cargo.toml +36 -0
  22. data/rust/build.rs +11 -0
  23. data/rust/cbindgen.toml +27 -0
  24. data/rust/rustfmt.toml +2 -0
  25. data/rust/src/commands/apply.rs +5 -0
  26. data/rust/src/commands/blank_lines.rs +58 -0
  27. data/rust/src/commands/check.rs +5 -0
  28. data/rust/src/commands/delete.rs +35 -0
  29. data/rust/src/commands/get.rs +194 -0
  30. data/rust/src/commands/init.rs +89 -0
  31. data/rust/src/commands/insert.rs +106 -0
  32. data/rust/src/commands/mate.rs +55 -0
  33. data/rust/src/commands/mod.rs +349 -0
  34. data/rust/src/commands/move_item.rs +54 -0
  35. data/rust/src/commands/move_key.rs +87 -0
  36. data/rust/src/commands/quote_style.rs +62 -0
  37. data/rust/src/commands/remove.rs +35 -0
  38. data/rust/src/commands/rename.rs +37 -0
  39. data/rust/src/commands/set.rs +59 -0
  40. data/rust/src/commands/sort.rs +52 -0
  41. data/rust/src/commands/sort_keys.rs +62 -0
  42. data/rust/src/commands/version.rs +8 -0
  43. data/rust/src/document.rs +2237 -0
  44. data/rust/src/error.rs +45 -0
  45. data/rust/src/ffi.rs +991 -0
  46. data/rust/src/json.rs +128 -0
  47. data/rust/src/lib.rs +29 -0
  48. data/rust/src/main.rs +72 -0
  49. data/rust/src/quote_style.rs +42 -0
  50. data/rust/src/selector.rs +241 -0
  51. data/rust/src/syntax.rs +262 -0
  52. data/rust/src/yaml_writer.rs +89 -0
  53. data/rust/src/yerbafile.rs +475 -0
  54. data/sig/yerba.rbs +3 -0
  55. data/yerba.gemspec +52 -0
  56. metadata +108 -0
data/rust/Cargo.lock ADDED
@@ -0,0 +1,805 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anstream"
7
+ version = "1.0.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
10
+ dependencies = [
11
+ "anstyle",
12
+ "anstyle-parse",
13
+ "anstyle-query",
14
+ "anstyle-wincon",
15
+ "colorchoice",
16
+ "is_terminal_polyfill",
17
+ "utf8parse",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.14"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
25
+
26
+ [[package]]
27
+ name = "anstyle-parse"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
31
+ dependencies = [
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle-query"
37
+ version = "1.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
40
+ dependencies = [
41
+ "windows-sys",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-wincon"
46
+ version = "3.0.11"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "once_cell_polyfill",
52
+ "windows-sys",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "anyhow"
57
+ version = "1.0.102"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
60
+
61
+ [[package]]
62
+ name = "bitflags"
63
+ version = "2.11.1"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
66
+
67
+ [[package]]
68
+ name = "cbindgen"
69
+ version = "0.28.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
72
+ dependencies = [
73
+ "clap",
74
+ "heck 0.4.1",
75
+ "indexmap",
76
+ "log",
77
+ "proc-macro2",
78
+ "quote",
79
+ "serde",
80
+ "serde_json",
81
+ "syn",
82
+ "tempfile",
83
+ "toml",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "cfg-if"
88
+ version = "1.0.4"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
91
+
92
+ [[package]]
93
+ name = "clap"
94
+ version = "4.6.1"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
97
+ dependencies = [
98
+ "clap_builder",
99
+ "clap_derive",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "clap_builder"
104
+ version = "4.6.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
107
+ dependencies = [
108
+ "anstream",
109
+ "anstyle",
110
+ "clap_lex",
111
+ "strsim",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "clap_derive"
116
+ version = "4.6.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
119
+ dependencies = [
120
+ "heck 0.5.0",
121
+ "proc-macro2",
122
+ "quote",
123
+ "syn",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "clap_lex"
128
+ version = "1.1.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
131
+
132
+ [[package]]
133
+ name = "colorchoice"
134
+ version = "1.0.5"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
137
+
138
+ [[package]]
139
+ name = "countme"
140
+ version = "3.0.1"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
143
+
144
+ [[package]]
145
+ name = "crossbeam-deque"
146
+ version = "0.8.6"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
149
+ dependencies = [
150
+ "crossbeam-epoch",
151
+ "crossbeam-utils",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "crossbeam-epoch"
156
+ version = "0.9.18"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
159
+ dependencies = [
160
+ "crossbeam-utils",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "crossbeam-utils"
165
+ version = "0.8.21"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
168
+
169
+ [[package]]
170
+ name = "either"
171
+ version = "1.15.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
174
+
175
+ [[package]]
176
+ name = "equivalent"
177
+ version = "1.0.2"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
180
+
181
+ [[package]]
182
+ name = "errno"
183
+ version = "0.3.14"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
186
+ dependencies = [
187
+ "libc",
188
+ "windows-sys",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "fastrand"
193
+ version = "2.4.1"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
196
+
197
+ [[package]]
198
+ name = "foldhash"
199
+ version = "0.1.5"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
202
+
203
+ [[package]]
204
+ name = "getrandom"
205
+ version = "0.4.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
208
+ dependencies = [
209
+ "cfg-if",
210
+ "libc",
211
+ "r-efi",
212
+ "wasip2",
213
+ "wasip3",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "glob"
218
+ version = "0.3.3"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
221
+
222
+ [[package]]
223
+ name = "hashbrown"
224
+ version = "0.14.5"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
227
+
228
+ [[package]]
229
+ name = "hashbrown"
230
+ version = "0.15.5"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
233
+ dependencies = [
234
+ "foldhash",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "hashbrown"
239
+ version = "0.17.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
242
+
243
+ [[package]]
244
+ name = "heck"
245
+ version = "0.4.1"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
248
+
249
+ [[package]]
250
+ name = "heck"
251
+ version = "0.5.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
254
+
255
+ [[package]]
256
+ name = "id-arena"
257
+ version = "2.3.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
260
+
261
+ [[package]]
262
+ name = "indexmap"
263
+ version = "2.14.0"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
266
+ dependencies = [
267
+ "equivalent",
268
+ "hashbrown 0.17.0",
269
+ "serde",
270
+ "serde_core",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "indoc"
275
+ version = "2.0.7"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
278
+ dependencies = [
279
+ "rustversion",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "is_terminal_polyfill"
284
+ version = "1.70.2"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
287
+
288
+ [[package]]
289
+ name = "itoa"
290
+ version = "1.0.18"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
293
+
294
+ [[package]]
295
+ name = "leb128fmt"
296
+ version = "0.1.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
299
+
300
+ [[package]]
301
+ name = "libc"
302
+ version = "0.2.186"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
305
+
306
+ [[package]]
307
+ name = "linux-raw-sys"
308
+ version = "0.12.1"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
311
+
312
+ [[package]]
313
+ name = "log"
314
+ version = "0.4.29"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
317
+
318
+ [[package]]
319
+ name = "memchr"
320
+ version = "2.8.0"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
323
+
324
+ [[package]]
325
+ name = "once_cell"
326
+ version = "1.21.4"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
329
+
330
+ [[package]]
331
+ name = "once_cell_polyfill"
332
+ version = "1.70.2"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
335
+
336
+ [[package]]
337
+ name = "prettyplease"
338
+ version = "0.2.37"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
341
+ dependencies = [
342
+ "proc-macro2",
343
+ "syn",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "proc-macro2"
348
+ version = "1.0.106"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
351
+ dependencies = [
352
+ "unicode-ident",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "quote"
357
+ version = "1.0.45"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
360
+ dependencies = [
361
+ "proc-macro2",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "r-efi"
366
+ version = "6.0.0"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
369
+
370
+ [[package]]
371
+ name = "rayon"
372
+ version = "1.12.0"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
375
+ dependencies = [
376
+ "either",
377
+ "rayon-core",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "rayon-core"
382
+ version = "1.13.0"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
385
+ dependencies = [
386
+ "crossbeam-deque",
387
+ "crossbeam-utils",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "rowan"
392
+ version = "0.16.1"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
395
+ dependencies = [
396
+ "countme",
397
+ "hashbrown 0.14.5",
398
+ "rustc-hash",
399
+ "text-size",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "rustc-hash"
404
+ version = "1.1.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
407
+
408
+ [[package]]
409
+ name = "rustix"
410
+ version = "1.1.4"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
413
+ dependencies = [
414
+ "bitflags",
415
+ "errno",
416
+ "libc",
417
+ "linux-raw-sys",
418
+ "windows-sys",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "rustversion"
423
+ version = "1.0.22"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
426
+
427
+ [[package]]
428
+ name = "ryu"
429
+ version = "1.0.23"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
432
+
433
+ [[package]]
434
+ name = "semver"
435
+ version = "1.0.28"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
438
+
439
+ [[package]]
440
+ name = "serde"
441
+ version = "1.0.228"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
444
+ dependencies = [
445
+ "serde_core",
446
+ "serde_derive",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "serde_core"
451
+ version = "1.0.228"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
454
+ dependencies = [
455
+ "serde_derive",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "serde_derive"
460
+ version = "1.0.228"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
463
+ dependencies = [
464
+ "proc-macro2",
465
+ "quote",
466
+ "syn",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "serde_json"
471
+ version = "1.0.149"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
474
+ dependencies = [
475
+ "itoa",
476
+ "memchr",
477
+ "serde",
478
+ "serde_core",
479
+ "zmij",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "serde_spanned"
484
+ version = "0.6.9"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
487
+ dependencies = [
488
+ "serde",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "serde_yaml"
493
+ version = "0.9.34+deprecated"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
496
+ dependencies = [
497
+ "indexmap",
498
+ "itoa",
499
+ "ryu",
500
+ "serde",
501
+ "unsafe-libyaml",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "strsim"
506
+ version = "0.11.1"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
509
+
510
+ [[package]]
511
+ name = "syn"
512
+ version = "2.0.117"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
515
+ dependencies = [
516
+ "proc-macro2",
517
+ "quote",
518
+ "unicode-ident",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "tempfile"
523
+ version = "3.27.0"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
526
+ dependencies = [
527
+ "fastrand",
528
+ "getrandom",
529
+ "once_cell",
530
+ "rustix",
531
+ "windows-sys",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "text-size"
536
+ version = "1.1.1"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
539
+
540
+ [[package]]
541
+ name = "toml"
542
+ version = "0.8.23"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
545
+ dependencies = [
546
+ "serde",
547
+ "serde_spanned",
548
+ "toml_datetime",
549
+ "toml_edit",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "toml_datetime"
554
+ version = "0.6.11"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
557
+ dependencies = [
558
+ "serde",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "toml_edit"
563
+ version = "0.22.27"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
566
+ dependencies = [
567
+ "indexmap",
568
+ "serde",
569
+ "serde_spanned",
570
+ "toml_datetime",
571
+ "toml_write",
572
+ "winnow",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "toml_write"
577
+ version = "0.1.2"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
580
+
581
+ [[package]]
582
+ name = "unicode-ident"
583
+ version = "1.0.24"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
586
+
587
+ [[package]]
588
+ name = "unicode-xid"
589
+ version = "0.2.6"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
592
+
593
+ [[package]]
594
+ name = "unsafe-libyaml"
595
+ version = "0.2.11"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
598
+
599
+ [[package]]
600
+ name = "utf8parse"
601
+ version = "0.2.2"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
604
+
605
+ [[package]]
606
+ name = "wasip2"
607
+ version = "1.0.3+wasi-0.2.9"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
610
+ dependencies = [
611
+ "wit-bindgen 0.57.1",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "wasip3"
616
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
619
+ dependencies = [
620
+ "wit-bindgen 0.51.0",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "wasm-encoder"
625
+ version = "0.244.0"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
628
+ dependencies = [
629
+ "leb128fmt",
630
+ "wasmparser",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "wasm-metadata"
635
+ version = "0.244.0"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
638
+ dependencies = [
639
+ "anyhow",
640
+ "indexmap",
641
+ "wasm-encoder",
642
+ "wasmparser",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "wasmparser"
647
+ version = "0.244.0"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
650
+ dependencies = [
651
+ "bitflags",
652
+ "hashbrown 0.15.5",
653
+ "indexmap",
654
+ "semver",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "windows-link"
659
+ version = "0.2.1"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
662
+
663
+ [[package]]
664
+ name = "windows-sys"
665
+ version = "0.61.2"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
668
+ dependencies = [
669
+ "windows-link",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "winnow"
674
+ version = "0.7.15"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
677
+ dependencies = [
678
+ "memchr",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "wit-bindgen"
683
+ version = "0.51.0"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
686
+ dependencies = [
687
+ "wit-bindgen-rust-macro",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "wit-bindgen"
692
+ version = "0.57.1"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
695
+
696
+ [[package]]
697
+ name = "wit-bindgen-core"
698
+ version = "0.51.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
701
+ dependencies = [
702
+ "anyhow",
703
+ "heck 0.5.0",
704
+ "wit-parser",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "wit-bindgen-rust"
709
+ version = "0.51.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
712
+ dependencies = [
713
+ "anyhow",
714
+ "heck 0.5.0",
715
+ "indexmap",
716
+ "prettyplease",
717
+ "syn",
718
+ "wasm-metadata",
719
+ "wit-bindgen-core",
720
+ "wit-component",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "wit-bindgen-rust-macro"
725
+ version = "0.51.0"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
728
+ dependencies = [
729
+ "anyhow",
730
+ "prettyplease",
731
+ "proc-macro2",
732
+ "quote",
733
+ "syn",
734
+ "wit-bindgen-core",
735
+ "wit-bindgen-rust",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "wit-component"
740
+ version = "0.244.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
743
+ dependencies = [
744
+ "anyhow",
745
+ "bitflags",
746
+ "indexmap",
747
+ "log",
748
+ "serde",
749
+ "serde_derive",
750
+ "serde_json",
751
+ "wasm-encoder",
752
+ "wasm-metadata",
753
+ "wasmparser",
754
+ "wit-parser",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "wit-parser"
759
+ version = "0.244.0"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
762
+ dependencies = [
763
+ "anyhow",
764
+ "id-arena",
765
+ "indexmap",
766
+ "log",
767
+ "semver",
768
+ "serde",
769
+ "serde_derive",
770
+ "serde_json",
771
+ "unicode-xid",
772
+ "wasmparser",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "yaml_parser"
777
+ version = "0.3.0"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "71ebb04c72edf699612d543f6c421142527b85ac180156017fa26be49dc0762f"
780
+ dependencies = [
781
+ "rowan",
782
+ "winnow",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "yerba"
787
+ version = "0.2.0"
788
+ dependencies = [
789
+ "cbindgen",
790
+ "clap",
791
+ "glob",
792
+ "indoc",
793
+ "rayon",
794
+ "rowan",
795
+ "serde",
796
+ "serde_json",
797
+ "serde_yaml",
798
+ "yaml_parser",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "zmij"
803
+ version = "1.0.21"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"