karva 0.0.1a1__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.
- karva-0.0.1a1/Cargo.lock +2996 -0
- karva-0.0.1a1/Cargo.toml +89 -0
- karva-0.0.1a1/LICENSE +21 -0
- karva-0.0.1a1/PKG-INFO +165 -0
- karva-0.0.1a1/README.md +141 -0
- karva-0.0.1a1/crates/karva/Cargo.toml +24 -0
- karva-0.0.1a1/crates/karva/src/lib.rs +26 -0
- karva-0.0.1a1/crates/karva_cli/Cargo.toml +47 -0
- karva-0.0.1a1/crates/karva_cli/src/args.rs +148 -0
- karva-0.0.1a1/crates/karva_cli/src/lib.rs +254 -0
- karva-0.0.1a1/crates/karva_cli/src/logging.rs +224 -0
- karva-0.0.1a1/crates/karva_cli/src/main.rs +5 -0
- karva-0.0.1a1/crates/karva_cli/src/version.rs +19 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/basic.rs +1571 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/common/mod.rs +196 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/configuration/mod.rs +1243 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/discovery/mod.rs +1 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/discovery/nested_layouts.rs +132 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/autouse.rs +192 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/basic.rs +637 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/builtins.rs +563 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/decorators.rs +206 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/generators.rs +71 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/invalid.rs +405 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/mod.rs +8 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/parametrized.rs +655 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/fixtures/request.rs +42 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/functions.rs +296 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/mod.rs +3 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/tags/expect_fail.rs +608 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/tags/mod.rs +4 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/tags/parametrize.rs +575 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/tags/skip.rs +515 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/extensions/tags/use_fixtures.rs +459 -0
- karva-0.0.1a1/crates/karva_cli/tests/it/main.rs +6 -0
- karva-0.0.1a1/crates/karva_combine/Cargo.toml +16 -0
- karva-0.0.1a1/crates/karva_combine/src/lib.rs +149 -0
- karva-0.0.1a1/crates/karva_core/Cargo.toml +36 -0
- karva-0.0.1a1/crates/karva_core/src/collection/collector.rs +229 -0
- karva-0.0.1a1/crates/karva_core/src/collection/mod.rs +5 -0
- karva-0.0.1a1/crates/karva_core/src/collection/models.rs +264 -0
- karva-0.0.1a1/crates/karva_core/src/context.rs +70 -0
- karva-0.0.1a1/crates/karva_core/src/diagnostic/metadata.rs +105 -0
- karva-0.0.1a1/crates/karva_core/src/diagnostic/mod.rs +325 -0
- karva-0.0.1a1/crates/karva_core/src/diagnostic/reporter.rs +61 -0
- karva-0.0.1a1/crates/karva_core/src/diagnostic/result.rs +173 -0
- karva-0.0.1a1/crates/karva_core/src/diagnostic/traceback.rs +336 -0
- karva-0.0.1a1/crates/karva_core/src/discovery/discoverer.rs +92 -0
- karva-0.0.1a1/crates/karva_core/src/discovery/mod.rs +6 -0
- karva-0.0.1a1/crates/karva_core/src/discovery/models/function.rs +59 -0
- karva-0.0.1a1/crates/karva_core/src/discovery/models/mod.rs +3 -0
- karva-0.0.1a1/crates/karva_core/src/discovery/models/module.rs +64 -0
- karva-0.0.1a1/crates/karva_core/src/discovery/models/package.rs +81 -0
- karva-0.0.1a1/crates/karva_core/src/discovery/visitor.rs +161 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/builtins/mock_env.rs +585 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/builtins/mod.rs +62 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/builtins/temp_path.rs +26 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/finalizer.rs +49 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/mod.rs +400 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/normalized_fixture.rs +194 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/python.rs +135 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/scope.rs +91 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/traits.rs +135 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/fixtures/utils.rs +146 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/functions/mod.rs +41 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/functions/python.rs +46 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/mod.rs +3 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/tags/expect_fail.rs +74 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/tags/mod.rs +692 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/tags/parametrize.rs +236 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/tags/python.rs +482 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/tags/skip.rs +112 -0
- karva-0.0.1a1/crates/karva_core/src/extensions/tags/use_fixtures.rs +27 -0
- karva-0.0.1a1/crates/karva_core/src/function_kind.rs +23 -0
- karva-0.0.1a1/crates/karva_core/src/lib.rs +24 -0
- karva-0.0.1a1/crates/karva_core/src/name.rs +59 -0
- karva-0.0.1a1/crates/karva_core/src/normalize/mod.rs +375 -0
- karva-0.0.1a1/crates/karva_core/src/normalize/models/function.rs +71 -0
- karva-0.0.1a1/crates/karva_core/src/normalize/models/mod.rs +7 -0
- karva-0.0.1a1/crates/karva_core/src/normalize/models/module.rs +10 -0
- karva-0.0.1a1/crates/karva_core/src/normalize/models/package.rs +22 -0
- karva-0.0.1a1/crates/karva_core/src/normalize/utils.rs +50 -0
- karva-0.0.1a1/crates/karva_core/src/printer.rs +137 -0
- karva-0.0.1a1/crates/karva_core/src/python.rs +34 -0
- karva-0.0.1a1/crates/karva_core/src/runner/finalizer_cache.rs +58 -0
- karva-0.0.1a1/crates/karva_core/src/runner/fixture_cache.rs +56 -0
- karva-0.0.1a1/crates/karva_core/src/runner/mod.rs +58 -0
- karva-0.0.1a1/crates/karva_core/src/runner/package_runner.rs +435 -0
- karva-0.0.1a1/crates/karva_core/src/testing.rs +18 -0
- karva-0.0.1a1/crates/karva_core/src/utils.rs +202 -0
- karva-0.0.1a1/crates/karva_macros/Cargo.toml +24 -0
- karva-0.0.1a1/crates/karva_macros/src/combine.rs +36 -0
- karva-0.0.1a1/crates/karva_macros/src/combine_options.rs +62 -0
- karva-0.0.1a1/crates/karva_macros/src/config.rs +360 -0
- karva-0.0.1a1/crates/karva_macros/src/lib.rs +35 -0
- karva-0.0.1a1/crates/karva_project/Cargo.toml +34 -0
- karva-0.0.1a1/crates/karva_project/src/envs.rs +22 -0
- karva-0.0.1a1/crates/karva_project/src/lib.rs +114 -0
- karva-0.0.1a1/crates/karva_project/src/metadata/options.rs +269 -0
- karva-0.0.1a1/crates/karva_project/src/metadata/pyproject.rs +202 -0
- karva-0.0.1a1/crates/karva_project/src/metadata/settings.rs +44 -0
- karva-0.0.1a1/crates/karva_project/src/metadata.rs +245 -0
- karva-0.0.1a1/crates/karva_project/src/path/mod.rs +5 -0
- karva-0.0.1a1/crates/karva_project/src/path/test_path.rs +385 -0
- karva-0.0.1a1/crates/karva_project/src/path/utils.rs +34 -0
- karva-0.0.1a1/crates/karva_project/src/project.rs +70 -0
- karva-0.0.1a1/crates/karva_project/src/system.rs +108 -0
- karva-0.0.1a1/crates/karva_project/src/utils.rs +91 -0
- karva-0.0.1a1/crates/karva_project/src/verbosity.rs +80 -0
- karva-0.0.1a1/pyproject.toml +137 -0
- karva-0.0.1a1/python/karva/__init__.py +29 -0
- karva-0.0.1a1/python/karva/__main__.py +84 -0
- karva-0.0.1a1/python/karva/_karva/__init__.pyi +242 -0
- karva-0.0.1a1/python/karva/_karva/tags.pyi +32 -0
- karva-0.0.1a1/python/karva/py.typed +0 -0
karva-0.0.1a1/Cargo.lock
ADDED
|
@@ -0,0 +1,2996 @@
|
|
|
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 = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "android_system_properties"
|
|
22
|
+
version = "0.1.5"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"libc",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anes"
|
|
31
|
+
version = "0.1.6"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstream"
|
|
37
|
+
version = "0.6.21"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"anstyle",
|
|
42
|
+
"anstyle-parse",
|
|
43
|
+
"anstyle-query",
|
|
44
|
+
"anstyle-wincon",
|
|
45
|
+
"colorchoice",
|
|
46
|
+
"is_terminal_polyfill",
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle"
|
|
52
|
+
version = "1.0.13"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle-parse"
|
|
58
|
+
version = "0.2.7"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"utf8parse",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-query"
|
|
67
|
+
version = "1.1.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"windows-sys 0.61.2",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-wincon"
|
|
76
|
+
version = "3.0.11"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"anstyle",
|
|
81
|
+
"once_cell_polyfill",
|
|
82
|
+
"windows-sys 0.61.2",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anyhow"
|
|
87
|
+
version = "1.0.100"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "approx"
|
|
93
|
+
version = "0.5.1"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"num-traits",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "arc-swap"
|
|
102
|
+
version = "1.7.1"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "argfile"
|
|
108
|
+
version = "0.2.1"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "0a1cc0ba69de57db40674c66f7cf2caee3981ddef084388482c95c0e2133e5e8"
|
|
111
|
+
dependencies = [
|
|
112
|
+
"fs-err",
|
|
113
|
+
"os_str_bytes",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "attribute-derive"
|
|
118
|
+
version = "0.10.5"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"attribute-derive-macro",
|
|
123
|
+
"derive-where",
|
|
124
|
+
"manyhow",
|
|
125
|
+
"proc-macro2",
|
|
126
|
+
"quote",
|
|
127
|
+
"syn",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "attribute-derive-macro"
|
|
132
|
+
version = "0.10.5"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"collection_literals",
|
|
137
|
+
"interpolator",
|
|
138
|
+
"manyhow",
|
|
139
|
+
"proc-macro-utils",
|
|
140
|
+
"proc-macro2",
|
|
141
|
+
"quote",
|
|
142
|
+
"quote-use",
|
|
143
|
+
"syn",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "autocfg"
|
|
148
|
+
version = "1.5.0"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "bitflags"
|
|
154
|
+
version = "2.10.0"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "block2"
|
|
160
|
+
version = "0.6.2"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"objc2",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "boxcar"
|
|
169
|
+
version = "0.2.14"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "bstr"
|
|
175
|
+
version = "1.12.1"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"memchr",
|
|
180
|
+
"regex-automata",
|
|
181
|
+
"serde",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "bumpalo"
|
|
186
|
+
version = "3.19.0"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "byteorder"
|
|
192
|
+
version = "1.5.0"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "camino"
|
|
198
|
+
version = "1.2.1"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"serde_core",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "cast"
|
|
207
|
+
version = "0.3.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "castaway"
|
|
213
|
+
version = "0.2.4"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"rustversion",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "cc"
|
|
222
|
+
version = "1.2.48"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"find-msvc-tools",
|
|
227
|
+
"shlex",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "cfg-if"
|
|
232
|
+
version = "1.0.4"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "cfg_aliases"
|
|
238
|
+
version = "0.2.1"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "chrono"
|
|
244
|
+
version = "0.4.42"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"iana-time-zone",
|
|
249
|
+
"num-traits",
|
|
250
|
+
"windows-link",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "ciborium"
|
|
255
|
+
version = "0.2.2"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"ciborium-io",
|
|
260
|
+
"ciborium-ll",
|
|
261
|
+
"serde",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "ciborium-io"
|
|
266
|
+
version = "0.2.2"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "ciborium-ll"
|
|
272
|
+
version = "0.2.2"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"ciborium-io",
|
|
277
|
+
"half",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "clap"
|
|
282
|
+
version = "4.5.53"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"clap_builder",
|
|
287
|
+
"clap_derive",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "clap_builder"
|
|
292
|
+
version = "4.5.53"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"anstream",
|
|
297
|
+
"anstyle",
|
|
298
|
+
"clap_lex",
|
|
299
|
+
"strsim",
|
|
300
|
+
"terminal_size",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "clap_derive"
|
|
305
|
+
version = "4.5.49"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"heck",
|
|
310
|
+
"proc-macro2",
|
|
311
|
+
"quote",
|
|
312
|
+
"syn",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "clap_lex"
|
|
317
|
+
version = "0.7.6"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "codspeed"
|
|
323
|
+
version = "4.1.0"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "c3b847e05a34be5c38f3f2a5052178a3bd32e6b5702f3ea775efde95c483a539"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"anyhow",
|
|
328
|
+
"cc",
|
|
329
|
+
"colored 2.2.0",
|
|
330
|
+
"getrandom 0.2.16",
|
|
331
|
+
"glob",
|
|
332
|
+
"libc",
|
|
333
|
+
"nix",
|
|
334
|
+
"serde",
|
|
335
|
+
"serde_json",
|
|
336
|
+
"statrs",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "codspeed-criterion-compat"
|
|
341
|
+
version = "4.1.0"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "30a0e2a53beb18dec493ec133f226e0d35e8bb2fdc638ccf7351696eabee416c"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"clap",
|
|
346
|
+
"codspeed",
|
|
347
|
+
"codspeed-criterion-compat-walltime",
|
|
348
|
+
"colored 2.2.0",
|
|
349
|
+
"regex",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "codspeed-criterion-compat-walltime"
|
|
354
|
+
version = "4.1.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "1f652d6e6d40bba0f5c244744db94d92a26b7f083df18692df88fb0772f1c793"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"anes",
|
|
359
|
+
"cast",
|
|
360
|
+
"ciborium",
|
|
361
|
+
"clap",
|
|
362
|
+
"codspeed",
|
|
363
|
+
"criterion-plot",
|
|
364
|
+
"is-terminal",
|
|
365
|
+
"itertools 0.10.5",
|
|
366
|
+
"num-traits",
|
|
367
|
+
"once_cell",
|
|
368
|
+
"oorandom",
|
|
369
|
+
"regex",
|
|
370
|
+
"serde",
|
|
371
|
+
"serde_derive",
|
|
372
|
+
"serde_json",
|
|
373
|
+
"tinytemplate",
|
|
374
|
+
"walkdir",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "codspeed-divan-compat"
|
|
379
|
+
version = "4.1.0"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "f0f0e9fe5eaa39995ec35e46407f7154346cc25bd1300c64c21636f3d00cb2cc"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"clap",
|
|
384
|
+
"codspeed",
|
|
385
|
+
"codspeed-divan-compat-macros",
|
|
386
|
+
"codspeed-divan-compat-walltime",
|
|
387
|
+
"regex",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "codspeed-divan-compat-macros"
|
|
392
|
+
version = "4.1.0"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "88c8babf2a40fd2206a2e030cf020d0d58144cd56e1dc408bfba02cdefb08b4f"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"divan-macros",
|
|
397
|
+
"itertools 0.14.0",
|
|
398
|
+
"proc-macro-crate",
|
|
399
|
+
"proc-macro2",
|
|
400
|
+
"quote",
|
|
401
|
+
"syn",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "codspeed-divan-compat-walltime"
|
|
406
|
+
version = "4.1.0"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "7f26092328e12a36704ffc552f379c6405dd94d3149970b79b22d371717c2aae"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"cfg-if",
|
|
411
|
+
"clap",
|
|
412
|
+
"codspeed",
|
|
413
|
+
"condtype",
|
|
414
|
+
"divan-macros",
|
|
415
|
+
"libc",
|
|
416
|
+
"regex-lite",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "collection_literals"
|
|
421
|
+
version = "1.0.3"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "colorchoice"
|
|
427
|
+
version = "1.0.4"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "colored"
|
|
433
|
+
version = "2.2.0"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"lazy_static",
|
|
438
|
+
"windows-sys 0.59.0",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "colored"
|
|
443
|
+
version = "3.0.0"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"windows-sys 0.59.0",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "compact_str"
|
|
452
|
+
version = "0.9.0"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"castaway",
|
|
457
|
+
"cfg-if",
|
|
458
|
+
"itoa",
|
|
459
|
+
"rustversion",
|
|
460
|
+
"ryu",
|
|
461
|
+
"static_assertions",
|
|
462
|
+
]
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "condtype"
|
|
466
|
+
version = "1.3.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "console"
|
|
472
|
+
version = "0.15.11"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"encode_unicode",
|
|
477
|
+
"libc",
|
|
478
|
+
"once_cell",
|
|
479
|
+
"windows-sys 0.59.0",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "core-foundation-sys"
|
|
484
|
+
version = "0.8.7"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "crc32fast"
|
|
490
|
+
version = "1.5.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"cfg-if",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "criterion-plot"
|
|
499
|
+
version = "0.5.0"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"cast",
|
|
504
|
+
"itertools 0.10.5",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "crossbeam-channel"
|
|
509
|
+
version = "0.5.15"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"crossbeam-utils",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "crossbeam-deque"
|
|
518
|
+
version = "0.8.6"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"crossbeam-epoch",
|
|
523
|
+
"crossbeam-utils",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "crossbeam-epoch"
|
|
528
|
+
version = "0.9.18"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"crossbeam-utils",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "crossbeam-queue"
|
|
537
|
+
version = "0.3.12"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"crossbeam-utils",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "crossbeam-utils"
|
|
546
|
+
version = "0.8.21"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "crunchy"
|
|
552
|
+
version = "0.2.4"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "ctor"
|
|
558
|
+
version = "0.6.2"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "eb230974aaf0aca4d71665bed0aca156cf43b764fcb9583b69c6c3e686f35e72"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"ctor-proc-macro",
|
|
563
|
+
"dtor",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "ctor-proc-macro"
|
|
568
|
+
version = "0.0.7"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "ctrlc"
|
|
574
|
+
version = "3.5.1"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "73736a89c4aff73035ba2ed2e565061954da00d4970fc9ac25dcc85a2a20d790"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"dispatch2",
|
|
579
|
+
"nix",
|
|
580
|
+
"windows-sys 0.61.2",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "darling"
|
|
585
|
+
version = "0.21.3"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"darling_core",
|
|
590
|
+
"darling_macro",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "darling_core"
|
|
595
|
+
version = "0.21.3"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"fnv",
|
|
600
|
+
"ident_case",
|
|
601
|
+
"proc-macro2",
|
|
602
|
+
"quote",
|
|
603
|
+
"strsim",
|
|
604
|
+
"syn",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "darling_macro"
|
|
609
|
+
version = "0.21.3"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"darling_core",
|
|
614
|
+
"quote",
|
|
615
|
+
"syn",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "dashmap"
|
|
620
|
+
version = "6.1.0"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"cfg-if",
|
|
625
|
+
"crossbeam-utils",
|
|
626
|
+
"hashbrown 0.14.5",
|
|
627
|
+
"lock_api",
|
|
628
|
+
"once_cell",
|
|
629
|
+
"parking_lot_core",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "derive-where"
|
|
634
|
+
version = "1.6.0"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"proc-macro2",
|
|
639
|
+
"quote",
|
|
640
|
+
"syn",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "diff"
|
|
645
|
+
version = "0.1.13"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "directories"
|
|
651
|
+
version = "6.0.0"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"dirs-sys",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "dirs-sys"
|
|
660
|
+
version = "0.5.0"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"libc",
|
|
665
|
+
"option-ext",
|
|
666
|
+
"redox_users",
|
|
667
|
+
"windows-sys 0.61.2",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "dispatch2"
|
|
672
|
+
version = "0.3.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"bitflags",
|
|
677
|
+
"block2",
|
|
678
|
+
"libc",
|
|
679
|
+
"objc2",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "divan-macros"
|
|
684
|
+
version = "0.1.17"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "8dc51d98e636f5e3b0759a39257458b22619cac7e96d932da6eeb052891bb67c"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"proc-macro2",
|
|
689
|
+
"quote",
|
|
690
|
+
"syn",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "dtor"
|
|
695
|
+
version = "0.1.1"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"dtor-proc-macro",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "dtor-proc-macro"
|
|
704
|
+
version = "0.0.6"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "dunce"
|
|
710
|
+
version = "1.0.5"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "either"
|
|
716
|
+
version = "1.15.0"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "encode_unicode"
|
|
722
|
+
version = "1.0.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "equivalent"
|
|
728
|
+
version = "1.0.2"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "errno"
|
|
734
|
+
version = "0.3.14"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"libc",
|
|
739
|
+
"windows-sys 0.61.2",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "etcetera"
|
|
744
|
+
version = "0.11.0"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"cfg-if",
|
|
749
|
+
"windows-sys 0.61.2",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "fastrand"
|
|
754
|
+
version = "2.3.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "filetime"
|
|
760
|
+
version = "0.2.26"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"cfg-if",
|
|
765
|
+
"libc",
|
|
766
|
+
"libredox",
|
|
767
|
+
"windows-sys 0.60.2",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "find-msvc-tools"
|
|
772
|
+
version = "0.1.5"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "fnv"
|
|
778
|
+
version = "1.0.7"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "foldhash"
|
|
784
|
+
version = "0.1.5"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "fs-err"
|
|
790
|
+
version = "2.11.0"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"autocfg",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "futures-core"
|
|
799
|
+
version = "0.3.31"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "futures-macro"
|
|
805
|
+
version = "0.3.31"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"proc-macro2",
|
|
810
|
+
"quote",
|
|
811
|
+
"syn",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "futures-task"
|
|
816
|
+
version = "0.3.31"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "futures-timer"
|
|
822
|
+
version = "3.0.3"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "futures-util"
|
|
828
|
+
version = "0.3.31"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"futures-core",
|
|
833
|
+
"futures-macro",
|
|
834
|
+
"futures-task",
|
|
835
|
+
"pin-project-lite",
|
|
836
|
+
"pin-utils",
|
|
837
|
+
"slab",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "get-size-derive2"
|
|
842
|
+
version = "0.7.2"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "ff47daa61505c85af126e9dd64af6a342a33dc0cccfe1be74ceadc7d352e6efd"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"attribute-derive",
|
|
847
|
+
"quote",
|
|
848
|
+
"syn",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "get-size2"
|
|
853
|
+
version = "0.7.2"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "ac7bb8710e1f09672102be7ddf39f764d8440ae74a9f4e30aaa4820dcdffa4af"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"compact_str",
|
|
858
|
+
"get-size-derive2",
|
|
859
|
+
"hashbrown 0.16.1",
|
|
860
|
+
"smallvec",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "getopts"
|
|
865
|
+
version = "0.2.24"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"unicode-width",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "getrandom"
|
|
874
|
+
version = "0.2.16"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"cfg-if",
|
|
879
|
+
"libc",
|
|
880
|
+
"wasi",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "getrandom"
|
|
885
|
+
version = "0.3.4"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"cfg-if",
|
|
890
|
+
"libc",
|
|
891
|
+
"r-efi",
|
|
892
|
+
"wasip2",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "glob"
|
|
897
|
+
version = "0.3.3"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "globset"
|
|
903
|
+
version = "0.4.18"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"aho-corasick",
|
|
908
|
+
"bstr",
|
|
909
|
+
"log",
|
|
910
|
+
"regex-automata",
|
|
911
|
+
"regex-syntax",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "half"
|
|
916
|
+
version = "2.7.1"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"cfg-if",
|
|
921
|
+
"crunchy",
|
|
922
|
+
"zerocopy",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "hashbrown"
|
|
927
|
+
version = "0.14.5"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "hashbrown"
|
|
933
|
+
version = "0.15.5"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"allocator-api2",
|
|
938
|
+
"equivalent",
|
|
939
|
+
"foldhash",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "hashbrown"
|
|
944
|
+
version = "0.16.1"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "hashlink"
|
|
950
|
+
version = "0.10.0"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"hashbrown 0.15.5",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "heck"
|
|
959
|
+
version = "0.5.0"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "hermit-abi"
|
|
965
|
+
version = "0.5.2"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "iana-time-zone"
|
|
971
|
+
version = "0.1.64"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"android_system_properties",
|
|
976
|
+
"core-foundation-sys",
|
|
977
|
+
"iana-time-zone-haiku",
|
|
978
|
+
"js-sys",
|
|
979
|
+
"log",
|
|
980
|
+
"wasm-bindgen",
|
|
981
|
+
"windows-core",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "iana-time-zone-haiku"
|
|
986
|
+
version = "0.1.2"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"cc",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "ident_case"
|
|
995
|
+
version = "1.0.1"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "ignore"
|
|
1001
|
+
version = "0.4.25"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"crossbeam-deque",
|
|
1006
|
+
"globset",
|
|
1007
|
+
"log",
|
|
1008
|
+
"memchr",
|
|
1009
|
+
"regex-automata",
|
|
1010
|
+
"same-file",
|
|
1011
|
+
"walkdir",
|
|
1012
|
+
"winapi-util",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "indexmap"
|
|
1017
|
+
version = "2.12.1"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"equivalent",
|
|
1022
|
+
"hashbrown 0.16.1",
|
|
1023
|
+
]
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "indoc"
|
|
1027
|
+
version = "2.0.7"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1030
|
+
dependencies = [
|
|
1031
|
+
"rustversion",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "insta"
|
|
1036
|
+
version = "1.44.3"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "b5c943d4415edd8153251b6f197de5eb1640e56d84e8d9159bea190421c73698"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"console",
|
|
1041
|
+
"once_cell",
|
|
1042
|
+
"regex",
|
|
1043
|
+
"serde",
|
|
1044
|
+
"similar",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "insta-cmd"
|
|
1049
|
+
version = "0.6.0"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "ffeeefa927925cced49ccb01bf3e57c9d4cd132df21e576eb9415baeab2d3de6"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"insta",
|
|
1054
|
+
"serde",
|
|
1055
|
+
"serde_json",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "interpolator"
|
|
1060
|
+
version = "0.5.0"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "intrusive-collections"
|
|
1066
|
+
version = "0.9.7"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"memoffset",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "inventory"
|
|
1075
|
+
version = "0.3.21"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"rustversion",
|
|
1080
|
+
]
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "is-macro"
|
|
1084
|
+
version = "0.3.7"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
1087
|
+
dependencies = [
|
|
1088
|
+
"heck",
|
|
1089
|
+
"proc-macro2",
|
|
1090
|
+
"quote",
|
|
1091
|
+
"syn",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "is-terminal"
|
|
1096
|
+
version = "0.4.17"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"hermit-abi",
|
|
1101
|
+
"libc",
|
|
1102
|
+
"windows-sys 0.61.2",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "is_terminal_polyfill"
|
|
1107
|
+
version = "1.70.2"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "itertools"
|
|
1113
|
+
version = "0.10.5"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1116
|
+
dependencies = [
|
|
1117
|
+
"either",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "itertools"
|
|
1122
|
+
version = "0.14.0"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"either",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "itoa"
|
|
1131
|
+
version = "1.0.15"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "js-sys"
|
|
1137
|
+
version = "0.3.83"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
1140
|
+
dependencies = [
|
|
1141
|
+
"once_cell",
|
|
1142
|
+
"wasm-bindgen",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "karva"
|
|
1147
|
+
version = "0.0.1-alpha.1"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"karva_cli",
|
|
1150
|
+
"karva_core",
|
|
1151
|
+
"pyo3",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "karva_benchmark"
|
|
1156
|
+
version = "0.0.0"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"anyhow",
|
|
1159
|
+
"camino",
|
|
1160
|
+
"codspeed-criterion-compat",
|
|
1161
|
+
"codspeed-divan-compat",
|
|
1162
|
+
"karva_core",
|
|
1163
|
+
"karva_project",
|
|
1164
|
+
"karva_projects",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "karva_cli"
|
|
1169
|
+
version = "0.0.0"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"anyhow",
|
|
1172
|
+
"argfile",
|
|
1173
|
+
"camino",
|
|
1174
|
+
"chrono",
|
|
1175
|
+
"clap",
|
|
1176
|
+
"colored 3.0.0",
|
|
1177
|
+
"ctrlc",
|
|
1178
|
+
"directories",
|
|
1179
|
+
"dunce",
|
|
1180
|
+
"insta",
|
|
1181
|
+
"insta-cmd",
|
|
1182
|
+
"karva_core",
|
|
1183
|
+
"karva_project",
|
|
1184
|
+
"regex",
|
|
1185
|
+
"rstest",
|
|
1186
|
+
"ruff_db",
|
|
1187
|
+
"ruff_python_trivia",
|
|
1188
|
+
"tempfile",
|
|
1189
|
+
"tracing",
|
|
1190
|
+
"tracing-flame",
|
|
1191
|
+
"tracing-subscriber",
|
|
1192
|
+
"tracing-tree",
|
|
1193
|
+
"wild",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "karva_combine"
|
|
1198
|
+
version = "0.0.0"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"ruff_python_ast",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "karva_core"
|
|
1205
|
+
version = "0.0.0"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"camino",
|
|
1208
|
+
"colored 3.0.0",
|
|
1209
|
+
"crossbeam-channel",
|
|
1210
|
+
"ctor",
|
|
1211
|
+
"ignore",
|
|
1212
|
+
"karva_project",
|
|
1213
|
+
"pyo3",
|
|
1214
|
+
"regex",
|
|
1215
|
+
"rstest",
|
|
1216
|
+
"ruff_db",
|
|
1217
|
+
"ruff_macros",
|
|
1218
|
+
"ruff_python_ast",
|
|
1219
|
+
"ruff_python_parser",
|
|
1220
|
+
"ruff_source_file",
|
|
1221
|
+
"ruff_text_size",
|
|
1222
|
+
"tempfile",
|
|
1223
|
+
"tracing",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "karva_dev"
|
|
1228
|
+
version = "0.0.0"
|
|
1229
|
+
dependencies = [
|
|
1230
|
+
"anyhow",
|
|
1231
|
+
"camino",
|
|
1232
|
+
"clap",
|
|
1233
|
+
"itertools 0.14.0",
|
|
1234
|
+
"karva_cli",
|
|
1235
|
+
"karva_project",
|
|
1236
|
+
"markdown",
|
|
1237
|
+
"pretty_assertions",
|
|
1238
|
+
"ruff_options_metadata",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "karva_diff"
|
|
1243
|
+
version = "0.0.0"
|
|
1244
|
+
dependencies = [
|
|
1245
|
+
"anyhow",
|
|
1246
|
+
"camino",
|
|
1247
|
+
"clap",
|
|
1248
|
+
"karva_project",
|
|
1249
|
+
"karva_projects",
|
|
1250
|
+
"tempfile",
|
|
1251
|
+
]
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "karva_macros"
|
|
1255
|
+
version = "0.0.0"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"karva_combine",
|
|
1258
|
+
"proc-macro2",
|
|
1259
|
+
"quote",
|
|
1260
|
+
"ruff_python_trivia",
|
|
1261
|
+
"syn",
|
|
1262
|
+
]
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "karva_project"
|
|
1266
|
+
version = "0.0.0"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"anyhow",
|
|
1269
|
+
"camino",
|
|
1270
|
+
"etcetera",
|
|
1271
|
+
"filetime",
|
|
1272
|
+
"karva_combine",
|
|
1273
|
+
"karva_macros",
|
|
1274
|
+
"ruff_db",
|
|
1275
|
+
"ruff_notebook",
|
|
1276
|
+
"ruff_options_metadata",
|
|
1277
|
+
"ruff_python_ast",
|
|
1278
|
+
"serde",
|
|
1279
|
+
"tempfile",
|
|
1280
|
+
"thiserror",
|
|
1281
|
+
"toml",
|
|
1282
|
+
"tracing",
|
|
1283
|
+
"tracing-subscriber",
|
|
1284
|
+
]
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "karva_projects"
|
|
1288
|
+
version = "0.0.0"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"anyhow",
|
|
1291
|
+
"camino",
|
|
1292
|
+
"ruff_python_ast",
|
|
1293
|
+
"serde",
|
|
1294
|
+
"serde_json",
|
|
1295
|
+
"tracing",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "lazy_static"
|
|
1300
|
+
version = "1.5.0"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "libc"
|
|
1306
|
+
version = "0.2.178"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "libredox"
|
|
1312
|
+
version = "0.1.10"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"bitflags",
|
|
1317
|
+
"libc",
|
|
1318
|
+
"redox_syscall",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "linux-raw-sys"
|
|
1323
|
+
version = "0.11.0"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "lock_api"
|
|
1329
|
+
version = "0.4.14"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"scopeguard",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "log"
|
|
1338
|
+
version = "0.4.29"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "manyhow"
|
|
1344
|
+
version = "0.11.4"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
|
|
1347
|
+
dependencies = [
|
|
1348
|
+
"manyhow-macros",
|
|
1349
|
+
"proc-macro2",
|
|
1350
|
+
"quote",
|
|
1351
|
+
"syn",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "manyhow-macros"
|
|
1356
|
+
version = "0.11.4"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"proc-macro-utils",
|
|
1361
|
+
"proc-macro2",
|
|
1362
|
+
"quote",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "markdown"
|
|
1367
|
+
version = "1.0.0"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "a5cab8f2cadc416a82d2e783a1946388b31654d391d1c7d92cc1f03e295b1deb"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"unicode-id",
|
|
1372
|
+
]
|
|
1373
|
+
|
|
1374
|
+
[[package]]
|
|
1375
|
+
name = "matchers"
|
|
1376
|
+
version = "0.2.0"
|
|
1377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1379
|
+
dependencies = [
|
|
1380
|
+
"regex-automata",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "matchit"
|
|
1385
|
+
version = "0.9.0"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "9ea5f97102eb9e54ab99fb70bb175589073f554bdadfb74d9bd656482ea73e2a"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "memchr"
|
|
1391
|
+
version = "2.7.6"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "memoffset"
|
|
1397
|
+
version = "0.9.1"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1400
|
+
dependencies = [
|
|
1401
|
+
"autocfg",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "nix"
|
|
1406
|
+
version = "0.30.1"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"bitflags",
|
|
1411
|
+
"cfg-if",
|
|
1412
|
+
"cfg_aliases",
|
|
1413
|
+
"libc",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "nu-ansi-term"
|
|
1418
|
+
version = "0.50.3"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"windows-sys 0.61.2",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "num-traits"
|
|
1427
|
+
version = "0.2.19"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"autocfg",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "objc2"
|
|
1436
|
+
version = "0.6.3"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"objc2-encode",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "objc2-encode"
|
|
1445
|
+
version = "4.1.0"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "once_cell"
|
|
1451
|
+
version = "1.21.3"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "once_cell_polyfill"
|
|
1457
|
+
version = "1.70.2"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "oorandom"
|
|
1463
|
+
version = "11.1.5"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "option-ext"
|
|
1469
|
+
version = "0.2.0"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1472
|
+
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "ordermap"
|
|
1475
|
+
version = "0.5.12"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "b100f7dd605611822d30e182214d3c02fdefce2d801d23993f6b6ba6ca1392af"
|
|
1478
|
+
dependencies = [
|
|
1479
|
+
"indexmap",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "os_str_bytes"
|
|
1484
|
+
version = "7.1.1"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "63eceb7b5d757011a87d08eb2123db15d87fb0c281f65d101ce30a1e96c3ad5c"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"memchr",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "parking_lot"
|
|
1493
|
+
version = "0.12.5"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"lock_api",
|
|
1498
|
+
"parking_lot_core",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "parking_lot_core"
|
|
1503
|
+
version = "0.9.12"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"cfg-if",
|
|
1508
|
+
"libc",
|
|
1509
|
+
"redox_syscall",
|
|
1510
|
+
"smallvec",
|
|
1511
|
+
"windows-link",
|
|
1512
|
+
]
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "path-slash"
|
|
1516
|
+
version = "0.2.1"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "pathdiff"
|
|
1522
|
+
version = "0.2.3"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "phf"
|
|
1528
|
+
version = "0.11.3"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1531
|
+
dependencies = [
|
|
1532
|
+
"phf_shared",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "phf_codegen"
|
|
1537
|
+
version = "0.11.3"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"phf_generator",
|
|
1542
|
+
"phf_shared",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "phf_generator"
|
|
1547
|
+
version = "0.11.3"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"phf_shared",
|
|
1552
|
+
"rand 0.8.5",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "phf_shared"
|
|
1557
|
+
version = "0.11.3"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1560
|
+
dependencies = [
|
|
1561
|
+
"siphasher",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "pin-project-lite"
|
|
1566
|
+
version = "0.2.16"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "pin-utils"
|
|
1572
|
+
version = "0.1.0"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "portable-atomic"
|
|
1578
|
+
version = "1.11.1"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1581
|
+
|
|
1582
|
+
[[package]]
|
|
1583
|
+
name = "ppv-lite86"
|
|
1584
|
+
version = "0.2.21"
|
|
1585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1587
|
+
dependencies = [
|
|
1588
|
+
"zerocopy",
|
|
1589
|
+
]
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "pretty_assertions"
|
|
1593
|
+
version = "1.4.1"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1596
|
+
dependencies = [
|
|
1597
|
+
"diff",
|
|
1598
|
+
"yansi",
|
|
1599
|
+
]
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "proc-macro-crate"
|
|
1603
|
+
version = "3.4.0"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
1606
|
+
dependencies = [
|
|
1607
|
+
"toml_edit",
|
|
1608
|
+
]
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "proc-macro-utils"
|
|
1612
|
+
version = "0.10.0"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"proc-macro2",
|
|
1617
|
+
"quote",
|
|
1618
|
+
"smallvec",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "proc-macro2"
|
|
1623
|
+
version = "1.0.103"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"unicode-ident",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "pyo3"
|
|
1632
|
+
version = "0.27.2"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"indoc",
|
|
1637
|
+
"libc",
|
|
1638
|
+
"memoffset",
|
|
1639
|
+
"once_cell",
|
|
1640
|
+
"portable-atomic",
|
|
1641
|
+
"pyo3-build-config",
|
|
1642
|
+
"pyo3-ffi",
|
|
1643
|
+
"pyo3-macros",
|
|
1644
|
+
"unindent",
|
|
1645
|
+
]
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "pyo3-build-config"
|
|
1649
|
+
version = "0.27.2"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
1652
|
+
dependencies = [
|
|
1653
|
+
"target-lexicon",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "pyo3-ffi"
|
|
1658
|
+
version = "0.27.2"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
1661
|
+
dependencies = [
|
|
1662
|
+
"libc",
|
|
1663
|
+
"pyo3-build-config",
|
|
1664
|
+
]
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "pyo3-macros"
|
|
1668
|
+
version = "0.27.2"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
1671
|
+
dependencies = [
|
|
1672
|
+
"proc-macro2",
|
|
1673
|
+
"pyo3-macros-backend",
|
|
1674
|
+
"quote",
|
|
1675
|
+
"syn",
|
|
1676
|
+
]
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "pyo3-macros-backend"
|
|
1680
|
+
version = "0.27.2"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"heck",
|
|
1685
|
+
"proc-macro2",
|
|
1686
|
+
"pyo3-build-config",
|
|
1687
|
+
"quote",
|
|
1688
|
+
"syn",
|
|
1689
|
+
]
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "quote"
|
|
1693
|
+
version = "1.0.42"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
1696
|
+
dependencies = [
|
|
1697
|
+
"proc-macro2",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "quote-use"
|
|
1702
|
+
version = "0.8.4"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"quote",
|
|
1707
|
+
"quote-use-macros",
|
|
1708
|
+
]
|
|
1709
|
+
|
|
1710
|
+
[[package]]
|
|
1711
|
+
name = "quote-use-macros"
|
|
1712
|
+
version = "0.8.4"
|
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
+
checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
|
|
1715
|
+
dependencies = [
|
|
1716
|
+
"proc-macro-utils",
|
|
1717
|
+
"proc-macro2",
|
|
1718
|
+
"quote",
|
|
1719
|
+
"syn",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "r-efi"
|
|
1724
|
+
version = "5.3.0"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "rand"
|
|
1730
|
+
version = "0.8.5"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"libc",
|
|
1735
|
+
"rand_chacha 0.3.1",
|
|
1736
|
+
"rand_core 0.6.4",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "rand"
|
|
1741
|
+
version = "0.9.2"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1744
|
+
dependencies = [
|
|
1745
|
+
"rand_chacha 0.9.0",
|
|
1746
|
+
"rand_core 0.9.3",
|
|
1747
|
+
]
|
|
1748
|
+
|
|
1749
|
+
[[package]]
|
|
1750
|
+
name = "rand_chacha"
|
|
1751
|
+
version = "0.3.1"
|
|
1752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1754
|
+
dependencies = [
|
|
1755
|
+
"ppv-lite86",
|
|
1756
|
+
"rand_core 0.6.4",
|
|
1757
|
+
]
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "rand_chacha"
|
|
1761
|
+
version = "0.9.0"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"ppv-lite86",
|
|
1766
|
+
"rand_core 0.9.3",
|
|
1767
|
+
]
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "rand_core"
|
|
1771
|
+
version = "0.6.4"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"getrandom 0.2.16",
|
|
1776
|
+
]
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "rand_core"
|
|
1780
|
+
version = "0.9.3"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"getrandom 0.3.4",
|
|
1785
|
+
]
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "redox_syscall"
|
|
1789
|
+
version = "0.5.18"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1792
|
+
dependencies = [
|
|
1793
|
+
"bitflags",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "redox_users"
|
|
1798
|
+
version = "0.5.2"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"getrandom 0.2.16",
|
|
1803
|
+
"libredox",
|
|
1804
|
+
"thiserror",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "regex"
|
|
1809
|
+
version = "1.12.2"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1812
|
+
dependencies = [
|
|
1813
|
+
"aho-corasick",
|
|
1814
|
+
"memchr",
|
|
1815
|
+
"regex-automata",
|
|
1816
|
+
"regex-syntax",
|
|
1817
|
+
]
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "regex-automata"
|
|
1821
|
+
version = "0.4.13"
|
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1824
|
+
dependencies = [
|
|
1825
|
+
"aho-corasick",
|
|
1826
|
+
"memchr",
|
|
1827
|
+
"regex-syntax",
|
|
1828
|
+
]
|
|
1829
|
+
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "regex-lite"
|
|
1832
|
+
version = "0.1.8"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
1835
|
+
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "regex-syntax"
|
|
1838
|
+
version = "0.8.8"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "relative-path"
|
|
1844
|
+
version = "1.9.3"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "rstest"
|
|
1850
|
+
version = "0.26.1"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
|
1853
|
+
dependencies = [
|
|
1854
|
+
"futures-timer",
|
|
1855
|
+
"futures-util",
|
|
1856
|
+
"rstest_macros",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "rstest_macros"
|
|
1861
|
+
version = "0.26.1"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
|
1864
|
+
dependencies = [
|
|
1865
|
+
"cfg-if",
|
|
1866
|
+
"glob",
|
|
1867
|
+
"proc-macro-crate",
|
|
1868
|
+
"proc-macro2",
|
|
1869
|
+
"quote",
|
|
1870
|
+
"regex",
|
|
1871
|
+
"relative-path",
|
|
1872
|
+
"rustc_version",
|
|
1873
|
+
"syn",
|
|
1874
|
+
"unicode-ident",
|
|
1875
|
+
]
|
|
1876
|
+
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "ruff_annotate_snippets"
|
|
1879
|
+
version = "0.1.0"
|
|
1880
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1881
|
+
dependencies = [
|
|
1882
|
+
"anstyle",
|
|
1883
|
+
"memchr",
|
|
1884
|
+
"unicode-width",
|
|
1885
|
+
]
|
|
1886
|
+
|
|
1887
|
+
[[package]]
|
|
1888
|
+
name = "ruff_db"
|
|
1889
|
+
version = "0.0.0"
|
|
1890
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"anstyle",
|
|
1893
|
+
"arc-swap",
|
|
1894
|
+
"camino",
|
|
1895
|
+
"dashmap",
|
|
1896
|
+
"dunce",
|
|
1897
|
+
"filetime",
|
|
1898
|
+
"get-size2",
|
|
1899
|
+
"glob",
|
|
1900
|
+
"matchit",
|
|
1901
|
+
"path-slash",
|
|
1902
|
+
"pathdiff",
|
|
1903
|
+
"ruff_annotate_snippets",
|
|
1904
|
+
"ruff_diagnostics",
|
|
1905
|
+
"ruff_memory_usage",
|
|
1906
|
+
"ruff_notebook",
|
|
1907
|
+
"ruff_python_ast",
|
|
1908
|
+
"ruff_python_parser",
|
|
1909
|
+
"ruff_python_trivia",
|
|
1910
|
+
"ruff_source_file",
|
|
1911
|
+
"ruff_text_size",
|
|
1912
|
+
"rustc-hash",
|
|
1913
|
+
"salsa",
|
|
1914
|
+
"similar",
|
|
1915
|
+
"supports-hyperlinks",
|
|
1916
|
+
"thiserror",
|
|
1917
|
+
"tracing",
|
|
1918
|
+
"ty_static",
|
|
1919
|
+
"web-time",
|
|
1920
|
+
"zip",
|
|
1921
|
+
]
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "ruff_diagnostics"
|
|
1925
|
+
version = "0.0.0"
|
|
1926
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"get-size2",
|
|
1929
|
+
"is-macro",
|
|
1930
|
+
"ruff_text_size",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "ruff_macros"
|
|
1935
|
+
version = "0.0.0"
|
|
1936
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1937
|
+
dependencies = [
|
|
1938
|
+
"heck",
|
|
1939
|
+
"itertools 0.14.0",
|
|
1940
|
+
"proc-macro2",
|
|
1941
|
+
"quote",
|
|
1942
|
+
"ruff_python_trivia",
|
|
1943
|
+
"syn",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "ruff_memory_usage"
|
|
1948
|
+
version = "0.0.0"
|
|
1949
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"get-size2",
|
|
1952
|
+
"ordermap",
|
|
1953
|
+
]
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "ruff_notebook"
|
|
1957
|
+
version = "0.0.0"
|
|
1958
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"anyhow",
|
|
1961
|
+
"itertools 0.14.0",
|
|
1962
|
+
"rand 0.9.2",
|
|
1963
|
+
"ruff_diagnostics",
|
|
1964
|
+
"ruff_source_file",
|
|
1965
|
+
"ruff_text_size",
|
|
1966
|
+
"serde",
|
|
1967
|
+
"serde_json",
|
|
1968
|
+
"serde_with",
|
|
1969
|
+
"thiserror",
|
|
1970
|
+
"uuid",
|
|
1971
|
+
]
|
|
1972
|
+
|
|
1973
|
+
[[package]]
|
|
1974
|
+
name = "ruff_options_metadata"
|
|
1975
|
+
version = "0.0.0"
|
|
1976
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "ruff_python_ast"
|
|
1980
|
+
version = "0.0.0"
|
|
1981
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"aho-corasick",
|
|
1984
|
+
"bitflags",
|
|
1985
|
+
"compact_str",
|
|
1986
|
+
"get-size2",
|
|
1987
|
+
"is-macro",
|
|
1988
|
+
"itertools 0.14.0",
|
|
1989
|
+
"memchr",
|
|
1990
|
+
"ruff_python_trivia",
|
|
1991
|
+
"ruff_source_file",
|
|
1992
|
+
"ruff_text_size",
|
|
1993
|
+
"rustc-hash",
|
|
1994
|
+
"thiserror",
|
|
1995
|
+
]
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "ruff_python_parser"
|
|
1999
|
+
version = "0.0.0"
|
|
2000
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"bitflags",
|
|
2003
|
+
"bstr",
|
|
2004
|
+
"compact_str",
|
|
2005
|
+
"get-size2",
|
|
2006
|
+
"memchr",
|
|
2007
|
+
"ruff_python_ast",
|
|
2008
|
+
"ruff_python_trivia",
|
|
2009
|
+
"ruff_text_size",
|
|
2010
|
+
"rustc-hash",
|
|
2011
|
+
"static_assertions",
|
|
2012
|
+
"unicode-ident",
|
|
2013
|
+
"unicode-normalization",
|
|
2014
|
+
"unicode_names2",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "ruff_python_trivia"
|
|
2019
|
+
version = "0.0.0"
|
|
2020
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"itertools 0.14.0",
|
|
2023
|
+
"ruff_source_file",
|
|
2024
|
+
"ruff_text_size",
|
|
2025
|
+
"unicode-ident",
|
|
2026
|
+
]
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "ruff_source_file"
|
|
2030
|
+
version = "0.0.0"
|
|
2031
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
2032
|
+
dependencies = [
|
|
2033
|
+
"get-size2",
|
|
2034
|
+
"memchr",
|
|
2035
|
+
"ruff_text_size",
|
|
2036
|
+
"serde",
|
|
2037
|
+
]
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "ruff_text_size"
|
|
2041
|
+
version = "0.0.0"
|
|
2042
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"get-size2",
|
|
2045
|
+
"serde",
|
|
2046
|
+
]
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "rustc-hash"
|
|
2050
|
+
version = "2.1.1"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "rustc_version"
|
|
2056
|
+
version = "0.4.1"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2059
|
+
dependencies = [
|
|
2060
|
+
"semver",
|
|
2061
|
+
]
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "rustix"
|
|
2065
|
+
version = "1.1.2"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"bitflags",
|
|
2070
|
+
"errno",
|
|
2071
|
+
"libc",
|
|
2072
|
+
"linux-raw-sys",
|
|
2073
|
+
"windows-sys 0.61.2",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "rustversion"
|
|
2078
|
+
version = "1.0.22"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "ryu"
|
|
2084
|
+
version = "1.0.20"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2087
|
+
|
|
2088
|
+
[[package]]
|
|
2089
|
+
name = "salsa"
|
|
2090
|
+
version = "0.24.0"
|
|
2091
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0#59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"boxcar",
|
|
2094
|
+
"compact_str",
|
|
2095
|
+
"crossbeam-queue",
|
|
2096
|
+
"crossbeam-utils",
|
|
2097
|
+
"hashbrown 0.15.5",
|
|
2098
|
+
"hashlink",
|
|
2099
|
+
"indexmap",
|
|
2100
|
+
"intrusive-collections",
|
|
2101
|
+
"inventory",
|
|
2102
|
+
"parking_lot",
|
|
2103
|
+
"portable-atomic",
|
|
2104
|
+
"rustc-hash",
|
|
2105
|
+
"salsa-macro-rules",
|
|
2106
|
+
"salsa-macros",
|
|
2107
|
+
"smallvec",
|
|
2108
|
+
"thin-vec",
|
|
2109
|
+
"tracing",
|
|
2110
|
+
]
|
|
2111
|
+
|
|
2112
|
+
[[package]]
|
|
2113
|
+
name = "salsa-macro-rules"
|
|
2114
|
+
version = "0.24.0"
|
|
2115
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0#59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0"
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "salsa-macros"
|
|
2119
|
+
version = "0.24.0"
|
|
2120
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0#59aa1075e837f5deb0d6ffb24b68fedc0f4bc5e0"
|
|
2121
|
+
dependencies = [
|
|
2122
|
+
"proc-macro2",
|
|
2123
|
+
"quote",
|
|
2124
|
+
"syn",
|
|
2125
|
+
"synstructure",
|
|
2126
|
+
]
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "same-file"
|
|
2130
|
+
version = "1.0.6"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"winapi-util",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "scopeguard"
|
|
2139
|
+
version = "1.2.0"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2142
|
+
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "semver"
|
|
2145
|
+
version = "1.0.27"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2148
|
+
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "serde"
|
|
2151
|
+
version = "1.0.228"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2154
|
+
dependencies = [
|
|
2155
|
+
"serde_core",
|
|
2156
|
+
"serde_derive",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "serde_core"
|
|
2161
|
+
version = "1.0.228"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"serde_derive",
|
|
2166
|
+
]
|
|
2167
|
+
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "serde_derive"
|
|
2170
|
+
version = "1.0.228"
|
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2173
|
+
dependencies = [
|
|
2174
|
+
"proc-macro2",
|
|
2175
|
+
"quote",
|
|
2176
|
+
"syn",
|
|
2177
|
+
]
|
|
2178
|
+
|
|
2179
|
+
[[package]]
|
|
2180
|
+
name = "serde_json"
|
|
2181
|
+
version = "1.0.145"
|
|
2182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2184
|
+
dependencies = [
|
|
2185
|
+
"itoa",
|
|
2186
|
+
"memchr",
|
|
2187
|
+
"ryu",
|
|
2188
|
+
"serde",
|
|
2189
|
+
"serde_core",
|
|
2190
|
+
]
|
|
2191
|
+
|
|
2192
|
+
[[package]]
|
|
2193
|
+
name = "serde_spanned"
|
|
2194
|
+
version = "1.0.3"
|
|
2195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
|
2197
|
+
dependencies = [
|
|
2198
|
+
"serde_core",
|
|
2199
|
+
]
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "serde_with"
|
|
2203
|
+
version = "3.16.1"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
|
|
2206
|
+
dependencies = [
|
|
2207
|
+
"serde_core",
|
|
2208
|
+
"serde_with_macros",
|
|
2209
|
+
]
|
|
2210
|
+
|
|
2211
|
+
[[package]]
|
|
2212
|
+
name = "serde_with_macros"
|
|
2213
|
+
version = "3.16.1"
|
|
2214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2215
|
+
checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
|
|
2216
|
+
dependencies = [
|
|
2217
|
+
"darling",
|
|
2218
|
+
"proc-macro2",
|
|
2219
|
+
"quote",
|
|
2220
|
+
"syn",
|
|
2221
|
+
]
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "sharded-slab"
|
|
2225
|
+
version = "0.1.7"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"lazy_static",
|
|
2230
|
+
]
|
|
2231
|
+
|
|
2232
|
+
[[package]]
|
|
2233
|
+
name = "shlex"
|
|
2234
|
+
version = "1.3.0"
|
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2237
|
+
|
|
2238
|
+
[[package]]
|
|
2239
|
+
name = "similar"
|
|
2240
|
+
version = "2.7.0"
|
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "siphasher"
|
|
2246
|
+
version = "1.0.1"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "slab"
|
|
2252
|
+
version = "0.4.11"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "smallvec"
|
|
2258
|
+
version = "1.15.1"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "static_assertions"
|
|
2264
|
+
version = "1.1.0"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "statrs"
|
|
2270
|
+
version = "0.18.0"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"approx",
|
|
2275
|
+
"num-traits",
|
|
2276
|
+
]
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "strsim"
|
|
2280
|
+
version = "0.11.1"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "supports-hyperlinks"
|
|
2286
|
+
version = "3.1.0"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "804f44ed3c63152de6a9f90acbea1a110441de43006ea51bcce8f436196a288b"
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "syn"
|
|
2292
|
+
version = "2.0.111"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"proc-macro2",
|
|
2297
|
+
"quote",
|
|
2298
|
+
"unicode-ident",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "synstructure"
|
|
2303
|
+
version = "0.13.2"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2306
|
+
dependencies = [
|
|
2307
|
+
"proc-macro2",
|
|
2308
|
+
"quote",
|
|
2309
|
+
"syn",
|
|
2310
|
+
]
|
|
2311
|
+
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "target-lexicon"
|
|
2314
|
+
version = "0.13.3"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "tempfile"
|
|
2320
|
+
version = "3.23.0"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"fastrand",
|
|
2325
|
+
"getrandom 0.3.4",
|
|
2326
|
+
"once_cell",
|
|
2327
|
+
"rustix",
|
|
2328
|
+
"windows-sys 0.61.2",
|
|
2329
|
+
]
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "terminal_size"
|
|
2333
|
+
version = "0.4.3"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
|
2336
|
+
dependencies = [
|
|
2337
|
+
"rustix",
|
|
2338
|
+
"windows-sys 0.60.2",
|
|
2339
|
+
]
|
|
2340
|
+
|
|
2341
|
+
[[package]]
|
|
2342
|
+
name = "thin-vec"
|
|
2343
|
+
version = "0.2.14"
|
|
2344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
|
+
checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "thiserror"
|
|
2349
|
+
version = "2.0.17"
|
|
2350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
2352
|
+
dependencies = [
|
|
2353
|
+
"thiserror-impl",
|
|
2354
|
+
]
|
|
2355
|
+
|
|
2356
|
+
[[package]]
|
|
2357
|
+
name = "thiserror-impl"
|
|
2358
|
+
version = "2.0.17"
|
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
2361
|
+
dependencies = [
|
|
2362
|
+
"proc-macro2",
|
|
2363
|
+
"quote",
|
|
2364
|
+
"syn",
|
|
2365
|
+
]
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "thread_local"
|
|
2369
|
+
version = "1.1.9"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2372
|
+
dependencies = [
|
|
2373
|
+
"cfg-if",
|
|
2374
|
+
]
|
|
2375
|
+
|
|
2376
|
+
[[package]]
|
|
2377
|
+
name = "tinytemplate"
|
|
2378
|
+
version = "1.2.1"
|
|
2379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2381
|
+
dependencies = [
|
|
2382
|
+
"serde",
|
|
2383
|
+
"serde_json",
|
|
2384
|
+
]
|
|
2385
|
+
|
|
2386
|
+
[[package]]
|
|
2387
|
+
name = "tinyvec"
|
|
2388
|
+
version = "1.10.0"
|
|
2389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2390
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
2391
|
+
dependencies = [
|
|
2392
|
+
"tinyvec_macros",
|
|
2393
|
+
]
|
|
2394
|
+
|
|
2395
|
+
[[package]]
|
|
2396
|
+
name = "tinyvec_macros"
|
|
2397
|
+
version = "0.1.1"
|
|
2398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "toml"
|
|
2403
|
+
version = "0.9.8"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
|
2406
|
+
dependencies = [
|
|
2407
|
+
"indexmap",
|
|
2408
|
+
"serde_core",
|
|
2409
|
+
"serde_spanned",
|
|
2410
|
+
"toml_datetime",
|
|
2411
|
+
"toml_parser",
|
|
2412
|
+
"toml_writer",
|
|
2413
|
+
"winnow",
|
|
2414
|
+
]
|
|
2415
|
+
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "toml_datetime"
|
|
2418
|
+
version = "0.7.3"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
2421
|
+
dependencies = [
|
|
2422
|
+
"serde_core",
|
|
2423
|
+
]
|
|
2424
|
+
|
|
2425
|
+
[[package]]
|
|
2426
|
+
name = "toml_edit"
|
|
2427
|
+
version = "0.23.7"
|
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2429
|
+
checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
|
|
2430
|
+
dependencies = [
|
|
2431
|
+
"indexmap",
|
|
2432
|
+
"toml_datetime",
|
|
2433
|
+
"toml_parser",
|
|
2434
|
+
"winnow",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "toml_parser"
|
|
2439
|
+
version = "1.0.4"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"winnow",
|
|
2444
|
+
]
|
|
2445
|
+
|
|
2446
|
+
[[package]]
|
|
2447
|
+
name = "toml_writer"
|
|
2448
|
+
version = "1.0.4"
|
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
2451
|
+
|
|
2452
|
+
[[package]]
|
|
2453
|
+
name = "tracing"
|
|
2454
|
+
version = "0.1.43"
|
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
+
checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
|
|
2457
|
+
dependencies = [
|
|
2458
|
+
"pin-project-lite",
|
|
2459
|
+
"tracing-attributes",
|
|
2460
|
+
"tracing-core",
|
|
2461
|
+
]
|
|
2462
|
+
|
|
2463
|
+
[[package]]
|
|
2464
|
+
name = "tracing-attributes"
|
|
2465
|
+
version = "0.1.31"
|
|
2466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2467
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2468
|
+
dependencies = [
|
|
2469
|
+
"proc-macro2",
|
|
2470
|
+
"quote",
|
|
2471
|
+
"syn",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "tracing-core"
|
|
2476
|
+
version = "0.1.35"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"once_cell",
|
|
2481
|
+
"valuable",
|
|
2482
|
+
]
|
|
2483
|
+
|
|
2484
|
+
[[package]]
|
|
2485
|
+
name = "tracing-flame"
|
|
2486
|
+
version = "0.2.0"
|
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
+
checksum = "0bae117ee14789185e129aaee5d93750abe67fdc5a9a62650452bfe4e122a3a9"
|
|
2489
|
+
dependencies = [
|
|
2490
|
+
"lazy_static",
|
|
2491
|
+
"tracing",
|
|
2492
|
+
"tracing-subscriber",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2495
|
+
[[package]]
|
|
2496
|
+
name = "tracing-log"
|
|
2497
|
+
version = "0.2.0"
|
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2500
|
+
dependencies = [
|
|
2501
|
+
"log",
|
|
2502
|
+
"once_cell",
|
|
2503
|
+
"tracing-core",
|
|
2504
|
+
]
|
|
2505
|
+
|
|
2506
|
+
[[package]]
|
|
2507
|
+
name = "tracing-subscriber"
|
|
2508
|
+
version = "0.3.22"
|
|
2509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
2511
|
+
dependencies = [
|
|
2512
|
+
"matchers",
|
|
2513
|
+
"once_cell",
|
|
2514
|
+
"regex-automata",
|
|
2515
|
+
"sharded-slab",
|
|
2516
|
+
"smallvec",
|
|
2517
|
+
"thread_local",
|
|
2518
|
+
"tracing",
|
|
2519
|
+
"tracing-core",
|
|
2520
|
+
]
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "tracing-tree"
|
|
2524
|
+
version = "0.4.1"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "ac87aa03b6a4d5a7e4810d1a80c19601dbe0f8a837e9177f23af721c7ba7beec"
|
|
2527
|
+
dependencies = [
|
|
2528
|
+
"nu-ansi-term",
|
|
2529
|
+
"tracing-core",
|
|
2530
|
+
"tracing-log",
|
|
2531
|
+
"tracing-subscriber",
|
|
2532
|
+
]
|
|
2533
|
+
|
|
2534
|
+
[[package]]
|
|
2535
|
+
name = "ty_static"
|
|
2536
|
+
version = "0.0.1"
|
|
2537
|
+
source = "git+https://github.com/astral-sh/ruff/?branch=main#cccb0bbaa41e95a1efbe997ebe8119454f9b93f9"
|
|
2538
|
+
dependencies = [
|
|
2539
|
+
"ruff_macros",
|
|
2540
|
+
]
|
|
2541
|
+
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "unicode-id"
|
|
2544
|
+
version = "0.3.6"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "70ba288e709927c043cbe476718d37be306be53fb1fafecd0dbe36d072be2580"
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "unicode-ident"
|
|
2550
|
+
version = "1.0.22"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "unicode-normalization"
|
|
2556
|
+
version = "0.1.25"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"tinyvec",
|
|
2561
|
+
]
|
|
2562
|
+
|
|
2563
|
+
[[package]]
|
|
2564
|
+
name = "unicode-width"
|
|
2565
|
+
version = "0.2.2"
|
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "unicode_names2"
|
|
2571
|
+
version = "1.3.0"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"phf",
|
|
2576
|
+
"unicode_names2_generator",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "unicode_names2_generator"
|
|
2581
|
+
version = "1.3.0"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"getopts",
|
|
2586
|
+
"log",
|
|
2587
|
+
"phf_codegen",
|
|
2588
|
+
"rand 0.8.5",
|
|
2589
|
+
]
|
|
2590
|
+
|
|
2591
|
+
[[package]]
|
|
2592
|
+
name = "unindent"
|
|
2593
|
+
version = "0.2.4"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2596
|
+
|
|
2597
|
+
[[package]]
|
|
2598
|
+
name = "utf8parse"
|
|
2599
|
+
version = "0.2.2"
|
|
2600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2602
|
+
|
|
2603
|
+
[[package]]
|
|
2604
|
+
name = "uuid"
|
|
2605
|
+
version = "1.19.0"
|
|
2606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
2608
|
+
dependencies = [
|
|
2609
|
+
"getrandom 0.3.4",
|
|
2610
|
+
"js-sys",
|
|
2611
|
+
"rand 0.9.2",
|
|
2612
|
+
"uuid-macro-internal",
|
|
2613
|
+
"wasm-bindgen",
|
|
2614
|
+
]
|
|
2615
|
+
|
|
2616
|
+
[[package]]
|
|
2617
|
+
name = "uuid-macro-internal"
|
|
2618
|
+
version = "1.19.0"
|
|
2619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2620
|
+
checksum = "39d11901c36b3650df7acb0f9ebe624f35b5ac4e1922ecd3c57f444648429594"
|
|
2621
|
+
dependencies = [
|
|
2622
|
+
"proc-macro2",
|
|
2623
|
+
"quote",
|
|
2624
|
+
"syn",
|
|
2625
|
+
]
|
|
2626
|
+
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "valuable"
|
|
2629
|
+
version = "0.1.1"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2632
|
+
|
|
2633
|
+
[[package]]
|
|
2634
|
+
name = "walkdir"
|
|
2635
|
+
version = "2.5.0"
|
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2638
|
+
dependencies = [
|
|
2639
|
+
"same-file",
|
|
2640
|
+
"winapi-util",
|
|
2641
|
+
]
|
|
2642
|
+
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "wasi"
|
|
2645
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2648
|
+
|
|
2649
|
+
[[package]]
|
|
2650
|
+
name = "wasip2"
|
|
2651
|
+
version = "1.0.1+wasi-0.2.4"
|
|
2652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
2654
|
+
dependencies = [
|
|
2655
|
+
"wit-bindgen",
|
|
2656
|
+
]
|
|
2657
|
+
|
|
2658
|
+
[[package]]
|
|
2659
|
+
name = "wasm-bindgen"
|
|
2660
|
+
version = "0.2.106"
|
|
2661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
2663
|
+
dependencies = [
|
|
2664
|
+
"cfg-if",
|
|
2665
|
+
"once_cell",
|
|
2666
|
+
"rustversion",
|
|
2667
|
+
"wasm-bindgen-macro",
|
|
2668
|
+
"wasm-bindgen-shared",
|
|
2669
|
+
]
|
|
2670
|
+
|
|
2671
|
+
[[package]]
|
|
2672
|
+
name = "wasm-bindgen-macro"
|
|
2673
|
+
version = "0.2.106"
|
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
2676
|
+
dependencies = [
|
|
2677
|
+
"quote",
|
|
2678
|
+
"wasm-bindgen-macro-support",
|
|
2679
|
+
]
|
|
2680
|
+
|
|
2681
|
+
[[package]]
|
|
2682
|
+
name = "wasm-bindgen-macro-support"
|
|
2683
|
+
version = "0.2.106"
|
|
2684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2685
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
2686
|
+
dependencies = [
|
|
2687
|
+
"bumpalo",
|
|
2688
|
+
"proc-macro2",
|
|
2689
|
+
"quote",
|
|
2690
|
+
"syn",
|
|
2691
|
+
"wasm-bindgen-shared",
|
|
2692
|
+
]
|
|
2693
|
+
|
|
2694
|
+
[[package]]
|
|
2695
|
+
name = "wasm-bindgen-shared"
|
|
2696
|
+
version = "0.2.106"
|
|
2697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2698
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
2699
|
+
dependencies = [
|
|
2700
|
+
"unicode-ident",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "web-time"
|
|
2705
|
+
version = "1.1.0"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2708
|
+
dependencies = [
|
|
2709
|
+
"js-sys",
|
|
2710
|
+
"wasm-bindgen",
|
|
2711
|
+
]
|
|
2712
|
+
|
|
2713
|
+
[[package]]
|
|
2714
|
+
name = "wild"
|
|
2715
|
+
version = "2.2.1"
|
|
2716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
+
checksum = "a3131afc8c575281e1e80f36ed6a092aa502c08b18ed7524e86fbbb12bb410e1"
|
|
2718
|
+
dependencies = [
|
|
2719
|
+
"glob",
|
|
2720
|
+
]
|
|
2721
|
+
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "winapi-util"
|
|
2724
|
+
version = "0.1.11"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2727
|
+
dependencies = [
|
|
2728
|
+
"windows-sys 0.59.0",
|
|
2729
|
+
]
|
|
2730
|
+
|
|
2731
|
+
[[package]]
|
|
2732
|
+
name = "windows-core"
|
|
2733
|
+
version = "0.62.2"
|
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2736
|
+
dependencies = [
|
|
2737
|
+
"windows-implement",
|
|
2738
|
+
"windows-interface",
|
|
2739
|
+
"windows-link",
|
|
2740
|
+
"windows-result",
|
|
2741
|
+
"windows-strings",
|
|
2742
|
+
]
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "windows-implement"
|
|
2746
|
+
version = "0.60.2"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2749
|
+
dependencies = [
|
|
2750
|
+
"proc-macro2",
|
|
2751
|
+
"quote",
|
|
2752
|
+
"syn",
|
|
2753
|
+
]
|
|
2754
|
+
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "windows-interface"
|
|
2757
|
+
version = "0.59.3"
|
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2759
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2760
|
+
dependencies = [
|
|
2761
|
+
"proc-macro2",
|
|
2762
|
+
"quote",
|
|
2763
|
+
"syn",
|
|
2764
|
+
]
|
|
2765
|
+
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "windows-link"
|
|
2768
|
+
version = "0.2.1"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "windows-result"
|
|
2774
|
+
version = "0.4.1"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2777
|
+
dependencies = [
|
|
2778
|
+
"windows-link",
|
|
2779
|
+
]
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "windows-strings"
|
|
2783
|
+
version = "0.5.1"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"windows-link",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "windows-sys"
|
|
2792
|
+
version = "0.59.0"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"windows-targets 0.52.6",
|
|
2797
|
+
]
|
|
2798
|
+
|
|
2799
|
+
[[package]]
|
|
2800
|
+
name = "windows-sys"
|
|
2801
|
+
version = "0.60.2"
|
|
2802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2804
|
+
dependencies = [
|
|
2805
|
+
"windows-targets 0.53.5",
|
|
2806
|
+
]
|
|
2807
|
+
|
|
2808
|
+
[[package]]
|
|
2809
|
+
name = "windows-sys"
|
|
2810
|
+
version = "0.61.2"
|
|
2811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2813
|
+
dependencies = [
|
|
2814
|
+
"windows-link",
|
|
2815
|
+
]
|
|
2816
|
+
|
|
2817
|
+
[[package]]
|
|
2818
|
+
name = "windows-targets"
|
|
2819
|
+
version = "0.52.6"
|
|
2820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2822
|
+
dependencies = [
|
|
2823
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2824
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2825
|
+
"windows_i686_gnu 0.52.6",
|
|
2826
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2827
|
+
"windows_i686_msvc 0.52.6",
|
|
2828
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2829
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2830
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2831
|
+
]
|
|
2832
|
+
|
|
2833
|
+
[[package]]
|
|
2834
|
+
name = "windows-targets"
|
|
2835
|
+
version = "0.53.5"
|
|
2836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2838
|
+
dependencies = [
|
|
2839
|
+
"windows-link",
|
|
2840
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2841
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2842
|
+
"windows_i686_gnu 0.53.1",
|
|
2843
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2844
|
+
"windows_i686_msvc 0.53.1",
|
|
2845
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2846
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2847
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2848
|
+
]
|
|
2849
|
+
|
|
2850
|
+
[[package]]
|
|
2851
|
+
name = "windows_aarch64_gnullvm"
|
|
2852
|
+
version = "0.52.6"
|
|
2853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2855
|
+
|
|
2856
|
+
[[package]]
|
|
2857
|
+
name = "windows_aarch64_gnullvm"
|
|
2858
|
+
version = "0.53.1"
|
|
2859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "windows_aarch64_msvc"
|
|
2864
|
+
version = "0.52.6"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "windows_aarch64_msvc"
|
|
2870
|
+
version = "0.53.1"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "windows_i686_gnu"
|
|
2876
|
+
version = "0.52.6"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2879
|
+
|
|
2880
|
+
[[package]]
|
|
2881
|
+
name = "windows_i686_gnu"
|
|
2882
|
+
version = "0.53.1"
|
|
2883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "windows_i686_gnullvm"
|
|
2888
|
+
version = "0.52.6"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2891
|
+
|
|
2892
|
+
[[package]]
|
|
2893
|
+
name = "windows_i686_gnullvm"
|
|
2894
|
+
version = "0.53.1"
|
|
2895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "windows_i686_msvc"
|
|
2900
|
+
version = "0.52.6"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "windows_i686_msvc"
|
|
2906
|
+
version = "0.53.1"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "windows_x86_64_gnu"
|
|
2912
|
+
version = "0.52.6"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2915
|
+
|
|
2916
|
+
[[package]]
|
|
2917
|
+
name = "windows_x86_64_gnu"
|
|
2918
|
+
version = "0.53.1"
|
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2921
|
+
|
|
2922
|
+
[[package]]
|
|
2923
|
+
name = "windows_x86_64_gnullvm"
|
|
2924
|
+
version = "0.52.6"
|
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2927
|
+
|
|
2928
|
+
[[package]]
|
|
2929
|
+
name = "windows_x86_64_gnullvm"
|
|
2930
|
+
version = "0.53.1"
|
|
2931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2933
|
+
|
|
2934
|
+
[[package]]
|
|
2935
|
+
name = "windows_x86_64_msvc"
|
|
2936
|
+
version = "0.52.6"
|
|
2937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2939
|
+
|
|
2940
|
+
[[package]]
|
|
2941
|
+
name = "windows_x86_64_msvc"
|
|
2942
|
+
version = "0.53.1"
|
|
2943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2944
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2945
|
+
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "winnow"
|
|
2948
|
+
version = "0.7.14"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
2951
|
+
dependencies = [
|
|
2952
|
+
"memchr",
|
|
2953
|
+
]
|
|
2954
|
+
|
|
2955
|
+
[[package]]
|
|
2956
|
+
name = "wit-bindgen"
|
|
2957
|
+
version = "0.46.0"
|
|
2958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
2960
|
+
|
|
2961
|
+
[[package]]
|
|
2962
|
+
name = "yansi"
|
|
2963
|
+
version = "1.0.1"
|
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "zerocopy"
|
|
2969
|
+
version = "0.8.31"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"zerocopy-derive",
|
|
2974
|
+
]
|
|
2975
|
+
|
|
2976
|
+
[[package]]
|
|
2977
|
+
name = "zerocopy-derive"
|
|
2978
|
+
version = "0.8.31"
|
|
2979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
2981
|
+
dependencies = [
|
|
2982
|
+
"proc-macro2",
|
|
2983
|
+
"quote",
|
|
2984
|
+
"syn",
|
|
2985
|
+
]
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "zip"
|
|
2989
|
+
version = "0.6.6"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
|
|
2992
|
+
dependencies = [
|
|
2993
|
+
"byteorder",
|
|
2994
|
+
"crc32fast",
|
|
2995
|
+
"crossbeam-utils",
|
|
2996
|
+
]
|