tox-toml-fmt 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tox-toml-fmt might be problematic. Click here for more details.

Files changed (41) hide show
  1. tox_toml_fmt-1.0.0/Cargo.lock +959 -0
  2. tox_toml_fmt-1.0.0/Cargo.toml +11 -0
  3. tox_toml_fmt-1.0.0/LICENSE.txt +18 -0
  4. tox_toml_fmt-1.0.0/PKG-INFO +35 -0
  5. tox_toml_fmt-1.0.0/README.md +9 -0
  6. tox_toml_fmt-1.0.0/common/Cargo.toml +16 -0
  7. tox_toml_fmt-1.0.0/common/README.md +5 -0
  8. tox_toml_fmt-1.0.0/common/src/array.rs +152 -0
  9. tox_toml_fmt-1.0.0/common/src/create.rs +146 -0
  10. tox_toml_fmt-1.0.0/common/src/lib.rs +9 -0
  11. tox_toml_fmt-1.0.0/common/src/pep508.rs +88 -0
  12. tox_toml_fmt-1.0.0/common/src/string.rs +51 -0
  13. tox_toml_fmt-1.0.0/common/src/table.rs +334 -0
  14. tox_toml_fmt-1.0.0/common/src/tests/array_tests.rs +187 -0
  15. tox_toml_fmt-1.0.0/common/src/tests/mod.rs +2 -0
  16. tox_toml_fmt-1.0.0/common/src/tests/pep508_tests.rs +33 -0
  17. tox_toml_fmt-1.0.0/common/src/util.rs +33 -0
  18. tox_toml_fmt-1.0.0/pyproject.toml +123 -0
  19. tox_toml_fmt-1.0.0/src/tox_toml_fmt/__init__.py +9 -0
  20. tox_toml_fmt-1.0.0/src/tox_toml_fmt/__main__.py +82 -0
  21. tox_toml_fmt-1.0.0/src/tox_toml_fmt/_lib.pyi +13 -0
  22. tox_toml_fmt-1.0.0/src/tox_toml_fmt/py.typed +0 -0
  23. tox_toml_fmt-1.0.0/tox-toml-fmt/CHANGELOG.md +5 -0
  24. tox_toml_fmt-1.0.0/tox-toml-fmt/Cargo.toml +27 -0
  25. tox_toml_fmt-1.0.0/tox-toml-fmt/LICENSE.txt +18 -0
  26. tox_toml_fmt-1.0.0/tox-toml-fmt/README.md +9 -0
  27. tox_toml_fmt-1.0.0/tox-toml-fmt/docs/conf.py +43 -0
  28. tox_toml_fmt-1.0.0/tox-toml-fmt/docs/index.rst +101 -0
  29. tox_toml_fmt-1.0.0/tox-toml-fmt/rust/src/global.rs +8 -0
  30. tox_toml_fmt-1.0.0/tox-toml-fmt/rust/src/main.rs +71 -0
  31. tox_toml_fmt-1.0.0/tox-toml-fmt/rust/src/tests/global_tests.rs +55 -0
  32. tox_toml_fmt-1.0.0/tox-toml-fmt/rust/src/tests/main_tests.rs +84 -0
  33. tox_toml_fmt-1.0.0/tox-toml-fmt/rust/src/tests/mod.rs +2 -0
  34. tox_toml_fmt-1.0.0/tox-toml-fmt/src/tox_toml_fmt/__init__.py +9 -0
  35. tox_toml_fmt-1.0.0/tox-toml-fmt/src/tox_toml_fmt/__main__.py +82 -0
  36. tox_toml_fmt-1.0.0/tox-toml-fmt/src/tox_toml_fmt/_lib.pyi +13 -0
  37. tox_toml_fmt-1.0.0/tox-toml-fmt/src/tox_toml_fmt/py.typed +0 -0
  38. tox_toml_fmt-1.0.0/tox-toml-fmt/tests/test_lib.py +46 -0
  39. tox_toml_fmt-1.0.0/tox-toml-fmt/tests/test_main.py +149 -0
  40. tox_toml_fmt-1.0.0/tox-toml-fmt/tests/test_pyproject_toml_fmt.py +15 -0
  41. tox_toml_fmt-1.0.0/tox-toml-fmt/tox.toml +102 -0
@@ -0,0 +1,959 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.11"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
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 = "bstr"
53
+ version = "1.10.0"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
56
+ dependencies = [
57
+ "memchr",
58
+ "serde",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "cfg-if"
63
+ version = "1.0.0"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
66
+
67
+ [[package]]
68
+ name = "common"
69
+ version = "1.0.0"
70
+ dependencies = [
71
+ "indoc",
72
+ "pep508_rs",
73
+ "rstest",
74
+ "taplo",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "countme"
79
+ version = "3.0.1"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
82
+
83
+ [[package]]
84
+ name = "deranged"
85
+ version = "0.3.11"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
88
+ dependencies = [
89
+ "powerfmt",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "either"
94
+ version = "1.13.0"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
97
+
98
+ [[package]]
99
+ name = "equivalent"
100
+ version = "1.0.1"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
103
+
104
+ [[package]]
105
+ name = "fnv"
106
+ version = "1.0.7"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
109
+
110
+ [[package]]
111
+ name = "form_urlencoded"
112
+ version = "1.2.1"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
115
+ dependencies = [
116
+ "percent-encoding",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "futures"
121
+ version = "0.3.31"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
124
+ dependencies = [
125
+ "futures-channel",
126
+ "futures-core",
127
+ "futures-executor",
128
+ "futures-io",
129
+ "futures-sink",
130
+ "futures-task",
131
+ "futures-util",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "futures-channel"
136
+ version = "0.3.31"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
139
+ dependencies = [
140
+ "futures-core",
141
+ "futures-sink",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "futures-core"
146
+ version = "0.3.31"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
149
+
150
+ [[package]]
151
+ name = "futures-executor"
152
+ version = "0.3.31"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
155
+ dependencies = [
156
+ "futures-core",
157
+ "futures-task",
158
+ "futures-util",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "futures-io"
163
+ version = "0.3.31"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
166
+
167
+ [[package]]
168
+ name = "futures-macro"
169
+ version = "0.3.31"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
172
+ dependencies = [
173
+ "proc-macro2",
174
+ "quote",
175
+ "syn 2.0.85",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "futures-sink"
180
+ version = "0.3.31"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
183
+
184
+ [[package]]
185
+ name = "futures-task"
186
+ version = "0.3.31"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
189
+
190
+ [[package]]
191
+ name = "futures-timer"
192
+ version = "3.0.3"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
195
+
196
+ [[package]]
197
+ name = "futures-util"
198
+ version = "0.3.31"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
201
+ dependencies = [
202
+ "futures-channel",
203
+ "futures-core",
204
+ "futures-io",
205
+ "futures-macro",
206
+ "futures-sink",
207
+ "futures-task",
208
+ "memchr",
209
+ "pin-project-lite",
210
+ "pin-utils",
211
+ "slab",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "getrandom"
216
+ version = "0.2.15"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
219
+ dependencies = [
220
+ "cfg-if",
221
+ "libc",
222
+ "wasi",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "glob"
227
+ version = "0.3.1"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
230
+
231
+ [[package]]
232
+ name = "globset"
233
+ version = "0.4.15"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
236
+ dependencies = [
237
+ "aho-corasick",
238
+ "bstr",
239
+ "log",
240
+ "regex-automata",
241
+ "regex-syntax 0.8.5",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "hashbrown"
246
+ version = "0.14.5"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
249
+
250
+ [[package]]
251
+ name = "hashbrown"
252
+ version = "0.15.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
255
+
256
+ [[package]]
257
+ name = "heck"
258
+ version = "0.5.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
261
+
262
+ [[package]]
263
+ name = "idna"
264
+ version = "0.5.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
267
+ dependencies = [
268
+ "unicode-bidi",
269
+ "unicode-normalization",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "indexmap"
274
+ version = "2.6.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
277
+ dependencies = [
278
+ "equivalent",
279
+ "hashbrown 0.15.0",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "indoc"
284
+ version = "2.0.5"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
287
+
288
+ [[package]]
289
+ name = "itertools"
290
+ version = "0.10.5"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
293
+ dependencies = [
294
+ "either",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "itoa"
299
+ version = "1.0.11"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
302
+
303
+ [[package]]
304
+ name = "lexical-sort"
305
+ version = "0.3.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "c09e4591611e231daf4d4c685a66cb0410cc1e502027a20ae55f2bb9e997207a"
308
+ dependencies = [
309
+ "any_ascii",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "libc"
314
+ version = "0.2.161"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
317
+
318
+ [[package]]
319
+ name = "log"
320
+ version = "0.4.22"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
323
+
324
+ [[package]]
325
+ name = "logos"
326
+ version = "0.12.1"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1"
329
+ dependencies = [
330
+ "logos-derive",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "logos-derive"
335
+ version = "0.12.1"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c"
338
+ dependencies = [
339
+ "beef",
340
+ "fnv",
341
+ "proc-macro2",
342
+ "quote",
343
+ "regex-syntax 0.6.29",
344
+ "syn 1.0.109",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "memchr"
349
+ version = "2.7.4"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
352
+
353
+ [[package]]
354
+ name = "memoffset"
355
+ version = "0.9.1"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
358
+ dependencies = [
359
+ "autocfg",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "num-conv"
364
+ version = "0.1.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
367
+
368
+ [[package]]
369
+ name = "once_cell"
370
+ version = "1.20.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
373
+
374
+ [[package]]
375
+ name = "pep440_rs"
376
+ version = "0.7.1"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "7c8ee724d21f351f9d47276614ac9710975db827ba9fe2ca5a517ba648193307"
379
+ dependencies = [
380
+ "serde",
381
+ "unicode-width",
382
+ "unscanny",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "pep508_rs"
387
+ version = "0.8.1"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "e30eadafcb06bf6c81392fa6fb2e8f7961e75a89856854d732604bce9313dc73"
390
+ dependencies = [
391
+ "once_cell",
392
+ "pep440_rs",
393
+ "regex",
394
+ "thiserror",
395
+ "unicode-width",
396
+ "url",
397
+ "urlencoding",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "percent-encoding"
402
+ version = "2.3.1"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
405
+
406
+ [[package]]
407
+ name = "pin-project-lite"
408
+ version = "0.2.15"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
411
+
412
+ [[package]]
413
+ name = "pin-utils"
414
+ version = "0.1.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
417
+
418
+ [[package]]
419
+ name = "portable-atomic"
420
+ version = "1.9.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
423
+
424
+ [[package]]
425
+ name = "powerfmt"
426
+ version = "0.2.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
429
+
430
+ [[package]]
431
+ name = "proc-macro-crate"
432
+ version = "3.2.0"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
435
+ dependencies = [
436
+ "toml_edit",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "proc-macro2"
441
+ version = "1.0.89"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
444
+ dependencies = [
445
+ "unicode-ident",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "pyo3"
450
+ version = "0.22.5"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
453
+ dependencies = [
454
+ "cfg-if",
455
+ "indoc",
456
+ "libc",
457
+ "memoffset",
458
+ "once_cell",
459
+ "portable-atomic",
460
+ "pyo3-build-config",
461
+ "pyo3-ffi",
462
+ "pyo3-macros",
463
+ "unindent",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "pyo3-build-config"
468
+ version = "0.22.5"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179"
471
+ dependencies = [
472
+ "once_cell",
473
+ "target-lexicon",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "pyo3-ffi"
478
+ version = "0.22.5"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d"
481
+ dependencies = [
482
+ "libc",
483
+ "pyo3-build-config",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "pyo3-macros"
488
+ version = "0.22.5"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "e655aad15e09b94ffdb3ce3d217acf652e26bbc37697ef012f5e5e348c716e5e"
491
+ dependencies = [
492
+ "proc-macro2",
493
+ "pyo3-macros-backend",
494
+ "quote",
495
+ "syn 2.0.85",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "pyo3-macros-backend"
500
+ version = "0.22.5"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "ae1e3f09eecd94618f60a455a23def79f79eba4dc561a97324bf9ac8c6df30ce"
503
+ dependencies = [
504
+ "heck",
505
+ "proc-macro2",
506
+ "pyo3-build-config",
507
+ "quote",
508
+ "syn 2.0.85",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "pyproject-fmt"
513
+ version = "2.5.0"
514
+ dependencies = [
515
+ "common",
516
+ "indoc",
517
+ "lexical-sort",
518
+ "pyo3",
519
+ "regex",
520
+ "rstest",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "quote"
525
+ version = "1.0.37"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
528
+ dependencies = [
529
+ "proc-macro2",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "regex"
534
+ version = "1.11.1"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
537
+ dependencies = [
538
+ "aho-corasick",
539
+ "memchr",
540
+ "regex-automata",
541
+ "regex-syntax 0.8.5",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "regex-automata"
546
+ version = "0.4.8"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
549
+ dependencies = [
550
+ "aho-corasick",
551
+ "memchr",
552
+ "regex-syntax 0.8.5",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "regex-syntax"
557
+ version = "0.6.29"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
560
+
561
+ [[package]]
562
+ name = "regex-syntax"
563
+ version = "0.8.5"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
566
+
567
+ [[package]]
568
+ name = "relative-path"
569
+ version = "1.9.3"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
572
+
573
+ [[package]]
574
+ name = "rowan"
575
+ version = "0.15.16"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "0a542b0253fa46e632d27a1dc5cf7b930de4df8659dc6e720b647fc72147ae3d"
578
+ dependencies = [
579
+ "countme",
580
+ "hashbrown 0.14.5",
581
+ "rustc-hash",
582
+ "text-size",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "rstest"
587
+ version = "0.23.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
590
+ dependencies = [
591
+ "futures",
592
+ "futures-timer",
593
+ "rstest_macros",
594
+ "rustc_version",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "rstest_macros"
599
+ version = "0.23.0"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
602
+ dependencies = [
603
+ "cfg-if",
604
+ "glob",
605
+ "proc-macro-crate",
606
+ "proc-macro2",
607
+ "quote",
608
+ "regex",
609
+ "relative-path",
610
+ "rustc_version",
611
+ "syn 2.0.85",
612
+ "unicode-ident",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "rustc-hash"
617
+ version = "1.1.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
620
+
621
+ [[package]]
622
+ name = "rustc_version"
623
+ version = "0.4.1"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
626
+ dependencies = [
627
+ "semver",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "ryu"
632
+ version = "1.0.18"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
635
+
636
+ [[package]]
637
+ name = "semver"
638
+ version = "1.0.23"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
641
+
642
+ [[package]]
643
+ name = "serde"
644
+ version = "1.0.214"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
647
+ dependencies = [
648
+ "serde_derive",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "serde_derive"
653
+ version = "1.0.214"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
656
+ dependencies = [
657
+ "proc-macro2",
658
+ "quote",
659
+ "syn 2.0.85",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "serde_json"
664
+ version = "1.0.132"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
667
+ dependencies = [
668
+ "itoa",
669
+ "memchr",
670
+ "ryu",
671
+ "serde",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "slab"
676
+ version = "0.4.9"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
679
+ dependencies = [
680
+ "autocfg",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "syn"
685
+ version = "1.0.109"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
688
+ dependencies = [
689
+ "proc-macro2",
690
+ "quote",
691
+ "unicode-ident",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "syn"
696
+ version = "2.0.85"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
699
+ dependencies = [
700
+ "proc-macro2",
701
+ "quote",
702
+ "unicode-ident",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "taplo"
707
+ version = "0.13.2"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "010941ac4171eaf12f1e26dfc11dadaf78619ea2330940fef01fe6bb0442d14d"
710
+ dependencies = [
711
+ "ahash",
712
+ "arc-swap",
713
+ "either",
714
+ "globset",
715
+ "itertools",
716
+ "logos",
717
+ "once_cell",
718
+ "rowan",
719
+ "serde",
720
+ "serde_json",
721
+ "thiserror",
722
+ "time",
723
+ "tracing",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "target-lexicon"
728
+ version = "0.12.16"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
731
+
732
+ [[package]]
733
+ name = "text-size"
734
+ version = "1.1.1"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
737
+
738
+ [[package]]
739
+ name = "thiserror"
740
+ version = "1.0.65"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
743
+ dependencies = [
744
+ "thiserror-impl",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "thiserror-impl"
749
+ version = "1.0.65"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
752
+ dependencies = [
753
+ "proc-macro2",
754
+ "quote",
755
+ "syn 2.0.85",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "time"
760
+ version = "0.3.36"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
763
+ dependencies = [
764
+ "deranged",
765
+ "itoa",
766
+ "num-conv",
767
+ "powerfmt",
768
+ "serde",
769
+ "time-core",
770
+ "time-macros",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "time-core"
775
+ version = "0.1.2"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
778
+
779
+ [[package]]
780
+ name = "time-macros"
781
+ version = "0.2.18"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
784
+ dependencies = [
785
+ "num-conv",
786
+ "time-core",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "tinyvec"
791
+ version = "1.8.0"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
794
+ dependencies = [
795
+ "tinyvec_macros",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "tinyvec_macros"
800
+ version = "0.1.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
803
+
804
+ [[package]]
805
+ name = "toml_datetime"
806
+ version = "0.6.8"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
809
+
810
+ [[package]]
811
+ name = "toml_edit"
812
+ version = "0.22.22"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
815
+ dependencies = [
816
+ "indexmap",
817
+ "toml_datetime",
818
+ "winnow",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "tox-toml-fmt"
823
+ version = "1.0.0"
824
+ dependencies = [
825
+ "common",
826
+ "indoc",
827
+ "lexical-sort",
828
+ "pyo3",
829
+ "regex",
830
+ "rstest",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "tracing"
835
+ version = "0.1.40"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
838
+ dependencies = [
839
+ "pin-project-lite",
840
+ "tracing-attributes",
841
+ "tracing-core",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "tracing-attributes"
846
+ version = "0.1.27"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
849
+ dependencies = [
850
+ "proc-macro2",
851
+ "quote",
852
+ "syn 2.0.85",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "tracing-core"
857
+ version = "0.1.32"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
860
+ dependencies = [
861
+ "once_cell",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "unicode-bidi"
866
+ version = "0.3.17"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
869
+
870
+ [[package]]
871
+ name = "unicode-ident"
872
+ version = "1.0.13"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
875
+
876
+ [[package]]
877
+ name = "unicode-normalization"
878
+ version = "0.1.24"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
881
+ dependencies = [
882
+ "tinyvec",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "unicode-width"
887
+ version = "0.2.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
890
+
891
+ [[package]]
892
+ name = "unindent"
893
+ version = "0.2.3"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
896
+
897
+ [[package]]
898
+ name = "unscanny"
899
+ version = "0.1.0"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
902
+
903
+ [[package]]
904
+ name = "url"
905
+ version = "2.5.2"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
908
+ dependencies = [
909
+ "form_urlencoded",
910
+ "idna",
911
+ "percent-encoding",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "urlencoding"
916
+ version = "2.1.3"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
919
+
920
+ [[package]]
921
+ name = "version_check"
922
+ version = "0.9.5"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
925
+
926
+ [[package]]
927
+ name = "wasi"
928
+ version = "0.11.0+wasi-snapshot-preview1"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
931
+
932
+ [[package]]
933
+ name = "winnow"
934
+ version = "0.6.20"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
937
+ dependencies = [
938
+ "memchr",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "zerocopy"
943
+ version = "0.7.35"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
946
+ dependencies = [
947
+ "zerocopy-derive",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "zerocopy-derive"
952
+ version = "0.7.35"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
955
+ dependencies = [
956
+ "proc-macro2",
957
+ "quote",
958
+ "syn 2.0.85",
959
+ ]