tox-toml-fmt 1.0.0__tar.gz → 1.2.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 (48) hide show
  1. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/Cargo.lock +143 -283
  2. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/PKG-INFO +5 -6
  3. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/Cargo.toml +4 -4
  4. tox_toml_fmt-1.2.0/common/src/pep508/marker.rs +209 -0
  5. tox_toml_fmt-1.2.0/common/src/pep508/requirement.rs +158 -0
  6. tox_toml_fmt-1.2.0/common/src/pep508/version_op/operator.rs +43 -0
  7. tox_toml_fmt-1.2.0/common/src/pep508/version_op/version.rs +164 -0
  8. tox_toml_fmt-1.2.0/common/src/pep508/version_op.rs +28 -0
  9. tox_toml_fmt-1.2.0/common/src/pep508.rs +7 -0
  10. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/table.rs +11 -3
  11. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/tests/array_tests.rs +4 -2
  12. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/tests/pep508_tests.rs +14 -4
  13. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/pyproject.toml +14 -14
  14. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/src/tox_toml_fmt/__main__.py +2 -1
  15. tox_toml_fmt-1.2.0/tox-toml-fmt/CHANGELOG.md +18 -0
  16. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/Cargo.toml +4 -4
  17. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/rust/src/main.rs +1 -0
  18. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/src/tox_toml_fmt/__main__.py +2 -1
  19. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/tox.toml +2 -2
  20. tox_toml_fmt-1.0.0/common/src/pep508.rs +0 -88
  21. tox_toml_fmt-1.0.0/tox-toml-fmt/CHANGELOG.md +0 -5
  22. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/Cargo.toml +0 -0
  23. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/LICENSE.txt +0 -0
  24. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/README.md +0 -0
  25. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/README.md +0 -0
  26. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/array.rs +0 -0
  27. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/create.rs +0 -0
  28. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/lib.rs +0 -0
  29. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/string.rs +0 -0
  30. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/tests/mod.rs +0 -0
  31. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/common/src/util.rs +0 -0
  32. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/src/tox_toml_fmt/__init__.py +0 -0
  33. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/src/tox_toml_fmt/_lib.pyi +0 -0
  34. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/src/tox_toml_fmt/py.typed +0 -0
  35. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/LICENSE.txt +0 -0
  36. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/README.md +0 -0
  37. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/docs/conf.py +0 -0
  38. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/docs/index.rst +0 -0
  39. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/rust/src/global.rs +0 -0
  40. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/rust/src/tests/global_tests.rs +0 -0
  41. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/rust/src/tests/main_tests.rs +0 -0
  42. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/rust/src/tests/mod.rs +0 -0
  43. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/src/tox_toml_fmt/__init__.py +0 -0
  44. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/src/tox_toml_fmt/_lib.pyi +0 -0
  45. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/src/tox_toml_fmt/py.typed +0 -0
  46. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/tests/test_lib.py +0 -0
  47. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/tests/test_main.py +0 -0
  48. {tox_toml_fmt-1.0.0 → tox_toml_fmt-1.2.0}/tox-toml-fmt/tests/test_pyproject_toml_fmt.py +0 -0
@@ -1,12 +1,12 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "ahash"
7
- version = "0.8.11"
7
+ version = "0.8.12"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
10
  dependencies = [
11
11
  "cfg-if",
12
12
  "getrandom",
@@ -48,11 +48,17 @@ version = "0.5.2"
48
48
  source = "registry+https://github.com/rust-lang/crates.io-index"
49
49
  checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
50
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
+
51
57
  [[package]]
52
58
  name = "bstr"
53
- version = "1.10.0"
59
+ version = "1.12.0"
54
60
  source = "registry+https://github.com/rust-lang/crates.io-index"
55
- checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
61
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
56
62
  dependencies = [
57
63
  "memchr",
58
64
  "serde",
@@ -69,7 +75,7 @@ name = "common"
69
75
  version = "1.0.0"
70
76
  dependencies = [
71
77
  "indoc",
72
- "pep508_rs",
78
+ "regex",
73
79
  "rstest",
74
80
  "taplo",
75
81
  ]
@@ -82,24 +88,24 @@ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
82
88
 
83
89
  [[package]]
84
90
  name = "deranged"
85
- version = "0.3.11"
91
+ version = "0.4.0"
86
92
  source = "registry+https://github.com/rust-lang/crates.io-index"
87
- checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
93
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
88
94
  dependencies = [
89
95
  "powerfmt",
90
96
  ]
91
97
 
92
98
  [[package]]
93
99
  name = "either"
94
- version = "1.13.0"
100
+ version = "1.15.0"
95
101
  source = "registry+https://github.com/rust-lang/crates.io-index"
96
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
102
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
97
103
 
98
104
  [[package]]
99
105
  name = "equivalent"
100
- version = "1.0.1"
106
+ version = "1.0.2"
101
107
  source = "registry+https://github.com/rust-lang/crates.io-index"
102
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
108
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
103
109
 
104
110
  [[package]]
105
111
  name = "fnv"
@@ -107,63 +113,12 @@ version = "1.0.7"
107
113
  source = "registry+https://github.com/rust-lang/crates.io-index"
108
114
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
109
115
 
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
116
  [[package]]
145
117
  name = "futures-core"
146
118
  version = "0.3.31"
147
119
  source = "registry+https://github.com/rust-lang/crates.io-index"
148
120
  checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
149
121
 
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
122
  [[package]]
168
123
  name = "futures-macro"
169
124
  version = "0.3.31"
@@ -172,15 +127,9 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
172
127
  dependencies = [
173
128
  "proc-macro2",
174
129
  "quote",
175
- "syn 2.0.85",
130
+ "syn 2.0.101",
176
131
  ]
177
132
 
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
133
  [[package]]
185
134
  name = "futures-task"
186
135
  version = "0.3.31"
@@ -199,13 +148,9 @@ version = "0.3.31"
199
148
  source = "registry+https://github.com/rust-lang/crates.io-index"
200
149
  checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
201
150
  dependencies = [
202
- "futures-channel",
203
151
  "futures-core",
204
- "futures-io",
205
152
  "futures-macro",
206
- "futures-sink",
207
153
  "futures-task",
208
- "memchr",
209
154
  "pin-project-lite",
210
155
  "pin-utils",
211
156
  "slab",
@@ -213,26 +158,27 @@ dependencies = [
213
158
 
214
159
  [[package]]
215
160
  name = "getrandom"
216
- version = "0.2.15"
161
+ version = "0.3.3"
217
162
  source = "registry+https://github.com/rust-lang/crates.io-index"
218
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
163
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
219
164
  dependencies = [
220
165
  "cfg-if",
221
166
  "libc",
167
+ "r-efi",
222
168
  "wasi",
223
169
  ]
224
170
 
225
171
  [[package]]
226
172
  name = "glob"
227
- version = "0.3.1"
173
+ version = "0.3.2"
228
174
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
175
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
230
176
 
231
177
  [[package]]
232
178
  name = "globset"
233
- version = "0.4.15"
179
+ version = "0.4.16"
234
180
  source = "registry+https://github.com/rust-lang/crates.io-index"
235
- checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
181
+ checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
236
182
  dependencies = [
237
183
  "aho-corasick",
238
184
  "bstr",
@@ -249,9 +195,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
249
195
 
250
196
  [[package]]
251
197
  name = "hashbrown"
252
- version = "0.15.0"
198
+ version = "0.15.3"
253
199
  source = "registry+https://github.com/rust-lang/crates.io-index"
254
- checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
200
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
255
201
 
256
202
  [[package]]
257
203
  name = "heck"
@@ -259,31 +205,21 @@ version = "0.5.0"
259
205
  source = "registry+https://github.com/rust-lang/crates.io-index"
260
206
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
261
207
 
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
208
  [[package]]
273
209
  name = "indexmap"
274
- version = "2.6.0"
210
+ version = "2.9.0"
275
211
  source = "registry+https://github.com/rust-lang/crates.io-index"
276
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
212
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
277
213
  dependencies = [
278
214
  "equivalent",
279
- "hashbrown 0.15.0",
215
+ "hashbrown 0.15.3",
280
216
  ]
281
217
 
282
218
  [[package]]
283
219
  name = "indoc"
284
- version = "2.0.5"
220
+ version = "2.0.6"
285
221
  source = "registry+https://github.com/rust-lang/crates.io-index"
286
- checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
222
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
287
223
 
288
224
  [[package]]
289
225
  name = "itertools"
@@ -296,9 +232,9 @@ dependencies = [
296
232
 
297
233
  [[package]]
298
234
  name = "itoa"
299
- version = "1.0.11"
235
+ version = "1.0.15"
300
236
  source = "registry+https://github.com/rust-lang/crates.io-index"
301
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
237
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
302
238
 
303
239
  [[package]]
304
240
  name = "lexical-sort"
@@ -311,15 +247,15 @@ dependencies = [
311
247
 
312
248
  [[package]]
313
249
  name = "libc"
314
- version = "0.2.161"
250
+ version = "0.2.172"
315
251
  source = "registry+https://github.com/rust-lang/crates.io-index"
316
- checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
252
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
317
253
 
318
254
  [[package]]
319
255
  name = "log"
320
- version = "0.4.22"
256
+ version = "0.4.27"
321
257
  source = "registry+https://github.com/rust-lang/crates.io-index"
322
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
258
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
323
259
 
324
260
  [[package]]
325
261
  name = "logos"
@@ -367,47 +303,15 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
367
303
 
368
304
  [[package]]
369
305
  name = "once_cell"
370
- version = "1.20.2"
306
+ version = "1.21.3"
371
307
  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"
308
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
405
309
 
406
310
  [[package]]
407
311
  name = "pin-project-lite"
408
- version = "0.2.15"
312
+ version = "0.2.16"
409
313
  source = "registry+https://github.com/rust-lang/crates.io-index"
410
- checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
314
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
411
315
 
412
316
  [[package]]
413
317
  name = "pin-utils"
@@ -417,9 +321,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
417
321
 
418
322
  [[package]]
419
323
  name = "portable-atomic"
420
- version = "1.9.0"
324
+ version = "1.11.0"
421
325
  source = "registry+https://github.com/rust-lang/crates.io-index"
422
- checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
326
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
423
327
 
424
328
  [[package]]
425
329
  name = "powerfmt"
@@ -429,29 +333,28 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
429
333
 
430
334
  [[package]]
431
335
  name = "proc-macro-crate"
432
- version = "3.2.0"
336
+ version = "3.3.0"
433
337
  source = "registry+https://github.com/rust-lang/crates.io-index"
434
- checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
338
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
435
339
  dependencies = [
436
340
  "toml_edit",
437
341
  ]
438
342
 
439
343
  [[package]]
440
344
  name = "proc-macro2"
441
- version = "1.0.89"
345
+ version = "1.0.95"
442
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
- checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
347
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
444
348
  dependencies = [
445
349
  "unicode-ident",
446
350
  ]
447
351
 
448
352
  [[package]]
449
353
  name = "pyo3"
450
- version = "0.22.5"
354
+ version = "0.26.0"
451
355
  source = "registry+https://github.com/rust-lang/crates.io-index"
452
- checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
356
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
453
357
  dependencies = [
454
- "cfg-if",
455
358
  "indoc",
456
359
  "libc",
457
360
  "memoffset",
@@ -465,19 +368,18 @@ dependencies = [
465
368
 
466
369
  [[package]]
467
370
  name = "pyo3-build-config"
468
- version = "0.22.5"
371
+ version = "0.26.0"
469
372
  source = "registry+https://github.com/rust-lang/crates.io-index"
470
- checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179"
373
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
471
374
  dependencies = [
472
- "once_cell",
473
375
  "target-lexicon",
474
376
  ]
475
377
 
476
378
  [[package]]
477
379
  name = "pyo3-ffi"
478
- version = "0.22.5"
380
+ version = "0.26.0"
479
381
  source = "registry+https://github.com/rust-lang/crates.io-index"
480
- checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d"
382
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
481
383
  dependencies = [
482
384
  "libc",
483
385
  "pyo3-build-config",
@@ -485,32 +387,32 @@ dependencies = [
485
387
 
486
388
  [[package]]
487
389
  name = "pyo3-macros"
488
- version = "0.22.5"
390
+ version = "0.26.0"
489
391
  source = "registry+https://github.com/rust-lang/crates.io-index"
490
- checksum = "e655aad15e09b94ffdb3ce3d217acf652e26bbc37697ef012f5e5e348c716e5e"
392
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
491
393
  dependencies = [
492
394
  "proc-macro2",
493
395
  "pyo3-macros-backend",
494
396
  "quote",
495
- "syn 2.0.85",
397
+ "syn 2.0.101",
496
398
  ]
497
399
 
498
400
  [[package]]
499
401
  name = "pyo3-macros-backend"
500
- version = "0.22.5"
402
+ version = "0.26.0"
501
403
  source = "registry+https://github.com/rust-lang/crates.io-index"
502
- checksum = "ae1e3f09eecd94618f60a455a23def79f79eba4dc561a97324bf9ac8c6df30ce"
404
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
503
405
  dependencies = [
504
406
  "heck",
505
407
  "proc-macro2",
506
408
  "pyo3-build-config",
507
409
  "quote",
508
- "syn 2.0.85",
410
+ "syn 2.0.101",
509
411
  ]
510
412
 
511
413
  [[package]]
512
414
  name = "pyproject-fmt"
513
- version = "2.5.0"
415
+ version = "2.8.0"
514
416
  dependencies = [
515
417
  "common",
516
418
  "indoc",
@@ -522,13 +424,19 @@ dependencies = [
522
424
 
523
425
  [[package]]
524
426
  name = "quote"
525
- version = "1.0.37"
427
+ version = "1.0.40"
526
428
  source = "registry+https://github.com/rust-lang/crates.io-index"
527
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
429
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
528
430
  dependencies = [
529
431
  "proc-macro2",
530
432
  ]
531
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
+
532
440
  [[package]]
533
441
  name = "regex"
534
442
  version = "1.11.1"
@@ -543,9 +451,9 @@ dependencies = [
543
451
 
544
452
  [[package]]
545
453
  name = "regex-automata"
546
- version = "0.4.8"
454
+ version = "0.4.9"
547
455
  source = "registry+https://github.com/rust-lang/crates.io-index"
548
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
456
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
549
457
  dependencies = [
550
458
  "aho-corasick",
551
459
  "memchr",
@@ -584,21 +492,20 @@ dependencies = [
584
492
 
585
493
  [[package]]
586
494
  name = "rstest"
587
- version = "0.23.0"
495
+ version = "0.26.1"
588
496
  source = "registry+https://github.com/rust-lang/crates.io-index"
589
- checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
497
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
590
498
  dependencies = [
591
- "futures",
592
499
  "futures-timer",
500
+ "futures-util",
593
501
  "rstest_macros",
594
- "rustc_version",
595
502
  ]
596
503
 
597
504
  [[package]]
598
505
  name = "rstest_macros"
599
- version = "0.23.0"
506
+ version = "0.26.1"
600
507
  source = "registry+https://github.com/rust-lang/crates.io-index"
601
- checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
508
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
602
509
  dependencies = [
603
510
  "cfg-if",
604
511
  "glob",
@@ -608,7 +515,7 @@ dependencies = [
608
515
  "regex",
609
516
  "relative-path",
610
517
  "rustc_version",
611
- "syn 2.0.85",
518
+ "syn 2.0.101",
612
519
  "unicode-ident",
613
520
  ]
614
521
 
@@ -629,41 +536,41 @@ dependencies = [
629
536
 
630
537
  [[package]]
631
538
  name = "ryu"
632
- version = "1.0.18"
539
+ version = "1.0.20"
633
540
  source = "registry+https://github.com/rust-lang/crates.io-index"
634
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
541
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
635
542
 
636
543
  [[package]]
637
544
  name = "semver"
638
- version = "1.0.23"
545
+ version = "1.0.26"
639
546
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
- checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
547
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
641
548
 
642
549
  [[package]]
643
550
  name = "serde"
644
- version = "1.0.214"
551
+ version = "1.0.219"
645
552
  source = "registry+https://github.com/rust-lang/crates.io-index"
646
- checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
553
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
647
554
  dependencies = [
648
555
  "serde_derive",
649
556
  ]
650
557
 
651
558
  [[package]]
652
559
  name = "serde_derive"
653
- version = "1.0.214"
560
+ version = "1.0.219"
654
561
  source = "registry+https://github.com/rust-lang/crates.io-index"
655
- checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
562
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
656
563
  dependencies = [
657
564
  "proc-macro2",
658
565
  "quote",
659
- "syn 2.0.85",
566
+ "syn 2.0.101",
660
567
  ]
661
568
 
662
569
  [[package]]
663
570
  name = "serde_json"
664
- version = "1.0.132"
571
+ version = "1.0.140"
665
572
  source = "registry+https://github.com/rust-lang/crates.io-index"
666
- checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
573
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
667
574
  dependencies = [
668
575
  "itoa",
669
576
  "memchr",
@@ -693,9 +600,9 @@ dependencies = [
693
600
 
694
601
  [[package]]
695
602
  name = "syn"
696
- version = "2.0.85"
603
+ version = "2.0.101"
697
604
  source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
605
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
699
606
  dependencies = [
700
607
  "proc-macro2",
701
608
  "quote",
@@ -704,9 +611,9 @@ dependencies = [
704
611
 
705
612
  [[package]]
706
613
  name = "taplo"
707
- version = "0.13.2"
614
+ version = "0.14.0"
708
615
  source = "registry+https://github.com/rust-lang/crates.io-index"
709
- checksum = "010941ac4171eaf12f1e26dfc11dadaf78619ea2330940fef01fe6bb0442d14d"
616
+ checksum = "c221a50eef1a5493074f11ca1ed62bef28c05a4d925002944cc686b2e783a5b3"
710
617
  dependencies = [
711
618
  "ahash",
712
619
  "arc-swap",
@@ -725,9 +632,9 @@ dependencies = [
725
632
 
726
633
  [[package]]
727
634
  name = "target-lexicon"
728
- version = "0.12.16"
635
+ version = "0.13.2"
729
636
  source = "registry+https://github.com/rust-lang/crates.io-index"
730
- checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
637
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
731
638
 
732
639
  [[package]]
733
640
  name = "text-size"
@@ -737,29 +644,29 @@ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
737
644
 
738
645
  [[package]]
739
646
  name = "thiserror"
740
- version = "1.0.65"
647
+ version = "1.0.69"
741
648
  source = "registry+https://github.com/rust-lang/crates.io-index"
742
- checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
649
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
743
650
  dependencies = [
744
651
  "thiserror-impl",
745
652
  ]
746
653
 
747
654
  [[package]]
748
655
  name = "thiserror-impl"
749
- version = "1.0.65"
656
+ version = "1.0.69"
750
657
  source = "registry+https://github.com/rust-lang/crates.io-index"
751
- checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
658
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
752
659
  dependencies = [
753
660
  "proc-macro2",
754
661
  "quote",
755
- "syn 2.0.85",
662
+ "syn 2.0.101",
756
663
  ]
757
664
 
758
665
  [[package]]
759
666
  name = "time"
760
- version = "0.3.36"
667
+ version = "0.3.41"
761
668
  source = "registry+https://github.com/rust-lang/crates.io-index"
762
- checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
669
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
763
670
  dependencies = [
764
671
  "deranged",
765
672
  "itoa",
@@ -772,46 +679,31 @@ dependencies = [
772
679
 
773
680
  [[package]]
774
681
  name = "time-core"
775
- version = "0.1.2"
682
+ version = "0.1.4"
776
683
  source = "registry+https://github.com/rust-lang/crates.io-index"
777
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
684
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
778
685
 
779
686
  [[package]]
780
687
  name = "time-macros"
781
- version = "0.2.18"
688
+ version = "0.2.22"
782
689
  source = "registry+https://github.com/rust-lang/crates.io-index"
783
- checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
690
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
784
691
  dependencies = [
785
692
  "num-conv",
786
693
  "time-core",
787
694
  ]
788
695
 
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
696
  [[package]]
805
697
  name = "toml_datetime"
806
- version = "0.6.8"
698
+ version = "0.6.9"
807
699
  source = "registry+https://github.com/rust-lang/crates.io-index"
808
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
700
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
809
701
 
810
702
  [[package]]
811
703
  name = "toml_edit"
812
- version = "0.22.22"
704
+ version = "0.22.26"
813
705
  source = "registry+https://github.com/rust-lang/crates.io-index"
814
- checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
706
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
815
707
  dependencies = [
816
708
  "indexmap",
817
709
  "toml_datetime",
@@ -820,7 +712,7 @@ dependencies = [
820
712
 
821
713
  [[package]]
822
714
  name = "tox-toml-fmt"
823
- version = "1.0.0"
715
+ version = "1.2.0"
824
716
  dependencies = [
825
717
  "common",
826
718
  "indoc",
@@ -832,9 +724,9 @@ dependencies = [
832
724
 
833
725
  [[package]]
834
726
  name = "tracing"
835
- version = "0.1.40"
727
+ version = "0.1.41"
836
728
  source = "registry+https://github.com/rust-lang/crates.io-index"
837
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
729
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
838
730
  dependencies = [
839
731
  "pin-project-lite",
840
732
  "tracing-attributes",
@@ -843,79 +735,35 @@ dependencies = [
843
735
 
844
736
  [[package]]
845
737
  name = "tracing-attributes"
846
- version = "0.1.27"
738
+ version = "0.1.28"
847
739
  source = "registry+https://github.com/rust-lang/crates.io-index"
848
- checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
740
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
849
741
  dependencies = [
850
742
  "proc-macro2",
851
743
  "quote",
852
- "syn 2.0.85",
744
+ "syn 2.0.101",
853
745
  ]
854
746
 
855
747
  [[package]]
856
748
  name = "tracing-core"
857
- version = "0.1.32"
749
+ version = "0.1.33"
858
750
  source = "registry+https://github.com/rust-lang/crates.io-index"
859
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
751
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
860
752
  dependencies = [
861
753
  "once_cell",
862
754
  ]
863
755
 
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
756
  [[package]]
871
757
  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"
758
+ version = "1.0.18"
888
759
  source = "registry+https://github.com/rust-lang/crates.io-index"
889
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
760
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
890
761
 
891
762
  [[package]]
892
763
  name = "unindent"
893
- version = "0.2.3"
764
+ version = "0.2.4"
894
765
  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"
766
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
919
767
 
920
768
  [[package]]
921
769
  name = "version_check"
@@ -925,35 +773,47 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
925
773
 
926
774
  [[package]]
927
775
  name = "wasi"
928
- version = "0.11.0+wasi-snapshot-preview1"
776
+ version = "0.14.2+wasi-0.2.4"
929
777
  source = "registry+https://github.com/rust-lang/crates.io-index"
930
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
778
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
779
+ dependencies = [
780
+ "wit-bindgen-rt",
781
+ ]
931
782
 
932
783
  [[package]]
933
784
  name = "winnow"
934
- version = "0.6.20"
785
+ version = "0.7.10"
935
786
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
- checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
787
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
937
788
  dependencies = [
938
789
  "memchr",
939
790
  ]
940
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
+
941
801
  [[package]]
942
802
  name = "zerocopy"
943
- version = "0.7.35"
803
+ version = "0.8.25"
944
804
  source = "registry+https://github.com/rust-lang/crates.io-index"
945
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
805
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
946
806
  dependencies = [
947
807
  "zerocopy-derive",
948
808
  ]
949
809
 
950
810
  [[package]]
951
811
  name = "zerocopy-derive"
952
- version = "0.7.35"
812
+ version = "0.8.25"
953
813
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
814
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
955
815
  dependencies = [
956
816
  "proc-macro2",
957
817
  "quote",
958
- "syn 2.0.85",
818
+ "syn 2.0.101",
959
819
  ]