pytest-rs 0.0.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 (155) hide show
  1. pytest_rs-0.0.1/Cargo.lock +1057 -0
  2. pytest_rs-0.0.1/Cargo.toml +46 -0
  3. pytest_rs-0.0.1/LICENSE +54 -0
  4. pytest_rs-0.0.1/PKG-INFO +143 -0
  5. pytest_rs-0.0.1/README.md +119 -0
  6. pytest_rs-0.0.1/THIRD-PARTY-NOTICES.md +58 -0
  7. pytest_rs-0.0.1/crates/pytest-rs/Cargo.toml +39 -0
  8. pytest_rs-0.0.1/crates/pytest-rs/README.md +119 -0
  9. pytest_rs-0.0.1/crates/pytest-rs/src/launcher.rs +64 -0
  10. pytest_rs-0.0.1/crates/pytest-rs/src/main.rs +81 -0
  11. pytest_rs-0.0.1/crates/pytest-rs/tests/integration.rs +986 -0
  12. pytest_rs-0.0.1/crates/pytest-rs-asyncio/Cargo.toml +15 -0
  13. pytest_rs-0.0.1/crates/pytest-rs-asyncio/README.md +119 -0
  14. pytest_rs-0.0.1/crates/pytest-rs-asyncio/py/helper.py +176 -0
  15. pytest_rs-0.0.1/crates/pytest-rs-asyncio/py/pytest_asyncio_shim.py +27 -0
  16. pytest_rs-0.0.1/crates/pytest-rs-asyncio/src/lib.rs +1138 -0
  17. pytest_rs-0.0.1/crates/pytest-rs-benchmark/Cargo.toml +18 -0
  18. pytest_rs-0.0.1/crates/pytest-rs-benchmark/README.md +119 -0
  19. pytest_rs-0.0.1/crates/pytest-rs-benchmark/py/helper.py +66 -0
  20. pytest_rs-0.0.1/crates/pytest-rs-benchmark/src/fixture.rs +372 -0
  21. pytest_rs-0.0.1/crates/pytest-rs-benchmark/src/lib.rs +308 -0
  22. pytest_rs-0.0.1/crates/pytest-rs-benchmark/src/report.rs +168 -0
  23. pytest_rs-0.0.1/crates/pytest-rs-benchmark/src/stats.rs +87 -0
  24. pytest_rs-0.0.1/crates/pytest-rs-core/Cargo.toml +30 -0
  25. pytest_rs-0.0.1/crates/pytest-rs-core/README.md +119 -0
  26. pytest_rs-0.0.1/crates/pytest-rs-core/build.rs +45 -0
  27. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/__init__.py +8 -0
  28. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_code/__init__.py +17 -0
  29. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_code/code.py +1 -0
  30. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_code/source.py +1 -0
  31. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_io/__init__.py +38 -0
  32. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_io/pprint.py +659 -0
  33. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_io/saferepr.py +128 -0
  34. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_io/terminalwriter.py +1 -0
  35. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_io/wcwidth.py +1 -0
  36. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_py/__init__.py +1 -0
  37. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_py/error.py +1 -0
  38. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_py/path.py +1 -0
  39. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/_stub.py +35 -0
  40. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/assertion/__init__.py +12 -0
  41. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/assertion/rewrite.py +1 -0
  42. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/assertion/truncate.py +130 -0
  43. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/assertion/util.py +597 -0
  44. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/cacheprovider.py +1 -0
  45. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/capture.py +20 -0
  46. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/compat.py +41 -0
  47. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/config/__init__.py +71 -0
  48. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/config/argparsing.py +16 -0
  49. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/config/exceptions.py +3 -0
  50. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/config/findpaths.py +309 -0
  51. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/debugging.py +1 -0
  52. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/deprecated.py +1 -0
  53. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/doctest.py +742 -0
  54. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/faulthandler.py +1 -0
  55. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/fixtures.py +17 -0
  56. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/freeze_support.py +1 -0
  57. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/helpconfig.py +1 -0
  58. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/hookspec.py +1 -0
  59. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/junitxml.py +11 -0
  60. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/legacypath.py +1 -0
  61. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/logging.py +7 -0
  62. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/main.py +17 -0
  63. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/mark/__init__.py +26 -0
  64. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/mark/expression.py +1 -0
  65. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/mark/structures.py +6 -0
  66. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/monkeypatch.py +3 -0
  67. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/nodes.py +6 -0
  68. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/outcomes.py +14 -0
  69. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/pathlib.py +43 -0
  70. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/pytester.py +11 -0
  71. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/python.py +1 -0
  72. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/python_api.py +1 -0
  73. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/recwarn.py +9 -0
  74. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/reports.py +53 -0
  75. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/runner.py +1 -0
  76. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/scope.py +1 -0
  77. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/setuponly.py +1 -0
  78. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/setupplan.py +1 -0
  79. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/skipping.py +1 -0
  80. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/stash.py +31 -0
  81. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/stepwise.py +1 -0
  82. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/subtests.py +10 -0
  83. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/terminal.py +56 -0
  84. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/threadexception.py +1 -0
  85. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/timing.py +3 -0
  86. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/tmpdir.py +3 -0
  87. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/unittest.py +1 -0
  88. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/unraisableexception.py +1 -0
  89. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/warning_types.py +15 -0
  90. pytest_rs-0.0.1/crates/pytest-rs-core/py/_pytest/warnings.py +1 -0
  91. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/__init__.py +124 -0
  92. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_approx.py +42 -0
  93. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_cache.py +193 -0
  94. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_capture.py +893 -0
  95. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_ctx.py +32 -0
  96. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_fixtures.py +27 -0
  97. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_junitxml.py +681 -0
  98. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_logging.py +403 -0
  99. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_marks.py +142 -0
  100. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_metafunc.py +26 -0
  101. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_monkeypatch.py +185 -0
  102. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_node.py +150 -0
  103. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_outcomes.py +81 -0
  104. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_pluginmanager.py +31 -0
  105. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_pytester.py +555 -0
  106. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_raises.py +58 -0
  107. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_rewrite.py +296 -0
  108. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_setupshow.py +17 -0
  109. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_skipping.py +156 -0
  110. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_subtests.py +215 -0
  111. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_tb.py +135 -0
  112. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_tmp_path.py +229 -0
  113. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_unittest.py +154 -0
  114. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_warning_types.py +48 -0
  115. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_warns.py +183 -0
  116. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_wcapture.py +212 -0
  117. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_xdist_fixtures.py +22 -0
  118. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/_xunit.py +36 -0
  119. pytest_rs-0.0.1/crates/pytest-rs-core/py/pytest/cacheprovider.py +24 -0
  120. pytest_rs-0.0.1/crates/pytest-rs-core/py/xdist/__init__.py +28 -0
  121. pytest_rs-0.0.1/crates/pytest-rs-core/src/cache.rs +284 -0
  122. pytest_rs-0.0.1/crates/pytest-rs-core/src/collect.rs +371 -0
  123. pytest_rs-0.0.1/crates/pytest-rs-core/src/config.rs +769 -0
  124. pytest_rs-0.0.1/crates/pytest-rs-core/src/dist.rs +658 -0
  125. pytest_rs-0.0.1/crates/pytest-rs-core/src/engine.rs +1661 -0
  126. pytest_rs-0.0.1/crates/pytest-rs-core/src/fixture.rs +141 -0
  127. pytest_rs-0.0.1/crates/pytest-rs-core/src/hooks.rs +122 -0
  128. pytest_rs-0.0.1/crates/pytest-rs-core/src/ipc.rs +48 -0
  129. pytest_rs-0.0.1/crates/pytest-rs-core/src/lib.rs +27 -0
  130. pytest_rs-0.0.1/crates/pytest-rs-core/src/markexpr.rs +123 -0
  131. pytest_rs-0.0.1/crates/pytest-rs-core/src/python.rs +2632 -0
  132. pytest_rs-0.0.1/crates/pytest-rs-core/src/report.rs +76 -0
  133. pytest_rs-0.0.1/crates/pytest-rs-core/src/request.rs +232 -0
  134. pytest_rs-0.0.1/crates/pytest-rs-core/src/runner.rs +1827 -0
  135. pytest_rs-0.0.1/crates/pytest-rs-core/src/session.rs +141 -0
  136. pytest_rs-0.0.1/crates/pytest-rs-core/src/worker.rs +483 -0
  137. pytest_rs-0.0.1/crates/pytest-rs-cov/Cargo.toml +23 -0
  138. pytest_rs-0.0.1/crates/pytest-rs-cov/README.md +119 -0
  139. pytest_rs-0.0.1/crates/pytest-rs-cov/py/pytest_cov/__init__.py +33 -0
  140. pytest_rs-0.0.1/crates/pytest-rs-cov/py/pytest_cov/plugin.py +15 -0
  141. pytest_rs-0.0.1/crates/pytest-rs-cov/src/analysis.rs +193 -0
  142. pytest_rs-0.0.1/crates/pytest-rs-cov/src/collector.rs +139 -0
  143. pytest_rs-0.0.1/crates/pytest-rs-cov/src/lib.rs +644 -0
  144. pytest_rs-0.0.1/crates/pytest-rs-cov/src/report.rs +241 -0
  145. pytest_rs-0.0.1/crates/pytest-rs-mock/Cargo.toml +15 -0
  146. pytest_rs-0.0.1/crates/pytest-rs-mock/README.md +119 -0
  147. pytest_rs-0.0.1/crates/pytest-rs-mock/py/pytest_mock/__init__.py +30 -0
  148. pytest_rs-0.0.1/crates/pytest-rs-mock/py/pytest_mock/_util.py +37 -0
  149. pytest_rs-0.0.1/crates/pytest-rs-mock/py/pytest_mock/plugin.py +657 -0
  150. pytest_rs-0.0.1/crates/pytest-rs-mock/src/lib.rs +84 -0
  151. pytest_rs-0.0.1/crates/pytest-rs-split/Cargo.toml +16 -0
  152. pytest_rs-0.0.1/crates/pytest-rs-split/README.md +119 -0
  153. pytest_rs-0.0.1/crates/pytest-rs-split/src/algorithms.rs +99 -0
  154. pytest_rs-0.0.1/crates/pytest-rs-split/src/lib.rs +288 -0
  155. pytest_rs-0.0.1/pyproject.toml +81 -0
@@ -0,0 +1,1057 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "attribute-derive"
66
+ version = "0.10.5"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
69
+ dependencies = [
70
+ "attribute-derive-macro",
71
+ "derive-where",
72
+ "manyhow",
73
+ "proc-macro2",
74
+ "quote",
75
+ "syn",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "attribute-derive-macro"
80
+ version = "0.10.5"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
83
+ dependencies = [
84
+ "collection_literals",
85
+ "interpolator",
86
+ "manyhow",
87
+ "proc-macro-utils",
88
+ "proc-macro2",
89
+ "quote",
90
+ "quote-use",
91
+ "syn",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bitflags"
96
+ version = "2.8.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
99
+
100
+ [[package]]
101
+ name = "bstr"
102
+ version = "1.12.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
105
+ dependencies = [
106
+ "memchr",
107
+ "regex-automata",
108
+ "serde",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "byteorder"
113
+ version = "1.5.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
116
+
117
+ [[package]]
118
+ name = "castaway"
119
+ version = "0.2.4"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
122
+ dependencies = [
123
+ "rustversion",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "cfg-if"
128
+ version = "1.0.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
131
+
132
+ [[package]]
133
+ name = "clap"
134
+ version = "4.6.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
137
+ dependencies = [
138
+ "clap_builder",
139
+ "clap_derive",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "clap_builder"
144
+ version = "4.6.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
147
+ dependencies = [
148
+ "anstream",
149
+ "anstyle",
150
+ "clap_lex",
151
+ "strsim",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "clap_derive"
156
+ version = "4.6.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
159
+ dependencies = [
160
+ "heck",
161
+ "proc-macro2",
162
+ "quote",
163
+ "syn",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "clap_lex"
168
+ version = "1.1.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
171
+
172
+ [[package]]
173
+ name = "collection_literals"
174
+ version = "1.0.3"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
177
+
178
+ [[package]]
179
+ name = "colorchoice"
180
+ version = "1.0.5"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
183
+
184
+ [[package]]
185
+ name = "compact_str"
186
+ version = "0.9.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
189
+ dependencies = [
190
+ "castaway",
191
+ "cfg-if",
192
+ "itoa",
193
+ "rustversion",
194
+ "ryu",
195
+ "static_assertions",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "derive-where"
200
+ version = "1.6.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
203
+ dependencies = [
204
+ "proc-macro2",
205
+ "quote",
206
+ "syn",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "either"
211
+ version = "1.13.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
214
+
215
+ [[package]]
216
+ name = "equivalent"
217
+ version = "1.0.2"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
220
+
221
+ [[package]]
222
+ name = "get-size-derive2"
223
+ version = "0.9.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "c9f8ab1b98a1284961d722ce994d9a0f3018ab1917618d4113824a72b9f71bc9"
226
+ dependencies = [
227
+ "attribute-derive",
228
+ "quote",
229
+ "syn",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "get-size2"
234
+ version = "0.9.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "b0cd0777a1057362cab35a779e0d79dacecb8d73e2c733eaafeb7ea917b08f03"
237
+ dependencies = [
238
+ "compact_str",
239
+ "get-size-derive2",
240
+ "hashbrown",
241
+ "ordermap",
242
+ "smallvec",
243
+ "thin-vec",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "getopts"
248
+ version = "0.2.21"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
251
+ dependencies = [
252
+ "unicode-width",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "getrandom"
257
+ version = "0.2.15"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
260
+ dependencies = [
261
+ "cfg-if",
262
+ "libc",
263
+ "wasi",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "glob"
268
+ version = "0.3.2"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
271
+
272
+ [[package]]
273
+ name = "hashbrown"
274
+ version = "0.17.1"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
277
+
278
+ [[package]]
279
+ name = "heck"
280
+ version = "0.5.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
283
+
284
+ [[package]]
285
+ name = "indexmap"
286
+ version = "2.14.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
289
+ dependencies = [
290
+ "equivalent",
291
+ "hashbrown",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "interpolator"
296
+ version = "0.5.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
299
+
300
+ [[package]]
301
+ name = "is-macro"
302
+ version = "0.3.7"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
305
+ dependencies = [
306
+ "heck",
307
+ "proc-macro2",
308
+ "quote",
309
+ "syn",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "is_terminal_polyfill"
314
+ version = "1.70.2"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
317
+
318
+ [[package]]
319
+ name = "itertools"
320
+ version = "0.14.0"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
323
+ dependencies = [
324
+ "either",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "itoa"
329
+ version = "1.0.18"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
332
+
333
+ [[package]]
334
+ name = "libc"
335
+ version = "0.2.169"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
338
+
339
+ [[package]]
340
+ name = "log"
341
+ version = "0.4.25"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
344
+
345
+ [[package]]
346
+ name = "manyhow"
347
+ version = "0.11.4"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
350
+ dependencies = [
351
+ "manyhow-macros",
352
+ "proc-macro2",
353
+ "quote",
354
+ "syn",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "manyhow-macros"
359
+ version = "0.11.4"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
362
+ dependencies = [
363
+ "proc-macro-utils",
364
+ "proc-macro2",
365
+ "quote",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "memchr"
370
+ version = "2.7.4"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
373
+
374
+ [[package]]
375
+ name = "once_cell"
376
+ version = "1.21.4"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
379
+
380
+ [[package]]
381
+ name = "once_cell_polyfill"
382
+ version = "1.70.2"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
385
+
386
+ [[package]]
387
+ name = "ordermap"
388
+ version = "1.2.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "7f7476a5b122ff1fce7208e7ee9dccd0a516e835f5b8b19b8f3c98a34cf757c1"
391
+ dependencies = [
392
+ "indexmap",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "phf"
397
+ version = "0.11.3"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
400
+ dependencies = [
401
+ "phf_shared",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "phf_codegen"
406
+ version = "0.11.3"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
409
+ dependencies = [
410
+ "phf_generator",
411
+ "phf_shared",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "phf_generator"
416
+ version = "0.11.3"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
419
+ dependencies = [
420
+ "phf_shared",
421
+ "rand",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "phf_shared"
426
+ version = "0.11.3"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
429
+ dependencies = [
430
+ "siphasher",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "portable-atomic"
435
+ version = "1.10.0"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
438
+
439
+ [[package]]
440
+ name = "ppv-lite86"
441
+ version = "0.2.20"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
444
+ dependencies = [
445
+ "zerocopy",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "proc-macro-utils"
450
+ version = "0.10.0"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
453
+ dependencies = [
454
+ "proc-macro2",
455
+ "quote",
456
+ "smallvec",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "proc-macro2"
461
+ version = "1.0.106"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
464
+ dependencies = [
465
+ "unicode-ident",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "pyo3"
470
+ version = "0.28.3"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
473
+ dependencies = [
474
+ "libc",
475
+ "once_cell",
476
+ "portable-atomic",
477
+ "pyo3-build-config",
478
+ "pyo3-ffi",
479
+ "pyo3-macros",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "pyo3-build-config"
484
+ version = "0.28.3"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
487
+ dependencies = [
488
+ "target-lexicon",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "pyo3-ffi"
493
+ version = "0.28.3"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
496
+ dependencies = [
497
+ "libc",
498
+ "pyo3-build-config",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "pyo3-macros"
503
+ version = "0.28.3"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
506
+ dependencies = [
507
+ "proc-macro2",
508
+ "pyo3-macros-backend",
509
+ "quote",
510
+ "syn",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "pyo3-macros-backend"
515
+ version = "0.28.3"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
518
+ dependencies = [
519
+ "heck",
520
+ "proc-macro2",
521
+ "pyo3-build-config",
522
+ "quote",
523
+ "syn",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "pytest-rs"
528
+ version = "0.0.1"
529
+ dependencies = [
530
+ "pytest-rs-asyncio",
531
+ "pytest-rs-benchmark",
532
+ "pytest-rs-core",
533
+ "pytest-rs-cov",
534
+ "pytest-rs-mock",
535
+ "pytest-rs-split",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "pytest-rs-asyncio"
540
+ version = "0.0.1"
541
+ dependencies = [
542
+ "pytest-rs-core",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "pytest-rs-benchmark"
547
+ version = "0.0.1"
548
+ dependencies = [
549
+ "pyo3",
550
+ "pytest-rs-core",
551
+ "serde",
552
+ "serde_json",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "pytest-rs-core"
557
+ version = "0.0.1"
558
+ dependencies = [
559
+ "clap",
560
+ "glob",
561
+ "libc",
562
+ "pyo3",
563
+ "ruff_python_ast",
564
+ "ruff_python_parser",
565
+ "serde",
566
+ "serde_json",
567
+ "thiserror",
568
+ "toml",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "pytest-rs-cov"
573
+ version = "0.0.1"
574
+ dependencies = [
575
+ "pyo3",
576
+ "pytest-rs-core",
577
+ "regex",
578
+ "ruff_python_ast",
579
+ "ruff_python_parser",
580
+ "ruff_source_file",
581
+ "ruff_text_size",
582
+ "serde_json",
583
+ "toml",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "pytest-rs-mock"
588
+ version = "0.0.1"
589
+ dependencies = [
590
+ "pytest-rs-core",
591
+ ]
592
+
593
+ [[package]]
594
+ name = "pytest-rs-split"
595
+ version = "0.0.1"
596
+ dependencies = [
597
+ "pytest-rs-core",
598
+ "serde_json",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "quote"
603
+ version = "1.0.45"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
606
+ dependencies = [
607
+ "proc-macro2",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "quote-use"
612
+ version = "0.8.4"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
615
+ dependencies = [
616
+ "quote",
617
+ "quote-use-macros",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "quote-use-macros"
622
+ version = "0.8.4"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
625
+ dependencies = [
626
+ "proc-macro-utils",
627
+ "proc-macro2",
628
+ "quote",
629
+ "syn",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "rand"
634
+ version = "0.8.5"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
637
+ dependencies = [
638
+ "libc",
639
+ "rand_chacha",
640
+ "rand_core",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "rand_chacha"
645
+ version = "0.3.1"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
648
+ dependencies = [
649
+ "ppv-lite86",
650
+ "rand_core",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "rand_core"
655
+ version = "0.6.4"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
658
+ dependencies = [
659
+ "getrandom",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "regex"
664
+ version = "1.12.3"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
667
+ dependencies = [
668
+ "aho-corasick",
669
+ "memchr",
670
+ "regex-automata",
671
+ "regex-syntax",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "regex-automata"
676
+ version = "0.4.14"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
679
+ dependencies = [
680
+ "aho-corasick",
681
+ "memchr",
682
+ "regex-syntax",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "regex-syntax"
687
+ version = "0.8.10"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
690
+
691
+ [[package]]
692
+ name = "ruff_python_ast"
693
+ version = "0.0.0"
694
+ source = "git+https://github.com/astral-sh/ruff?tag=0.15.16#6c498ab5394edc5622d7f348e12956bf86203716"
695
+ dependencies = [
696
+ "aho-corasick",
697
+ "bitflags",
698
+ "compact_str",
699
+ "get-size2",
700
+ "is-macro",
701
+ "memchr",
702
+ "ruff_python_trivia",
703
+ "ruff_source_file",
704
+ "ruff_text_size",
705
+ "rustc-hash",
706
+ "thin-vec",
707
+ "thiserror",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "ruff_python_parser"
712
+ version = "0.0.0"
713
+ source = "git+https://github.com/astral-sh/ruff?tag=0.15.16#6c498ab5394edc5622d7f348e12956bf86203716"
714
+ dependencies = [
715
+ "bitflags",
716
+ "bstr",
717
+ "compact_str",
718
+ "get-size2",
719
+ "memchr",
720
+ "ruff_python_ast",
721
+ "ruff_python_trivia",
722
+ "ruff_text_size",
723
+ "rustc-hash",
724
+ "static_assertions",
725
+ "thin-vec",
726
+ "unicode-ident",
727
+ "unicode-normalization",
728
+ "unicode_names2",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "ruff_python_trivia"
733
+ version = "0.0.0"
734
+ source = "git+https://github.com/astral-sh/ruff?tag=0.15.16#6c498ab5394edc5622d7f348e12956bf86203716"
735
+ dependencies = [
736
+ "itertools",
737
+ "ruff_source_file",
738
+ "ruff_text_size",
739
+ "unicode-ident",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "ruff_source_file"
744
+ version = "0.0.0"
745
+ source = "git+https://github.com/astral-sh/ruff?tag=0.15.16#6c498ab5394edc5622d7f348e12956bf86203716"
746
+ dependencies = [
747
+ "memchr",
748
+ "ruff_text_size",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "ruff_text_size"
753
+ version = "0.0.0"
754
+ source = "git+https://github.com/astral-sh/ruff?tag=0.15.16#6c498ab5394edc5622d7f348e12956bf86203716"
755
+ dependencies = [
756
+ "get-size2",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "rustc-hash"
761
+ version = "2.1.2"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
764
+
765
+ [[package]]
766
+ name = "rustversion"
767
+ version = "1.0.19"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
770
+
771
+ [[package]]
772
+ name = "ryu"
773
+ version = "1.0.19"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
776
+
777
+ [[package]]
778
+ name = "serde"
779
+ version = "1.0.228"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
782
+ dependencies = [
783
+ "serde_core",
784
+ "serde_derive",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "serde_core"
789
+ version = "1.0.228"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
792
+ dependencies = [
793
+ "serde_derive",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "serde_derive"
798
+ version = "1.0.228"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
801
+ dependencies = [
802
+ "proc-macro2",
803
+ "quote",
804
+ "syn",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "serde_json"
809
+ version = "1.0.150"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
812
+ dependencies = [
813
+ "itoa",
814
+ "memchr",
815
+ "serde",
816
+ "serde_core",
817
+ "zmij",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "serde_spanned"
822
+ version = "1.1.1"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
825
+ dependencies = [
826
+ "serde_core",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "siphasher"
831
+ version = "1.0.1"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
834
+
835
+ [[package]]
836
+ name = "smallvec"
837
+ version = "1.15.1"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
840
+
841
+ [[package]]
842
+ name = "static_assertions"
843
+ version = "1.1.0"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
846
+
847
+ [[package]]
848
+ name = "strsim"
849
+ version = "0.11.1"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
852
+
853
+ [[package]]
854
+ name = "syn"
855
+ version = "2.0.117"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
858
+ dependencies = [
859
+ "proc-macro2",
860
+ "quote",
861
+ "unicode-ident",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "target-lexicon"
866
+ version = "0.13.5"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
869
+
870
+ [[package]]
871
+ name = "thin-vec"
872
+ version = "0.2.18"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
875
+
876
+ [[package]]
877
+ name = "thiserror"
878
+ version = "2.0.18"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
881
+ dependencies = [
882
+ "thiserror-impl",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "thiserror-impl"
887
+ version = "2.0.18"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
890
+ dependencies = [
891
+ "proc-macro2",
892
+ "quote",
893
+ "syn",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "tinyvec"
898
+ version = "1.11.0"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
901
+ dependencies = [
902
+ "tinyvec_macros",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "tinyvec_macros"
907
+ version = "0.1.1"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
910
+
911
+ [[package]]
912
+ name = "toml"
913
+ version = "0.9.12+spec-1.1.0"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
916
+ dependencies = [
917
+ "indexmap",
918
+ "serde_core",
919
+ "serde_spanned",
920
+ "toml_datetime",
921
+ "toml_parser",
922
+ "toml_writer",
923
+ "winnow 0.7.15",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "toml_datetime"
928
+ version = "0.7.5+spec-1.1.0"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
931
+ dependencies = [
932
+ "serde_core",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "toml_parser"
937
+ version = "1.1.2+spec-1.1.0"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
940
+ dependencies = [
941
+ "winnow 1.0.3",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "toml_writer"
946
+ version = "1.1.1+spec-1.1.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
949
+
950
+ [[package]]
951
+ name = "unicode-ident"
952
+ version = "1.0.16"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
955
+
956
+ [[package]]
957
+ name = "unicode-normalization"
958
+ version = "0.1.25"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
961
+ dependencies = [
962
+ "tinyvec",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "unicode-width"
967
+ version = "0.1.14"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
970
+
971
+ [[package]]
972
+ name = "unicode_names2"
973
+ version = "1.3.0"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
976
+ dependencies = [
977
+ "phf",
978
+ "unicode_names2_generator",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "unicode_names2_generator"
983
+ version = "1.3.0"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
986
+ dependencies = [
987
+ "getopts",
988
+ "log",
989
+ "phf_codegen",
990
+ "rand",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "utf8parse"
995
+ version = "0.2.2"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
998
+
999
+ [[package]]
1000
+ name = "wasi"
1001
+ version = "0.11.0+wasi-snapshot-preview1"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1004
+
1005
+ [[package]]
1006
+ name = "windows-link"
1007
+ version = "0.2.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1010
+
1011
+ [[package]]
1012
+ name = "windows-sys"
1013
+ version = "0.61.2"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1016
+ dependencies = [
1017
+ "windows-link",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "winnow"
1022
+ version = "0.7.15"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1025
+
1026
+ [[package]]
1027
+ name = "winnow"
1028
+ version = "1.0.3"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
1031
+
1032
+ [[package]]
1033
+ name = "zerocopy"
1034
+ version = "0.7.35"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
1037
+ dependencies = [
1038
+ "byteorder",
1039
+ "zerocopy-derive",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "zerocopy-derive"
1044
+ version = "0.7.35"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
1047
+ dependencies = [
1048
+ "proc-macro2",
1049
+ "quote",
1050
+ "syn",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "zmij"
1055
+ version = "1.0.21"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"