tox-toml-fmt 1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. tox_toml_fmt-1.2.1/Cargo.lock +819 -0
  2. tox_toml_fmt-1.2.1/Cargo.toml +11 -0
  3. tox_toml_fmt-1.2.1/LICENSE.txt +18 -0
  4. tox_toml_fmt-1.2.1/PKG-INFO +36 -0
  5. tox_toml_fmt-1.2.1/README.md +11 -0
  6. tox_toml_fmt-1.2.1/common/Cargo.toml +16 -0
  7. tox_toml_fmt-1.2.1/common/README.md +5 -0
  8. tox_toml_fmt-1.2.1/common/src/array.rs +152 -0
  9. tox_toml_fmt-1.2.1/common/src/create.rs +146 -0
  10. tox_toml_fmt-1.2.1/common/src/lib.rs +9 -0
  11. tox_toml_fmt-1.2.1/common/src/pep508/marker.rs +209 -0
  12. tox_toml_fmt-1.2.1/common/src/pep508/requirement.rs +164 -0
  13. tox_toml_fmt-1.2.1/common/src/pep508/version_op/operator.rs +43 -0
  14. tox_toml_fmt-1.2.1/common/src/pep508/version_op/version.rs +164 -0
  15. tox_toml_fmt-1.2.1/common/src/pep508/version_op.rs +28 -0
  16. tox_toml_fmt-1.2.1/common/src/pep508.rs +7 -0
  17. tox_toml_fmt-1.2.1/common/src/string.rs +51 -0
  18. tox_toml_fmt-1.2.1/common/src/table.rs +342 -0
  19. tox_toml_fmt-1.2.1/common/src/tests/array_tests.rs +189 -0
  20. tox_toml_fmt-1.2.1/common/src/tests/mod.rs +2 -0
  21. tox_toml_fmt-1.2.1/common/src/tests/pep508_tests.rs +54 -0
  22. tox_toml_fmt-1.2.1/common/src/util.rs +33 -0
  23. tox_toml_fmt-1.2.1/pyproject.toml +123 -0
  24. tox_toml_fmt-1.2.1/src/tox_toml_fmt/__init__.py +9 -0
  25. tox_toml_fmt-1.2.1/src/tox_toml_fmt/__main__.py +83 -0
  26. tox_toml_fmt-1.2.1/src/tox_toml_fmt/_lib.pyi +13 -0
  27. tox_toml_fmt-1.2.1/src/tox_toml_fmt/py.typed +0 -0
  28. tox_toml_fmt-1.2.1/tox-toml-fmt/CHANGELOG.md +25 -0
  29. tox_toml_fmt-1.2.1/tox-toml-fmt/Cargo.toml +27 -0
  30. tox_toml_fmt-1.2.1/tox-toml-fmt/LICENSE.txt +18 -0
  31. tox_toml_fmt-1.2.1/tox-toml-fmt/README.md +11 -0
  32. tox_toml_fmt-1.2.1/tox-toml-fmt/docs/conf.py +43 -0
  33. tox_toml_fmt-1.2.1/tox-toml-fmt/docs/index.rst +101 -0
  34. tox_toml_fmt-1.2.1/tox-toml-fmt/rust/src/global.rs +8 -0
  35. tox_toml_fmt-1.2.1/tox-toml-fmt/rust/src/main.rs +72 -0
  36. tox_toml_fmt-1.2.1/tox-toml-fmt/rust/src/tests/global_tests.rs +55 -0
  37. tox_toml_fmt-1.2.1/tox-toml-fmt/rust/src/tests/main_tests.rs +84 -0
  38. tox_toml_fmt-1.2.1/tox-toml-fmt/rust/src/tests/mod.rs +2 -0
  39. tox_toml_fmt-1.2.1/tox-toml-fmt/src/tox_toml_fmt/__init__.py +9 -0
  40. tox_toml_fmt-1.2.1/tox-toml-fmt/src/tox_toml_fmt/__main__.py +83 -0
  41. tox_toml_fmt-1.2.1/tox-toml-fmt/src/tox_toml_fmt/_lib.pyi +13 -0
  42. tox_toml_fmt-1.2.1/tox-toml-fmt/src/tox_toml_fmt/py.typed +0 -0
  43. tox_toml_fmt-1.2.1/tox-toml-fmt/tests/test_lib.py +46 -0
  44. tox_toml_fmt-1.2.1/tox-toml-fmt/tests/test_main.py +149 -0
  45. tox_toml_fmt-1.2.1/tox-toml-fmt/tests/test_pyproject_toml_fmt.py +15 -0
  46. tox_toml_fmt-1.2.1/tox-toml-fmt/tox.toml +102 -0
@@ -0,0 +1,819 @@
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.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.3"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "any_ascii"
29
+ version = "0.1.7"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "70033777eb8b5124a81a1889416543dddef2de240019b674c81285a2635a7e1e"
32
+
33
+ [[package]]
34
+ name = "arc-swap"
35
+ version = "1.7.1"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
38
+
39
+ [[package]]
40
+ name = "autocfg"
41
+ version = "1.4.0"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
44
+
45
+ [[package]]
46
+ name = "beef"
47
+ version = "0.5.2"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
50
+
51
+ [[package]]
52
+ name = "bitflags"
53
+ version = "2.9.1"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
56
+
57
+ [[package]]
58
+ name = "bstr"
59
+ version = "1.12.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
62
+ dependencies = [
63
+ "memchr",
64
+ "serde",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "cfg-if"
69
+ version = "1.0.0"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
72
+
73
+ [[package]]
74
+ name = "common"
75
+ version = "1.0.0"
76
+ dependencies = [
77
+ "indoc",
78
+ "regex",
79
+ "rstest",
80
+ "taplo",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "countme"
85
+ version = "3.0.1"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
88
+
89
+ [[package]]
90
+ name = "deranged"
91
+ version = "0.4.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
94
+ dependencies = [
95
+ "powerfmt",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "either"
100
+ version = "1.15.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
103
+
104
+ [[package]]
105
+ name = "equivalent"
106
+ version = "1.0.2"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
109
+
110
+ [[package]]
111
+ name = "fnv"
112
+ version = "1.0.7"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
115
+
116
+ [[package]]
117
+ name = "futures-core"
118
+ version = "0.3.31"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
121
+
122
+ [[package]]
123
+ name = "futures-macro"
124
+ version = "0.3.31"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
127
+ dependencies = [
128
+ "proc-macro2",
129
+ "quote",
130
+ "syn 2.0.101",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "futures-task"
135
+ version = "0.3.31"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
138
+
139
+ [[package]]
140
+ name = "futures-timer"
141
+ version = "3.0.3"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
144
+
145
+ [[package]]
146
+ name = "futures-util"
147
+ version = "0.3.31"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
150
+ dependencies = [
151
+ "futures-core",
152
+ "futures-macro",
153
+ "futures-task",
154
+ "pin-project-lite",
155
+ "pin-utils",
156
+ "slab",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "getrandom"
161
+ version = "0.3.3"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
164
+ dependencies = [
165
+ "cfg-if",
166
+ "libc",
167
+ "r-efi",
168
+ "wasi",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "glob"
173
+ version = "0.3.2"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
176
+
177
+ [[package]]
178
+ name = "globset"
179
+ version = "0.4.16"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
182
+ dependencies = [
183
+ "aho-corasick",
184
+ "bstr",
185
+ "log",
186
+ "regex-automata",
187
+ "regex-syntax 0.8.5",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "hashbrown"
192
+ version = "0.14.5"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
195
+
196
+ [[package]]
197
+ name = "hashbrown"
198
+ version = "0.15.3"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
201
+
202
+ [[package]]
203
+ name = "heck"
204
+ version = "0.5.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
207
+
208
+ [[package]]
209
+ name = "indexmap"
210
+ version = "2.9.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
213
+ dependencies = [
214
+ "equivalent",
215
+ "hashbrown 0.15.3",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "indoc"
220
+ version = "2.0.6"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
223
+
224
+ [[package]]
225
+ name = "itertools"
226
+ version = "0.10.5"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
229
+ dependencies = [
230
+ "either",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "itoa"
235
+ version = "1.0.15"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
238
+
239
+ [[package]]
240
+ name = "lexical-sort"
241
+ version = "0.3.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "c09e4591611e231daf4d4c685a66cb0410cc1e502027a20ae55f2bb9e997207a"
244
+ dependencies = [
245
+ "any_ascii",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "libc"
250
+ version = "0.2.172"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
253
+
254
+ [[package]]
255
+ name = "log"
256
+ version = "0.4.27"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
259
+
260
+ [[package]]
261
+ name = "logos"
262
+ version = "0.12.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1"
265
+ dependencies = [
266
+ "logos-derive",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "logos-derive"
271
+ version = "0.12.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c"
274
+ dependencies = [
275
+ "beef",
276
+ "fnv",
277
+ "proc-macro2",
278
+ "quote",
279
+ "regex-syntax 0.6.29",
280
+ "syn 1.0.109",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "memchr"
285
+ version = "2.7.4"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
288
+
289
+ [[package]]
290
+ name = "memoffset"
291
+ version = "0.9.1"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
294
+ dependencies = [
295
+ "autocfg",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "num-conv"
300
+ version = "0.1.0"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
303
+
304
+ [[package]]
305
+ name = "once_cell"
306
+ version = "1.21.3"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
309
+
310
+ [[package]]
311
+ name = "pin-project-lite"
312
+ version = "0.2.16"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
315
+
316
+ [[package]]
317
+ name = "pin-utils"
318
+ version = "0.1.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
321
+
322
+ [[package]]
323
+ name = "portable-atomic"
324
+ version = "1.11.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
327
+
328
+ [[package]]
329
+ name = "powerfmt"
330
+ version = "0.2.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
333
+
334
+ [[package]]
335
+ name = "proc-macro-crate"
336
+ version = "3.3.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
339
+ dependencies = [
340
+ "toml_edit",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "proc-macro2"
345
+ version = "1.0.95"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
348
+ dependencies = [
349
+ "unicode-ident",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "pyo3"
354
+ version = "0.26.0"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
357
+ dependencies = [
358
+ "indoc",
359
+ "libc",
360
+ "memoffset",
361
+ "once_cell",
362
+ "portable-atomic",
363
+ "pyo3-build-config",
364
+ "pyo3-ffi",
365
+ "pyo3-macros",
366
+ "unindent",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "pyo3-build-config"
371
+ version = "0.26.0"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
374
+ dependencies = [
375
+ "target-lexicon",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "pyo3-ffi"
380
+ version = "0.26.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
383
+ dependencies = [
384
+ "libc",
385
+ "pyo3-build-config",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "pyo3-macros"
390
+ version = "0.26.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
393
+ dependencies = [
394
+ "proc-macro2",
395
+ "pyo3-macros-backend",
396
+ "quote",
397
+ "syn 2.0.101",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "pyo3-macros-backend"
402
+ version = "0.26.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
405
+ dependencies = [
406
+ "heck",
407
+ "proc-macro2",
408
+ "pyo3-build-config",
409
+ "quote",
410
+ "syn 2.0.101",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "pyproject-fmt"
415
+ version = "2.11.0"
416
+ dependencies = [
417
+ "common",
418
+ "indoc",
419
+ "lexical-sort",
420
+ "pyo3",
421
+ "regex",
422
+ "rstest",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "quote"
427
+ version = "1.0.40"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
430
+ dependencies = [
431
+ "proc-macro2",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "r-efi"
436
+ version = "5.2.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
439
+
440
+ [[package]]
441
+ name = "regex"
442
+ version = "1.11.1"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
445
+ dependencies = [
446
+ "aho-corasick",
447
+ "memchr",
448
+ "regex-automata",
449
+ "regex-syntax 0.8.5",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "regex-automata"
454
+ version = "0.4.9"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
457
+ dependencies = [
458
+ "aho-corasick",
459
+ "memchr",
460
+ "regex-syntax 0.8.5",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "regex-syntax"
465
+ version = "0.6.29"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
468
+
469
+ [[package]]
470
+ name = "regex-syntax"
471
+ version = "0.8.5"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
474
+
475
+ [[package]]
476
+ name = "relative-path"
477
+ version = "1.9.3"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
480
+
481
+ [[package]]
482
+ name = "rowan"
483
+ version = "0.15.16"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "0a542b0253fa46e632d27a1dc5cf7b930de4df8659dc6e720b647fc72147ae3d"
486
+ dependencies = [
487
+ "countme",
488
+ "hashbrown 0.14.5",
489
+ "rustc-hash",
490
+ "text-size",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "rstest"
495
+ version = "0.26.1"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
498
+ dependencies = [
499
+ "futures-timer",
500
+ "futures-util",
501
+ "rstest_macros",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "rstest_macros"
506
+ version = "0.26.1"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
509
+ dependencies = [
510
+ "cfg-if",
511
+ "glob",
512
+ "proc-macro-crate",
513
+ "proc-macro2",
514
+ "quote",
515
+ "regex",
516
+ "relative-path",
517
+ "rustc_version",
518
+ "syn 2.0.101",
519
+ "unicode-ident",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "rustc-hash"
524
+ version = "1.1.0"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
527
+
528
+ [[package]]
529
+ name = "rustc_version"
530
+ version = "0.4.1"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
533
+ dependencies = [
534
+ "semver",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "ryu"
539
+ version = "1.0.20"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
542
+
543
+ [[package]]
544
+ name = "semver"
545
+ version = "1.0.26"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
548
+
549
+ [[package]]
550
+ name = "serde"
551
+ version = "1.0.219"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
554
+ dependencies = [
555
+ "serde_derive",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "serde_derive"
560
+ version = "1.0.219"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
563
+ dependencies = [
564
+ "proc-macro2",
565
+ "quote",
566
+ "syn 2.0.101",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "serde_json"
571
+ version = "1.0.140"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
574
+ dependencies = [
575
+ "itoa",
576
+ "memchr",
577
+ "ryu",
578
+ "serde",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "slab"
583
+ version = "0.4.9"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
586
+ dependencies = [
587
+ "autocfg",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "syn"
592
+ version = "1.0.109"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
595
+ dependencies = [
596
+ "proc-macro2",
597
+ "quote",
598
+ "unicode-ident",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "syn"
603
+ version = "2.0.101"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
606
+ dependencies = [
607
+ "proc-macro2",
608
+ "quote",
609
+ "unicode-ident",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "taplo"
614
+ version = "0.14.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "c221a50eef1a5493074f11ca1ed62bef28c05a4d925002944cc686b2e783a5b3"
617
+ dependencies = [
618
+ "ahash",
619
+ "arc-swap",
620
+ "either",
621
+ "globset",
622
+ "itertools",
623
+ "logos",
624
+ "once_cell",
625
+ "rowan",
626
+ "serde",
627
+ "serde_json",
628
+ "thiserror",
629
+ "time",
630
+ "tracing",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "target-lexicon"
635
+ version = "0.13.2"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
638
+
639
+ [[package]]
640
+ name = "text-size"
641
+ version = "1.1.1"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
644
+
645
+ [[package]]
646
+ name = "thiserror"
647
+ version = "1.0.69"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
650
+ dependencies = [
651
+ "thiserror-impl",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "thiserror-impl"
656
+ version = "1.0.69"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
659
+ dependencies = [
660
+ "proc-macro2",
661
+ "quote",
662
+ "syn 2.0.101",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "time"
667
+ version = "0.3.41"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
670
+ dependencies = [
671
+ "deranged",
672
+ "itoa",
673
+ "num-conv",
674
+ "powerfmt",
675
+ "serde",
676
+ "time-core",
677
+ "time-macros",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "time-core"
682
+ version = "0.1.4"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
685
+
686
+ [[package]]
687
+ name = "time-macros"
688
+ version = "0.2.22"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
691
+ dependencies = [
692
+ "num-conv",
693
+ "time-core",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "toml_datetime"
698
+ version = "0.6.9"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
701
+
702
+ [[package]]
703
+ name = "toml_edit"
704
+ version = "0.22.26"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
707
+ dependencies = [
708
+ "indexmap",
709
+ "toml_datetime",
710
+ "winnow",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "tox-toml-fmt"
715
+ version = "1.2.1"
716
+ dependencies = [
717
+ "common",
718
+ "indoc",
719
+ "lexical-sort",
720
+ "pyo3",
721
+ "regex",
722
+ "rstest",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "tracing"
727
+ version = "0.1.41"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
730
+ dependencies = [
731
+ "pin-project-lite",
732
+ "tracing-attributes",
733
+ "tracing-core",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "tracing-attributes"
738
+ version = "0.1.28"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
741
+ dependencies = [
742
+ "proc-macro2",
743
+ "quote",
744
+ "syn 2.0.101",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "tracing-core"
749
+ version = "0.1.33"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
752
+ dependencies = [
753
+ "once_cell",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "unicode-ident"
758
+ version = "1.0.18"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
761
+
762
+ [[package]]
763
+ name = "unindent"
764
+ version = "0.2.4"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
767
+
768
+ [[package]]
769
+ name = "version_check"
770
+ version = "0.9.5"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
773
+
774
+ [[package]]
775
+ name = "wasi"
776
+ version = "0.14.2+wasi-0.2.4"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
779
+ dependencies = [
780
+ "wit-bindgen-rt",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "winnow"
785
+ version = "0.7.10"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
788
+ dependencies = [
789
+ "memchr",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "wit-bindgen-rt"
794
+ version = "0.39.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
797
+ dependencies = [
798
+ "bitflags",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "zerocopy"
803
+ version = "0.8.25"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
806
+ dependencies = [
807
+ "zerocopy-derive",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "zerocopy-derive"
812
+ version = "0.8.25"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
815
+ dependencies = [
816
+ "proc-macro2",
817
+ "quote",
818
+ "syn 2.0.101",
819
+ ]