binoc-sqlite 0.1.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.
- binoc_sqlite-0.1.1/Cargo.lock +1561 -0
- binoc_sqlite-0.1.1/Cargo.toml +23 -0
- binoc_sqlite-0.1.1/PKG-INFO +97 -0
- binoc_sqlite-0.1.1/README.md +65 -0
- binoc_sqlite-0.1.1/binoc-core/Cargo.toml +23 -0
- binoc_sqlite-0.1.1/binoc-core/src/config.rs +437 -0
- binoc_sqlite-0.1.1/binoc-core/src/controller.rs +842 -0
- binoc_sqlite-0.1.1/binoc-core/src/data_access.rs +1 -0
- binoc_sqlite-0.1.1/binoc-core/src/lib.rs +6 -0
- binoc_sqlite-0.1.1/binoc-core/src/output.rs +27 -0
- binoc_sqlite-0.1.1/binoc-sdk/Cargo.toml +21 -0
- binoc_sqlite-0.1.1/binoc-sdk/README.md +14 -0
- binoc_sqlite-0.1.1/binoc-sdk/src/data_access.rs +413 -0
- binoc_sqlite-0.1.1/binoc-sdk/src/ir.rs +274 -0
- binoc_sqlite-0.1.1/binoc-sdk/src/lib.rs +19 -0
- binoc_sqlite-0.1.1/binoc-sdk/src/plugin_abi.rs +625 -0
- binoc_sqlite-0.1.1/binoc-sdk/src/test_support.rs +596 -0
- binoc_sqlite-0.1.1/binoc-sdk/src/traits.rs +419 -0
- binoc_sqlite-0.1.1/binoc-sdk/src/types.rs +547 -0
- binoc_sqlite-0.1.1/binoc-stdlib/Cargo.toml +35 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/comparators/binary.rs +100 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/comparators/csv_compare.rs +100 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/comparators/directory.rs +223 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/comparators/mod.rs +6 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/comparators/tar_compare.rs +100 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/comparators/text.rs +124 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/comparators/zip_compare.rs +106 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/lib.rs +38 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/renderers/markdown.rs +238 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/renderers/mod.rs +1 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/test_vectors.rs +604 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/transformers/column_reorder.rs +92 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/transformers/copy_detector.rs +92 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/transformers/mod.rs +4 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/transformers/move_detector.rs +91 -0
- binoc_sqlite-0.1.1/binoc-stdlib/src/transformers/tabular_analyzer.rs +258 -0
- binoc_sqlite-0.1.1/binoc-stdlib/tests/comparator_tests.rs +449 -0
- binoc_sqlite-0.1.1/binoc-stdlib/tests/test_vectors.rs +43 -0
- binoc_sqlite-0.1.1/binoc-stdlib/tests/transformer_tests.rs +387 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/Cargo.toml +33 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/README.md +65 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/justfile +14 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/src/lib.rs +8 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/src/sqlite.rs +626 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/manifest.toml +13 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/expected-output/abi-log.snap +84 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/expected-output/changelog.snap +9 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/expected-output/changeset.snap +57 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/manifest.toml +9 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/snapshot-a/data.sqlite.d/01_schema.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/snapshot-a/data.sqlite.d/02_data.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/snapshot-b/data.sqlite.d/01_schema.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-row-addition/snapshot-b/data.sqlite.d/02_data.sql +2 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/expected-output/abi-log.snap +84 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/expected-output/changelog.snap +9 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/expected-output/changeset.snap +53 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/manifest.toml +9 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/snapshot-a/data.sqlite.d/01_schema.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/snapshot-a/data.sqlite.d/02_data.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/snapshot-b/data.sqlite.d/01_schema.sql +2 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/sqlite-table-addition/snapshot-b/data.sqlite.d/02_data.sql +2 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/expected-output/abi-log.snap +53 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/expected-output/changelog.snap +9 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/expected-output/changeset.snap +32 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/manifest.toml +21 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/snapshot-a/data.sqlite.d/01_schema.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/snapshot-a/data.sqlite.d/02_data.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/snapshot-b/data.sqlite.d/01_schema.sql +1 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/test-vectors/without-plugin/snapshot-b/data.sqlite.d/02_data.sql +2 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/tests/test_python.py +14 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/tests/test_vectors.rs +129 -0
- binoc_sqlite-0.1.1/model-plugins/binoc-sqlite/uv.lock +203 -0
- binoc_sqlite-0.1.1/pyproject.toml +49 -0
|
@@ -0,0 +1,1561 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anyhow"
|
|
72
|
+
version = "1.0.102"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "arrayref"
|
|
78
|
+
version = "0.3.9"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "arrayvec"
|
|
84
|
+
version = "0.7.6"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "assert_cmd"
|
|
90
|
+
version = "2.2.0"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"anstyle",
|
|
95
|
+
"bstr",
|
|
96
|
+
"libc",
|
|
97
|
+
"predicates",
|
|
98
|
+
"predicates-core",
|
|
99
|
+
"predicates-tree",
|
|
100
|
+
"wait-timeout",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "autocfg"
|
|
105
|
+
version = "1.5.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "binoc-cli"
|
|
111
|
+
version = "0.1.1"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"assert_cmd",
|
|
114
|
+
"binoc-core",
|
|
115
|
+
"binoc-sdk",
|
|
116
|
+
"binoc-stdlib",
|
|
117
|
+
"clap",
|
|
118
|
+
"predicates",
|
|
119
|
+
"serde_json",
|
|
120
|
+
"tempfile",
|
|
121
|
+
"zip",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "binoc-core"
|
|
126
|
+
version = "0.1.1"
|
|
127
|
+
dependencies = [
|
|
128
|
+
"binoc-sdk",
|
|
129
|
+
"insta",
|
|
130
|
+
"rayon",
|
|
131
|
+
"serde",
|
|
132
|
+
"serde_json",
|
|
133
|
+
"serde_yaml",
|
|
134
|
+
"tempfile",
|
|
135
|
+
"toml",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "binoc-python"
|
|
140
|
+
version = "0.1.1"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"binoc-cli",
|
|
143
|
+
"binoc-core",
|
|
144
|
+
"binoc-sdk",
|
|
145
|
+
"binoc-stdlib",
|
|
146
|
+
"libloading",
|
|
147
|
+
"pyo3",
|
|
148
|
+
"serde_json",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "binoc-row-reorder"
|
|
153
|
+
version = "0.1.1"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"binoc-core",
|
|
156
|
+
"binoc-sdk",
|
|
157
|
+
"binoc-stdlib",
|
|
158
|
+
"pyo3",
|
|
159
|
+
"serde_json",
|
|
160
|
+
"tempfile",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "binoc-sdk"
|
|
165
|
+
version = "0.1.1"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"serde",
|
|
168
|
+
"serde_json",
|
|
169
|
+
"tempfile",
|
|
170
|
+
"thiserror",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "binoc-sqlite"
|
|
175
|
+
version = "0.1.1"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"binoc-core",
|
|
178
|
+
"binoc-sdk",
|
|
179
|
+
"binoc-stdlib",
|
|
180
|
+
"pyo3",
|
|
181
|
+
"rusqlite",
|
|
182
|
+
"serde",
|
|
183
|
+
"serde_json",
|
|
184
|
+
"tempfile",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "binoc-stdlib"
|
|
189
|
+
version = "0.1.1"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"binoc-core",
|
|
192
|
+
"binoc-sdk",
|
|
193
|
+
"blake3",
|
|
194
|
+
"csv",
|
|
195
|
+
"flate2",
|
|
196
|
+
"infer",
|
|
197
|
+
"insta",
|
|
198
|
+
"mime_guess",
|
|
199
|
+
"rayon",
|
|
200
|
+
"serde",
|
|
201
|
+
"serde_json",
|
|
202
|
+
"similar 3.0.0",
|
|
203
|
+
"tar",
|
|
204
|
+
"tempfile",
|
|
205
|
+
"toml",
|
|
206
|
+
"walkdir",
|
|
207
|
+
"zip",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "bitflags"
|
|
212
|
+
version = "2.11.0"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "blake3"
|
|
218
|
+
version = "1.8.4"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "4d2d5991425dfd0785aed03aedcf0b321d61975c9b5b3689c774a2610ae0b51e"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"arrayref",
|
|
223
|
+
"arrayvec",
|
|
224
|
+
"cc",
|
|
225
|
+
"cfg-if",
|
|
226
|
+
"constant_time_eq",
|
|
227
|
+
"cpufeatures",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "bstr"
|
|
232
|
+
version = "1.12.1"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"memchr",
|
|
237
|
+
"regex-automata",
|
|
238
|
+
"serde",
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "bumpalo"
|
|
243
|
+
version = "3.20.2"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "byteorder"
|
|
249
|
+
version = "1.5.0"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "cc"
|
|
255
|
+
version = "1.2.60"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"find-msvc-tools",
|
|
260
|
+
"shlex",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "cfb"
|
|
265
|
+
version = "0.7.3"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"byteorder",
|
|
270
|
+
"fnv",
|
|
271
|
+
"uuid",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "cfg-if"
|
|
276
|
+
version = "1.0.4"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "clap"
|
|
282
|
+
version = "4.6.0"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"clap_builder",
|
|
287
|
+
"clap_derive",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "clap_builder"
|
|
292
|
+
version = "4.6.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"anstream",
|
|
297
|
+
"anstyle",
|
|
298
|
+
"clap_lex",
|
|
299
|
+
"strsim",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "clap_derive"
|
|
304
|
+
version = "4.6.0"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"heck",
|
|
309
|
+
"proc-macro2",
|
|
310
|
+
"quote",
|
|
311
|
+
"syn",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "clap_lex"
|
|
316
|
+
version = "1.1.0"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "colorchoice"
|
|
322
|
+
version = "1.0.5"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "console"
|
|
328
|
+
version = "0.16.3"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"encode_unicode",
|
|
333
|
+
"libc",
|
|
334
|
+
"windows-sys",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "constant_time_eq"
|
|
339
|
+
version = "0.4.2"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "cpufeatures"
|
|
345
|
+
version = "0.3.0"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"libc",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "crc32fast"
|
|
354
|
+
version = "1.5.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"cfg-if",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "crossbeam-deque"
|
|
363
|
+
version = "0.8.6"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"crossbeam-epoch",
|
|
368
|
+
"crossbeam-utils",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "crossbeam-epoch"
|
|
373
|
+
version = "0.9.18"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"crossbeam-utils",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "crossbeam-utils"
|
|
382
|
+
version = "0.8.21"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "csv"
|
|
388
|
+
version = "1.4.0"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"csv-core",
|
|
393
|
+
"itoa",
|
|
394
|
+
"ryu",
|
|
395
|
+
"serde_core",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "csv-core"
|
|
400
|
+
version = "0.1.13"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"memchr",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "difflib"
|
|
409
|
+
version = "0.4.0"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "either"
|
|
415
|
+
version = "1.15.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "encode_unicode"
|
|
421
|
+
version = "1.0.0"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "equivalent"
|
|
427
|
+
version = "1.0.2"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "errno"
|
|
433
|
+
version = "0.3.14"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"libc",
|
|
438
|
+
"windows-sys",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "fallible-iterator"
|
|
443
|
+
version = "0.3.0"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "fallible-streaming-iterator"
|
|
449
|
+
version = "0.1.9"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "fastrand"
|
|
455
|
+
version = "2.4.1"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "filetime"
|
|
461
|
+
version = "0.2.27"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"cfg-if",
|
|
466
|
+
"libc",
|
|
467
|
+
"libredox",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "find-msvc-tools"
|
|
472
|
+
version = "0.1.9"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "flate2"
|
|
478
|
+
version = "1.1.9"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"crc32fast",
|
|
483
|
+
"miniz_oxide",
|
|
484
|
+
"zlib-rs",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "float-cmp"
|
|
489
|
+
version = "0.10.0"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"num-traits",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "fnv"
|
|
498
|
+
version = "1.0.7"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "foldhash"
|
|
504
|
+
version = "0.1.5"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "foldhash"
|
|
510
|
+
version = "0.2.0"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "getrandom"
|
|
516
|
+
version = "0.4.2"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"cfg-if",
|
|
521
|
+
"libc",
|
|
522
|
+
"r-efi",
|
|
523
|
+
"wasip2",
|
|
524
|
+
"wasip3",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "hashbrown"
|
|
529
|
+
version = "0.15.5"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"foldhash 0.1.5",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "hashbrown"
|
|
538
|
+
version = "0.16.1"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"foldhash 0.2.0",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "hashbrown"
|
|
547
|
+
version = "0.17.0"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "hashlink"
|
|
553
|
+
version = "0.11.0"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "ea0b22561a9c04a7cb1a302c013e0259cd3b4bb619f145b32f72b8b4bcbed230"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"hashbrown 0.16.1",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "heck"
|
|
562
|
+
version = "0.5.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "id-arena"
|
|
568
|
+
version = "2.3.0"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "indexmap"
|
|
574
|
+
version = "2.14.0"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"equivalent",
|
|
579
|
+
"hashbrown 0.17.0",
|
|
580
|
+
"serde",
|
|
581
|
+
"serde_core",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "infer"
|
|
586
|
+
version = "0.19.0"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"cfb",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "insta"
|
|
595
|
+
version = "1.47.2"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"console",
|
|
600
|
+
"once_cell",
|
|
601
|
+
"serde",
|
|
602
|
+
"similar 2.7.0",
|
|
603
|
+
"tempfile",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "is_terminal_polyfill"
|
|
608
|
+
version = "1.70.2"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "itoa"
|
|
614
|
+
version = "1.0.18"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "js-sys"
|
|
620
|
+
version = "0.3.94"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"once_cell",
|
|
625
|
+
"wasm-bindgen",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "leb128fmt"
|
|
630
|
+
version = "0.1.0"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "libc"
|
|
636
|
+
version = "0.2.184"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "libloading"
|
|
642
|
+
version = "0.9.0"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"cfg-if",
|
|
647
|
+
"windows-link",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "libredox"
|
|
652
|
+
version = "0.1.16"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"bitflags",
|
|
657
|
+
"libc",
|
|
658
|
+
"plain",
|
|
659
|
+
"redox_syscall",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "libsqlite3-sys"
|
|
664
|
+
version = "0.37.0"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"cc",
|
|
669
|
+
"pkg-config",
|
|
670
|
+
"vcpkg",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "linux-raw-sys"
|
|
675
|
+
version = "0.12.1"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "log"
|
|
681
|
+
version = "0.4.29"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "memchr"
|
|
687
|
+
version = "2.8.0"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "mime"
|
|
693
|
+
version = "0.3.17"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "mime_guess"
|
|
699
|
+
version = "2.0.5"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
702
|
+
dependencies = [
|
|
703
|
+
"mime",
|
|
704
|
+
"unicase",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "miniz_oxide"
|
|
709
|
+
version = "0.8.9"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"adler2",
|
|
714
|
+
"simd-adler32",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "normalize-line-endings"
|
|
719
|
+
version = "0.3.0"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "num-traits"
|
|
725
|
+
version = "0.2.19"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"autocfg",
|
|
730
|
+
]
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "once_cell"
|
|
734
|
+
version = "1.21.4"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "once_cell_polyfill"
|
|
740
|
+
version = "1.70.2"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "pkg-config"
|
|
746
|
+
version = "0.3.32"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "plain"
|
|
752
|
+
version = "0.2.3"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "portable-atomic"
|
|
758
|
+
version = "1.13.1"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "predicates"
|
|
764
|
+
version = "3.1.4"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"anstyle",
|
|
769
|
+
"difflib",
|
|
770
|
+
"float-cmp",
|
|
771
|
+
"normalize-line-endings",
|
|
772
|
+
"predicates-core",
|
|
773
|
+
"regex",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "predicates-core"
|
|
778
|
+
version = "1.0.10"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "predicates-tree"
|
|
784
|
+
version = "1.0.13"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"predicates-core",
|
|
789
|
+
"termtree",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "prettyplease"
|
|
794
|
+
version = "0.2.37"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"proc-macro2",
|
|
799
|
+
"syn",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "proc-macro2"
|
|
804
|
+
version = "1.0.106"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"unicode-ident",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "pyo3"
|
|
813
|
+
version = "0.28.3"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"libc",
|
|
818
|
+
"once_cell",
|
|
819
|
+
"portable-atomic",
|
|
820
|
+
"pyo3-build-config",
|
|
821
|
+
"pyo3-ffi",
|
|
822
|
+
"pyo3-macros",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "pyo3-build-config"
|
|
827
|
+
version = "0.28.3"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"target-lexicon",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "pyo3-ffi"
|
|
836
|
+
version = "0.28.3"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"libc",
|
|
841
|
+
"pyo3-build-config",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "pyo3-macros"
|
|
846
|
+
version = "0.28.3"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"proc-macro2",
|
|
851
|
+
"pyo3-macros-backend",
|
|
852
|
+
"quote",
|
|
853
|
+
"syn",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "pyo3-macros-backend"
|
|
858
|
+
version = "0.28.3"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"heck",
|
|
863
|
+
"proc-macro2",
|
|
864
|
+
"pyo3-build-config",
|
|
865
|
+
"quote",
|
|
866
|
+
"syn",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "quote"
|
|
871
|
+
version = "1.0.45"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"proc-macro2",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "r-efi"
|
|
880
|
+
version = "6.0.0"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "rayon"
|
|
886
|
+
version = "1.11.0"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"either",
|
|
891
|
+
"rayon-core",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "rayon-core"
|
|
896
|
+
version = "1.13.0"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"crossbeam-deque",
|
|
901
|
+
"crossbeam-utils",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "redox_syscall"
|
|
906
|
+
version = "0.7.4"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"bitflags",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "regex"
|
|
915
|
+
version = "1.12.3"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"aho-corasick",
|
|
920
|
+
"memchr",
|
|
921
|
+
"regex-automata",
|
|
922
|
+
"regex-syntax",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "regex-automata"
|
|
927
|
+
version = "0.4.14"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
930
|
+
dependencies = [
|
|
931
|
+
"aho-corasick",
|
|
932
|
+
"memchr",
|
|
933
|
+
"regex-syntax",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "regex-syntax"
|
|
938
|
+
version = "0.8.10"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "rsqlite-vfs"
|
|
944
|
+
version = "0.1.0"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"hashbrown 0.16.1",
|
|
949
|
+
"thiserror",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "rusqlite"
|
|
954
|
+
version = "0.39.0"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "a0d2b0146dd9661bf67bb107c0bb2a55064d556eeb3fc314151b957f313bcd4e"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"bitflags",
|
|
959
|
+
"fallible-iterator",
|
|
960
|
+
"fallible-streaming-iterator",
|
|
961
|
+
"hashlink",
|
|
962
|
+
"libsqlite3-sys",
|
|
963
|
+
"smallvec",
|
|
964
|
+
"sqlite-wasm-rs",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "rustix"
|
|
969
|
+
version = "1.1.4"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
972
|
+
dependencies = [
|
|
973
|
+
"bitflags",
|
|
974
|
+
"errno",
|
|
975
|
+
"libc",
|
|
976
|
+
"linux-raw-sys",
|
|
977
|
+
"windows-sys",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "rustversion"
|
|
982
|
+
version = "1.0.22"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "ryu"
|
|
988
|
+
version = "1.0.23"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "same-file"
|
|
994
|
+
version = "1.0.6"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"winapi-util",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "semver"
|
|
1003
|
+
version = "1.0.28"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "serde"
|
|
1009
|
+
version = "1.0.228"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"serde_core",
|
|
1014
|
+
"serde_derive",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "serde_core"
|
|
1019
|
+
version = "1.0.228"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"serde_derive",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "serde_derive"
|
|
1028
|
+
version = "1.0.228"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"proc-macro2",
|
|
1033
|
+
"quote",
|
|
1034
|
+
"syn",
|
|
1035
|
+
]
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "serde_json"
|
|
1039
|
+
version = "1.0.149"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"itoa",
|
|
1044
|
+
"memchr",
|
|
1045
|
+
"serde",
|
|
1046
|
+
"serde_core",
|
|
1047
|
+
"zmij",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "serde_spanned"
|
|
1052
|
+
version = "1.1.1"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1055
|
+
dependencies = [
|
|
1056
|
+
"serde_core",
|
|
1057
|
+
]
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "serde_yaml"
|
|
1061
|
+
version = "0.9.34+deprecated"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"indexmap",
|
|
1066
|
+
"itoa",
|
|
1067
|
+
"ryu",
|
|
1068
|
+
"serde",
|
|
1069
|
+
"unsafe-libyaml",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "shlex"
|
|
1074
|
+
version = "1.3.0"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "simd-adler32"
|
|
1080
|
+
version = "0.3.9"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "similar"
|
|
1086
|
+
version = "2.7.0"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "similar"
|
|
1092
|
+
version = "3.0.0"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "26d0b06eba54f0ca0770f970a3e89823e766ca638dd940f8469fa0fa50c75396"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"bstr",
|
|
1097
|
+
]
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "smallvec"
|
|
1101
|
+
version = "1.15.1"
|
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "sqlite-wasm-rs"
|
|
1107
|
+
version = "0.5.2"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"cc",
|
|
1112
|
+
"js-sys",
|
|
1113
|
+
"rsqlite-vfs",
|
|
1114
|
+
"wasm-bindgen",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
1117
|
+
[[package]]
|
|
1118
|
+
name = "strsim"
|
|
1119
|
+
version = "0.11.1"
|
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "syn"
|
|
1125
|
+
version = "2.0.117"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"proc-macro2",
|
|
1130
|
+
"quote",
|
|
1131
|
+
"unicode-ident",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "tar"
|
|
1136
|
+
version = "0.4.45"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"filetime",
|
|
1141
|
+
"libc",
|
|
1142
|
+
"xattr",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "target-lexicon"
|
|
1147
|
+
version = "0.13.5"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "tempfile"
|
|
1153
|
+
version = "3.27.0"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"fastrand",
|
|
1158
|
+
"getrandom",
|
|
1159
|
+
"once_cell",
|
|
1160
|
+
"rustix",
|
|
1161
|
+
"windows-sys",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "termtree"
|
|
1166
|
+
version = "0.5.1"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "thiserror"
|
|
1172
|
+
version = "2.0.18"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"thiserror-impl",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "thiserror-impl"
|
|
1181
|
+
version = "2.0.18"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"proc-macro2",
|
|
1186
|
+
"quote",
|
|
1187
|
+
"syn",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "toml"
|
|
1192
|
+
version = "1.1.2+spec-1.1.0"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"indexmap",
|
|
1197
|
+
"serde_core",
|
|
1198
|
+
"serde_spanned",
|
|
1199
|
+
"toml_datetime",
|
|
1200
|
+
"toml_parser",
|
|
1201
|
+
"toml_writer",
|
|
1202
|
+
"winnow",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "toml_datetime"
|
|
1207
|
+
version = "1.1.1+spec-1.1.0"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"serde_core",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "toml_parser"
|
|
1216
|
+
version = "1.1.2+spec-1.1.0"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"winnow",
|
|
1221
|
+
]
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "toml_writer"
|
|
1225
|
+
version = "1.1.1+spec-1.1.0"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "typed-path"
|
|
1231
|
+
version = "0.12.3"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "unicase"
|
|
1237
|
+
version = "2.9.0"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "unicode-ident"
|
|
1243
|
+
version = "1.0.24"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "unicode-xid"
|
|
1249
|
+
version = "0.2.6"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "unsafe-libyaml"
|
|
1255
|
+
version = "0.2.11"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "utf8parse"
|
|
1261
|
+
version = "0.2.2"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "uuid"
|
|
1267
|
+
version = "1.23.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"js-sys",
|
|
1272
|
+
"wasm-bindgen",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "vcpkg"
|
|
1277
|
+
version = "0.2.15"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "wait-timeout"
|
|
1283
|
+
version = "0.2.1"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"libc",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "walkdir"
|
|
1292
|
+
version = "2.5.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"same-file",
|
|
1297
|
+
"winapi-util",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "wasip2"
|
|
1302
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"wit-bindgen",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "wasip3"
|
|
1311
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1314
|
+
dependencies = [
|
|
1315
|
+
"wit-bindgen",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "wasm-bindgen"
|
|
1320
|
+
version = "0.2.117"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"cfg-if",
|
|
1325
|
+
"once_cell",
|
|
1326
|
+
"rustversion",
|
|
1327
|
+
"wasm-bindgen-macro",
|
|
1328
|
+
"wasm-bindgen-shared",
|
|
1329
|
+
]
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "wasm-bindgen-macro"
|
|
1333
|
+
version = "0.2.117"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"quote",
|
|
1338
|
+
"wasm-bindgen-macro-support",
|
|
1339
|
+
]
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "wasm-bindgen-macro-support"
|
|
1343
|
+
version = "0.2.117"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"bumpalo",
|
|
1348
|
+
"proc-macro2",
|
|
1349
|
+
"quote",
|
|
1350
|
+
"syn",
|
|
1351
|
+
"wasm-bindgen-shared",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "wasm-bindgen-shared"
|
|
1356
|
+
version = "0.2.117"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"unicode-ident",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "wasm-encoder"
|
|
1365
|
+
version = "0.244.0"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"leb128fmt",
|
|
1370
|
+
"wasmparser",
|
|
1371
|
+
]
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "wasm-metadata"
|
|
1375
|
+
version = "0.244.0"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1378
|
+
dependencies = [
|
|
1379
|
+
"anyhow",
|
|
1380
|
+
"indexmap",
|
|
1381
|
+
"wasm-encoder",
|
|
1382
|
+
"wasmparser",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "wasmparser"
|
|
1387
|
+
version = "0.244.0"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1390
|
+
dependencies = [
|
|
1391
|
+
"bitflags",
|
|
1392
|
+
"hashbrown 0.15.5",
|
|
1393
|
+
"indexmap",
|
|
1394
|
+
"semver",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "winapi-util"
|
|
1399
|
+
version = "0.1.11"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"windows-sys",
|
|
1404
|
+
]
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "windows-link"
|
|
1408
|
+
version = "0.2.1"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "windows-sys"
|
|
1414
|
+
version = "0.61.2"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1417
|
+
dependencies = [
|
|
1418
|
+
"windows-link",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "winnow"
|
|
1423
|
+
version = "1.0.1"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "wit-bindgen"
|
|
1429
|
+
version = "0.51.0"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1432
|
+
dependencies = [
|
|
1433
|
+
"wit-bindgen-rust-macro",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "wit-bindgen-core"
|
|
1438
|
+
version = "0.51.0"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"anyhow",
|
|
1443
|
+
"heck",
|
|
1444
|
+
"wit-parser",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "wit-bindgen-rust"
|
|
1449
|
+
version = "0.51.0"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"anyhow",
|
|
1454
|
+
"heck",
|
|
1455
|
+
"indexmap",
|
|
1456
|
+
"prettyplease",
|
|
1457
|
+
"syn",
|
|
1458
|
+
"wasm-metadata",
|
|
1459
|
+
"wit-bindgen-core",
|
|
1460
|
+
"wit-component",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "wit-bindgen-rust-macro"
|
|
1465
|
+
version = "0.51.0"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"anyhow",
|
|
1470
|
+
"prettyplease",
|
|
1471
|
+
"proc-macro2",
|
|
1472
|
+
"quote",
|
|
1473
|
+
"syn",
|
|
1474
|
+
"wit-bindgen-core",
|
|
1475
|
+
"wit-bindgen-rust",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "wit-component"
|
|
1480
|
+
version = "0.244.0"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"anyhow",
|
|
1485
|
+
"bitflags",
|
|
1486
|
+
"indexmap",
|
|
1487
|
+
"log",
|
|
1488
|
+
"serde",
|
|
1489
|
+
"serde_derive",
|
|
1490
|
+
"serde_json",
|
|
1491
|
+
"wasm-encoder",
|
|
1492
|
+
"wasm-metadata",
|
|
1493
|
+
"wasmparser",
|
|
1494
|
+
"wit-parser",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "wit-parser"
|
|
1499
|
+
version = "0.244.0"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1502
|
+
dependencies = [
|
|
1503
|
+
"anyhow",
|
|
1504
|
+
"id-arena",
|
|
1505
|
+
"indexmap",
|
|
1506
|
+
"log",
|
|
1507
|
+
"semver",
|
|
1508
|
+
"serde",
|
|
1509
|
+
"serde_derive",
|
|
1510
|
+
"serde_json",
|
|
1511
|
+
"unicode-xid",
|
|
1512
|
+
"wasmparser",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "xattr"
|
|
1517
|
+
version = "1.6.1"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"libc",
|
|
1522
|
+
"rustix",
|
|
1523
|
+
]
|
|
1524
|
+
|
|
1525
|
+
[[package]]
|
|
1526
|
+
name = "zip"
|
|
1527
|
+
version = "8.5.1"
|
|
1528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
+
checksum = "dcab981e19633ebcf0b001ddd37dd802996098bc1864f90b7c5d970ce76c1d59"
|
|
1530
|
+
dependencies = [
|
|
1531
|
+
"crc32fast",
|
|
1532
|
+
"flate2",
|
|
1533
|
+
"indexmap",
|
|
1534
|
+
"memchr",
|
|
1535
|
+
"typed-path",
|
|
1536
|
+
"zopfli",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "zlib-rs"
|
|
1541
|
+
version = "0.6.3"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "zmij"
|
|
1547
|
+
version = "1.0.21"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "zopfli"
|
|
1553
|
+
version = "0.8.3"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
1556
|
+
dependencies = [
|
|
1557
|
+
"bumpalo",
|
|
1558
|
+
"crc32fast",
|
|
1559
|
+
"log",
|
|
1560
|
+
"simd-adler32",
|
|
1561
|
+
]
|