mollify 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mollify-0.1.0/Cargo.lock +1642 -0
- mollify-0.1.0/Cargo.toml +36 -0
- mollify-0.1.0/PKG-INFO +337 -0
- mollify-0.1.0/README.md +314 -0
- mollify-0.1.0/crates/mollify-cli/Cargo.toml +25 -0
- mollify-0.1.0/crates/mollify-cli/src/main.rs +1026 -0
- mollify-0.1.0/crates/mollify-cli/src/osv.rs +137 -0
- mollify-0.1.0/crates/mollify-cli/src/update_check.rs +212 -0
- mollify-0.1.0/crates/mollify-core/Cargo.toml +26 -0
- mollify-0.1.0/crates/mollify-core/assets/.agents/skills/mollify/SKILL.md +111 -0
- mollify-0.1.0/crates/mollify-core/assets/.agents/skills/mollify/references/cli-reference.md +105 -0
- mollify-0.1.0/crates/mollify-core/assets/.agents/skills/mollify/references/json-contract.md +45 -0
- mollify-0.1.0/crates/mollify-core/assets/.claude/commands/mollify-audit.md +18 -0
- mollify-0.1.0/crates/mollify-core/assets/.claude/commands/mollify-cleanup.md +28 -0
- mollify-0.1.0/crates/mollify-core/assets/.claude/settings.json +27 -0
- mollify-0.1.0/crates/mollify-core/assets/.claude/skills/mollify/SKILL.md +125 -0
- mollify-0.1.0/crates/mollify-core/assets/.claude/skills/mollify/references/cli-reference.md +105 -0
- mollify-0.1.0/crates/mollify-core/assets/.claude/skills/mollify/references/json-contract.md +45 -0
- mollify-0.1.0/crates/mollify-core/assets/.codex/config.toml +6 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-arch.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-audit.md +13 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-complexity.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-dead-code.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-deps.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-dupes.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-explain.md +7 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-fix.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-graph.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-inspect.md +6 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-list.md +6 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-metrics.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-security.md +11 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-supply-chain.md +10 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-trace.md +9 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/commands/mollify-types.md +10 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/mcp.json +8 -0
- mollify-0.1.0/crates/mollify-core/assets/.cursor/rules/mollify.mdc +94 -0
- mollify-0.1.0/crates/mollify-core/assets/.devin/hooks.v1.json +18 -0
- mollify-0.1.0/crates/mollify-core/assets/.devin/rules/mollify.md +25 -0
- mollify-0.1.0/crates/mollify-core/assets/.devin/skills/mollify/SKILL.md +107 -0
- mollify-0.1.0/crates/mollify-core/assets/.devin/skills/mollify/references/cli-reference.md +105 -0
- mollify-0.1.0/crates/mollify-core/assets/.devin/skills/mollify/references/json-contract.md +45 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/arch.toml +19 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/audit.toml +25 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/complexity.toml +18 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/dead-code.toml +25 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/deps.toml +21 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/dupes.toml +17 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/explain.toml +21 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/fix.toml +16 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/graph.toml +17 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/inspect.toml +12 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/list.toml +12 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/metrics.toml +18 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/security.toml +21 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/supply-chain.toml +18 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/trace.toml +12 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/commands/mollify/types.toml +18 -0
- mollify-0.1.0/crates/mollify-core/assets/.gemini/settings.json +8 -0
- mollify-0.1.0/crates/mollify-core/assets/.mcp.json +10 -0
- mollify-0.1.0/crates/mollify-core/assets/.windsurf/hooks.json +10 -0
- mollify-0.1.0/crates/mollify-core/assets/.windsurf/workflows/mollify-audit.md +12 -0
- mollify-0.1.0/crates/mollify-core/assets/.windsurf/workflows/mollify-cleanup.md +14 -0
- mollify-0.1.0/crates/mollify-core/assets/AGENTS.md +84 -0
- mollify-0.1.0/crates/mollify-core/assets/GEMINI.md +70 -0
- mollify-0.1.0/crates/mollify-core/assets/scripts/mollify-report.sh +43 -0
- mollify-0.1.0/crates/mollify-core/src/agents.rs +263 -0
- mollify-0.1.0/crates/mollify-core/src/apihygiene.rs +106 -0
- mollify-0.1.0/crates/mollify-core/src/arch.rs +397 -0
- mollify-0.1.0/crates/mollify-core/src/baseline.rs +108 -0
- mollify-0.1.0/crates/mollify-core/src/cohesion.rs +126 -0
- mollify-0.1.0/crates/mollify-core/src/commented.rs +109 -0
- mollify-0.1.0/crates/mollify-core/src/complexity.rs +110 -0
- mollify-0.1.0/crates/mollify-core/src/config.rs +330 -0
- mollify-0.1.0/crates/mollify-core/src/coverage.rs +145 -0
- mollify-0.1.0/crates/mollify-core/src/deadcode.rs +641 -0
- mollify-0.1.0/crates/mollify-core/src/deps.rs +778 -0
- mollify-0.1.0/crates/mollify-core/src/dupes.rs +392 -0
- mollify-0.1.0/crates/mollify-core/src/explain.rs +284 -0
- mollify-0.1.0/crates/mollify-core/src/fingerprint.rs +26 -0
- mollify-0.1.0/crates/mollify-core/src/fix.rs +125 -0
- mollify-0.1.0/crates/mollify-core/src/git.rs +231 -0
- mollify-0.1.0/crates/mollify-core/src/hotspots.rs +136 -0
- mollify-0.1.0/crates/mollify-core/src/installed.rs +142 -0
- mollify-0.1.0/crates/mollify-core/src/known.rs +227 -0
- mollify-0.1.0/crates/mollify-core/src/lib.rs +508 -0
- mollify-0.1.0/crates/mollify-core/src/members.rs +363 -0
- mollify-0.1.0/crates/mollify-core/src/metrics.rs +128 -0
- mollify-0.1.0/crates/mollify-core/src/plugins.rs +123 -0
- mollify-0.1.0/crates/mollify-core/src/policy.rs +181 -0
- mollify-0.1.0/crates/mollify-core/src/sarif.rs +117 -0
- mollify-0.1.0/crates/mollify-core/src/security.rs +181 -0
- mollify-0.1.0/crates/mollify-core/src/suffix.rs +322 -0
- mollify-0.1.0/crates/mollify-core/src/supplychain.rs +690 -0
- mollify-0.1.0/crates/mollify-core/src/trace.rs +87 -0
- mollify-0.1.0/crates/mollify-core/src/typehealth.rs +85 -0
- mollify-0.1.0/crates/mollify-core/src/version.rs +274 -0
- mollify-0.1.0/crates/mollify-graph/Cargo.toml +16 -0
- mollify-0.1.0/crates/mollify-graph/src/lib.rs +616 -0
- mollify-0.1.0/crates/mollify-lsp/Cargo.toml +14 -0
- mollify-0.1.0/crates/mollify-lsp/src/lib.rs +351 -0
- mollify-0.1.0/crates/mollify-mcp/Cargo.toml +17 -0
- mollify-0.1.0/crates/mollify-mcp/src/lib.rs +385 -0
- mollify-0.1.0/crates/mollify-parse/Cargo.toml +16 -0
- mollify-0.1.0/crates/mollify-parse/src/lib.rs +2140 -0
- mollify-0.1.0/crates/mollify-types/Cargo.toml +15 -0
- mollify-0.1.0/crates/mollify-types/src/lib.rs +323 -0
- mollify-0.1.0/pyproject.toml +60 -0
mollify-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1642 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys 0.61.2",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys 0.61.2",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anyhow"
|
|
72
|
+
version = "1.0.102"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "arrayvec"
|
|
78
|
+
version = "0.7.7"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "f02882884d3e1bc524fb12c79f107f6ad0e1cfd498c536ffb494301740995dfe"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "attribute-derive"
|
|
84
|
+
version = "0.10.5"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"attribute-derive-macro",
|
|
89
|
+
"derive-where",
|
|
90
|
+
"manyhow",
|
|
91
|
+
"proc-macro2",
|
|
92
|
+
"quote",
|
|
93
|
+
"syn",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "attribute-derive-macro"
|
|
98
|
+
version = "0.10.5"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"collection_literals",
|
|
103
|
+
"interpolator",
|
|
104
|
+
"manyhow",
|
|
105
|
+
"proc-macro-utils",
|
|
106
|
+
"proc-macro2",
|
|
107
|
+
"quote",
|
|
108
|
+
"quote-use",
|
|
109
|
+
"syn",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "base64"
|
|
114
|
+
version = "0.22.1"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "bitflags"
|
|
120
|
+
version = "2.13.0"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bstr"
|
|
126
|
+
version = "1.12.1"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"memchr",
|
|
131
|
+
"regex-automata",
|
|
132
|
+
"serde",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "camino"
|
|
137
|
+
version = "1.2.3"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "b4ce8d3bd5823c7504d3f579f13e7b2f3da252fcb938c594d5680ee508bf846f"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"serde_core",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "castaway"
|
|
146
|
+
version = "0.2.4"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"rustversion",
|
|
151
|
+
]
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "cc"
|
|
155
|
+
version = "1.2.65"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
|
|
158
|
+
dependencies = [
|
|
159
|
+
"find-msvc-tools",
|
|
160
|
+
"shlex",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "cfg-if"
|
|
165
|
+
version = "1.0.4"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "clap"
|
|
171
|
+
version = "4.6.1"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"clap_builder",
|
|
176
|
+
"clap_derive",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "clap_builder"
|
|
181
|
+
version = "4.6.0"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"anstream",
|
|
186
|
+
"anstyle",
|
|
187
|
+
"clap_lex",
|
|
188
|
+
"strsim",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "clap_derive"
|
|
193
|
+
version = "4.6.1"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"heck",
|
|
198
|
+
"proc-macro2",
|
|
199
|
+
"quote",
|
|
200
|
+
"syn",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "clap_lex"
|
|
205
|
+
version = "1.1.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "collection_literals"
|
|
211
|
+
version = "1.0.3"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "colorchoice"
|
|
217
|
+
version = "1.0.5"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "compact_str"
|
|
223
|
+
version = "0.9.1"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"castaway",
|
|
228
|
+
"cfg-if",
|
|
229
|
+
"itoa",
|
|
230
|
+
"rustversion",
|
|
231
|
+
"ryu",
|
|
232
|
+
"static_assertions",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "crc32fast"
|
|
237
|
+
version = "1.5.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"cfg-if",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "crossbeam-deque"
|
|
246
|
+
version = "0.8.6"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"crossbeam-epoch",
|
|
251
|
+
"crossbeam-utils",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "crossbeam-epoch"
|
|
256
|
+
version = "0.9.18"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"crossbeam-utils",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "crossbeam-utils"
|
|
265
|
+
version = "0.8.21"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "derive-where"
|
|
271
|
+
version = "1.6.1"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"proc-macro2",
|
|
276
|
+
"quote",
|
|
277
|
+
"syn",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "displaydoc"
|
|
282
|
+
version = "0.2.6"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"proc-macro2",
|
|
287
|
+
"quote",
|
|
288
|
+
"syn",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "either"
|
|
293
|
+
version = "1.16.0"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "equivalent"
|
|
299
|
+
version = "1.0.2"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "find-msvc-tools"
|
|
305
|
+
version = "0.1.9"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "flate2"
|
|
311
|
+
version = "1.1.9"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"crc32fast",
|
|
316
|
+
"miniz_oxide",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "form_urlencoded"
|
|
321
|
+
version = "1.2.2"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"percent-encoding",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "get-size-derive2"
|
|
330
|
+
version = "0.10.1"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "1da24fbda09ec01bca7cfa1797c0e520e75123bccb01dcdf9041f8aa65183bc2"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"attribute-derive",
|
|
335
|
+
"quote",
|
|
336
|
+
"syn",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "get-size2"
|
|
341
|
+
version = "0.10.1"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "823645bc6404ae2915707777061a47d3a031a9ee0bff51b34ec973df3d8d2990"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"compact_str",
|
|
346
|
+
"get-size-derive2",
|
|
347
|
+
"hashbrown",
|
|
348
|
+
"ordermap",
|
|
349
|
+
"smallvec",
|
|
350
|
+
"thin-vec",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "getopts"
|
|
355
|
+
version = "0.2.24"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"unicode-width",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "getrandom"
|
|
364
|
+
version = "0.2.17"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"cfg-if",
|
|
369
|
+
"libc",
|
|
370
|
+
"wasi",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "globset"
|
|
375
|
+
version = "0.4.18"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"aho-corasick",
|
|
380
|
+
"bstr",
|
|
381
|
+
"log",
|
|
382
|
+
"regex-automata",
|
|
383
|
+
"regex-syntax",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "hashbrown"
|
|
388
|
+
version = "0.17.1"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "heck"
|
|
394
|
+
version = "0.5.0"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "icu_collections"
|
|
400
|
+
version = "2.2.0"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"displaydoc",
|
|
405
|
+
"potential_utf",
|
|
406
|
+
"utf8_iter",
|
|
407
|
+
"yoke",
|
|
408
|
+
"zerofrom",
|
|
409
|
+
"zerovec",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "icu_locale_core"
|
|
414
|
+
version = "2.2.0"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"displaydoc",
|
|
419
|
+
"litemap",
|
|
420
|
+
"tinystr",
|
|
421
|
+
"writeable",
|
|
422
|
+
"zerovec",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "icu_normalizer"
|
|
427
|
+
version = "2.2.0"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"icu_collections",
|
|
432
|
+
"icu_normalizer_data",
|
|
433
|
+
"icu_properties",
|
|
434
|
+
"icu_provider",
|
|
435
|
+
"smallvec",
|
|
436
|
+
"zerovec",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "icu_normalizer_data"
|
|
441
|
+
version = "2.2.0"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "icu_properties"
|
|
447
|
+
version = "2.2.0"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"icu_collections",
|
|
452
|
+
"icu_locale_core",
|
|
453
|
+
"icu_properties_data",
|
|
454
|
+
"icu_provider",
|
|
455
|
+
"zerotrie",
|
|
456
|
+
"zerovec",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "icu_properties_data"
|
|
461
|
+
version = "2.2.0"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "icu_provider"
|
|
467
|
+
version = "2.2.0"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"displaydoc",
|
|
472
|
+
"icu_locale_core",
|
|
473
|
+
"writeable",
|
|
474
|
+
"yoke",
|
|
475
|
+
"zerofrom",
|
|
476
|
+
"zerotrie",
|
|
477
|
+
"zerovec",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "idna"
|
|
482
|
+
version = "1.1.0"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"idna_adapter",
|
|
487
|
+
"smallvec",
|
|
488
|
+
"utf8_iter",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "idna_adapter"
|
|
493
|
+
version = "1.2.2"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"icu_normalizer",
|
|
498
|
+
"icu_properties",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "ignore"
|
|
503
|
+
version = "0.4.26"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "b915661dd01db3f05050265b2477bcc6527b3792388e2749b41623cc592be67d"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"crossbeam-deque",
|
|
508
|
+
"globset",
|
|
509
|
+
"log",
|
|
510
|
+
"memchr",
|
|
511
|
+
"regex-automata",
|
|
512
|
+
"same-file",
|
|
513
|
+
"walkdir",
|
|
514
|
+
"winapi-util",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "include_dir"
|
|
519
|
+
version = "0.7.4"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"include_dir_macros",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "include_dir_macros"
|
|
528
|
+
version = "0.7.4"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"proc-macro2",
|
|
533
|
+
"quote",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "indexmap"
|
|
538
|
+
version = "2.14.0"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"equivalent",
|
|
543
|
+
"hashbrown",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "interpolator"
|
|
548
|
+
version = "0.5.0"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "is-macro"
|
|
554
|
+
version = "0.3.7"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"heck",
|
|
559
|
+
"proc-macro2",
|
|
560
|
+
"quote",
|
|
561
|
+
"syn",
|
|
562
|
+
]
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "is_terminal_polyfill"
|
|
566
|
+
version = "1.70.2"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "itertools"
|
|
572
|
+
version = "0.15.0"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"either",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "itoa"
|
|
581
|
+
version = "1.0.18"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "libc"
|
|
587
|
+
version = "0.2.186"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "litemap"
|
|
593
|
+
version = "0.8.2"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "log"
|
|
599
|
+
version = "0.4.33"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "manyhow"
|
|
605
|
+
version = "0.11.4"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"manyhow-macros",
|
|
610
|
+
"proc-macro2",
|
|
611
|
+
"quote",
|
|
612
|
+
"syn",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "manyhow-macros"
|
|
617
|
+
version = "0.11.4"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"proc-macro-utils",
|
|
622
|
+
"proc-macro2",
|
|
623
|
+
"quote",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "memchr"
|
|
628
|
+
version = "2.8.2"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "miniz_oxide"
|
|
634
|
+
version = "0.8.9"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"adler2",
|
|
639
|
+
"simd-adler32",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "mollify-cli"
|
|
644
|
+
version = "0.1.0"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"anyhow",
|
|
647
|
+
"camino",
|
|
648
|
+
"clap",
|
|
649
|
+
"mollify-core",
|
|
650
|
+
"mollify-lsp",
|
|
651
|
+
"mollify-mcp",
|
|
652
|
+
"mollify-types",
|
|
653
|
+
"serde_json",
|
|
654
|
+
"ureq",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "mollify-core"
|
|
659
|
+
version = "0.1.0"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"camino",
|
|
662
|
+
"include_dir",
|
|
663
|
+
"mollify-graph",
|
|
664
|
+
"mollify-parse",
|
|
665
|
+
"mollify-types",
|
|
666
|
+
"rustc-hash",
|
|
667
|
+
"serde",
|
|
668
|
+
"serde_json",
|
|
669
|
+
"toml",
|
|
670
|
+
"xxhash-rust",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "mollify-graph"
|
|
675
|
+
version = "0.1.0"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"camino",
|
|
678
|
+
"ignore",
|
|
679
|
+
"mollify-parse",
|
|
680
|
+
"rayon",
|
|
681
|
+
"rustc-hash",
|
|
682
|
+
"serde_json",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "mollify-lsp"
|
|
687
|
+
version = "0.1.0"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"camino",
|
|
690
|
+
"mollify-core",
|
|
691
|
+
"mollify-types",
|
|
692
|
+
"serde_json",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "mollify-mcp"
|
|
697
|
+
version = "0.1.0"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"camino",
|
|
700
|
+
"mollify-core",
|
|
701
|
+
"mollify-types",
|
|
702
|
+
"serde_json",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "mollify-parse"
|
|
707
|
+
version = "0.1.0"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"camino",
|
|
710
|
+
"ruff_python_ast",
|
|
711
|
+
"ruff_python_parser",
|
|
712
|
+
"ruff_source_file",
|
|
713
|
+
"ruff_text_size",
|
|
714
|
+
"thiserror",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "mollify-types"
|
|
719
|
+
version = "0.1.0"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"camino",
|
|
722
|
+
"serde",
|
|
723
|
+
"serde_json",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "once_cell"
|
|
728
|
+
version = "1.21.4"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "once_cell_polyfill"
|
|
734
|
+
version = "1.70.2"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "ordermap"
|
|
740
|
+
version = "1.2.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "7f7476a5b122ff1fce7208e7ee9dccd0a516e835f5b8b19b8f3c98a34cf757c1"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"indexmap",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "percent-encoding"
|
|
749
|
+
version = "2.3.2"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "phf"
|
|
755
|
+
version = "0.11.3"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"phf_shared",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "phf_codegen"
|
|
764
|
+
version = "0.11.3"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"phf_generator",
|
|
769
|
+
"phf_shared",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "phf_generator"
|
|
774
|
+
version = "0.11.3"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"phf_shared",
|
|
779
|
+
"rand",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "phf_shared"
|
|
784
|
+
version = "0.11.3"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"siphasher",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "potential_utf"
|
|
793
|
+
version = "0.1.5"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"zerovec",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "ppv-lite86"
|
|
802
|
+
version = "0.2.21"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"zerocopy",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "proc-macro-utils"
|
|
811
|
+
version = "0.10.0"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"proc-macro2",
|
|
816
|
+
"quote",
|
|
817
|
+
"smallvec",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "proc-macro2"
|
|
822
|
+
version = "1.0.106"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"unicode-ident",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "quote"
|
|
831
|
+
version = "1.0.46"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"proc-macro2",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "quote-use"
|
|
840
|
+
version = "0.8.4"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"quote",
|
|
845
|
+
"quote-use-macros",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "quote-use-macros"
|
|
850
|
+
version = "0.8.4"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"proc-macro-utils",
|
|
855
|
+
"proc-macro2",
|
|
856
|
+
"quote",
|
|
857
|
+
"syn",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "rand"
|
|
862
|
+
version = "0.8.6"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"libc",
|
|
867
|
+
"rand_chacha",
|
|
868
|
+
"rand_core",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "rand_chacha"
|
|
873
|
+
version = "0.3.1"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"ppv-lite86",
|
|
878
|
+
"rand_core",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "rand_core"
|
|
883
|
+
version = "0.6.4"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"getrandom",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "rayon"
|
|
892
|
+
version = "1.12.0"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"either",
|
|
897
|
+
"rayon-core",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "rayon-core"
|
|
902
|
+
version = "1.13.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"crossbeam-deque",
|
|
907
|
+
"crossbeam-utils",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "regex-automata"
|
|
912
|
+
version = "0.4.14"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"aho-corasick",
|
|
917
|
+
"memchr",
|
|
918
|
+
"regex-syntax",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "regex-syntax"
|
|
923
|
+
version = "0.8.11"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "ring"
|
|
929
|
+
version = "0.17.14"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"cc",
|
|
934
|
+
"cfg-if",
|
|
935
|
+
"getrandom",
|
|
936
|
+
"libc",
|
|
937
|
+
"untrusted",
|
|
938
|
+
"windows-sys 0.52.0",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "ruff_python_ast"
|
|
943
|
+
version = "0.0.3"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "a10ab966362319801f5e85ce5c6aeac69f0cf50936a31e888f5d004e9279f337"
|
|
946
|
+
dependencies = [
|
|
947
|
+
"aho-corasick",
|
|
948
|
+
"arrayvec",
|
|
949
|
+
"bitflags",
|
|
950
|
+
"compact_str",
|
|
951
|
+
"get-size2",
|
|
952
|
+
"is-macro",
|
|
953
|
+
"memchr",
|
|
954
|
+
"ruff_python_trivia",
|
|
955
|
+
"ruff_source_file",
|
|
956
|
+
"ruff_text_size",
|
|
957
|
+
"rustc-hash",
|
|
958
|
+
"thin-vec",
|
|
959
|
+
"thiserror",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "ruff_python_parser"
|
|
964
|
+
version = "0.0.3"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "4e3b8436fb010636ea79ce545acc3e391296ef4e804f7cef336dd5f9c8a4aa3a"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"bitflags",
|
|
969
|
+
"bstr",
|
|
970
|
+
"compact_str",
|
|
971
|
+
"get-size2",
|
|
972
|
+
"memchr",
|
|
973
|
+
"ruff_python_ast",
|
|
974
|
+
"ruff_python_trivia",
|
|
975
|
+
"ruff_text_size",
|
|
976
|
+
"rustc-hash",
|
|
977
|
+
"static_assertions",
|
|
978
|
+
"thin-vec",
|
|
979
|
+
"unicode-ident",
|
|
980
|
+
"unicode-normalization",
|
|
981
|
+
"unicode_names2",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "ruff_python_trivia"
|
|
986
|
+
version = "0.0.3"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "969e4a14b2550818efea99b9e2361c714c72e4f1fb94799251d55aed20345189"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"itertools",
|
|
991
|
+
"ruff_source_file",
|
|
992
|
+
"ruff_text_size",
|
|
993
|
+
"unicode-ident",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "ruff_source_file"
|
|
998
|
+
version = "0.0.3"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "c194e02d121e4a1744464ce3a982c4c196eb039bbf67532d18c8ce09f8da6381"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"memchr",
|
|
1003
|
+
"ruff_text_size",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "ruff_text_size"
|
|
1008
|
+
version = "0.0.3"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "c91652ad39be604bc4d5299a5d19feccdd89e255609d89a031e7bb8e0d0aef9f"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"get-size2",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "rustc-hash"
|
|
1017
|
+
version = "2.1.2"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "rustls"
|
|
1023
|
+
version = "0.23.41"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"log",
|
|
1028
|
+
"once_cell",
|
|
1029
|
+
"ring",
|
|
1030
|
+
"rustls-pki-types",
|
|
1031
|
+
"rustls-webpki",
|
|
1032
|
+
"subtle",
|
|
1033
|
+
"zeroize",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "rustls-pki-types"
|
|
1038
|
+
version = "1.14.1"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"zeroize",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "rustls-webpki"
|
|
1047
|
+
version = "0.103.13"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"ring",
|
|
1052
|
+
"rustls-pki-types",
|
|
1053
|
+
"untrusted",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "rustversion"
|
|
1058
|
+
version = "1.0.22"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "ryu"
|
|
1064
|
+
version = "1.0.23"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "same-file"
|
|
1070
|
+
version = "1.0.6"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"winapi-util",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "serde"
|
|
1079
|
+
version = "1.0.228"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"serde_core",
|
|
1084
|
+
"serde_derive",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "serde_core"
|
|
1089
|
+
version = "1.0.228"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"serde_derive",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "serde_derive"
|
|
1098
|
+
version = "1.0.228"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1101
|
+
dependencies = [
|
|
1102
|
+
"proc-macro2",
|
|
1103
|
+
"quote",
|
|
1104
|
+
"syn",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "serde_json"
|
|
1109
|
+
version = "1.0.150"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"itoa",
|
|
1114
|
+
"memchr",
|
|
1115
|
+
"serde",
|
|
1116
|
+
"serde_core",
|
|
1117
|
+
"zmij",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "serde_spanned"
|
|
1122
|
+
version = "1.1.1"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"serde_core",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "shlex"
|
|
1131
|
+
version = "2.0.1"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "simd-adler32"
|
|
1137
|
+
version = "0.3.9"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "siphasher"
|
|
1143
|
+
version = "1.0.3"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "smallvec"
|
|
1149
|
+
version = "1.15.2"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "stable_deref_trait"
|
|
1155
|
+
version = "1.2.1"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "static_assertions"
|
|
1161
|
+
version = "1.1.0"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "strsim"
|
|
1167
|
+
version = "0.11.1"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "subtle"
|
|
1173
|
+
version = "2.6.1"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "syn"
|
|
1179
|
+
version = "2.0.118"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"proc-macro2",
|
|
1184
|
+
"quote",
|
|
1185
|
+
"unicode-ident",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "synstructure"
|
|
1190
|
+
version = "0.13.2"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"proc-macro2",
|
|
1195
|
+
"quote",
|
|
1196
|
+
"syn",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "thin-vec"
|
|
1201
|
+
version = "0.2.18"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "thiserror"
|
|
1207
|
+
version = "2.0.18"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"thiserror-impl",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "thiserror-impl"
|
|
1216
|
+
version = "2.0.18"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"proc-macro2",
|
|
1221
|
+
"quote",
|
|
1222
|
+
"syn",
|
|
1223
|
+
]
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "tinystr"
|
|
1227
|
+
version = "0.8.3"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"displaydoc",
|
|
1232
|
+
"zerovec",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "tinyvec"
|
|
1237
|
+
version = "1.11.0"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"tinyvec_macros",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "tinyvec_macros"
|
|
1246
|
+
version = "0.1.1"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "toml"
|
|
1252
|
+
version = "0.9.12+spec-1.1.0"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
1255
|
+
dependencies = [
|
|
1256
|
+
"indexmap",
|
|
1257
|
+
"serde_core",
|
|
1258
|
+
"serde_spanned",
|
|
1259
|
+
"toml_datetime",
|
|
1260
|
+
"toml_parser",
|
|
1261
|
+
"toml_writer",
|
|
1262
|
+
"winnow 0.7.15",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "toml_datetime"
|
|
1267
|
+
version = "0.7.5+spec-1.1.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"serde_core",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "toml_parser"
|
|
1276
|
+
version = "1.1.2+spec-1.1.0"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"winnow 1.0.3",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "toml_writer"
|
|
1285
|
+
version = "1.1.1+spec-1.1.0"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1288
|
+
|
|
1289
|
+
[[package]]
|
|
1290
|
+
name = "unicode-ident"
|
|
1291
|
+
version = "1.0.24"
|
|
1292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1294
|
+
|
|
1295
|
+
[[package]]
|
|
1296
|
+
name = "unicode-normalization"
|
|
1297
|
+
version = "0.1.25"
|
|
1298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
1300
|
+
dependencies = [
|
|
1301
|
+
"tinyvec",
|
|
1302
|
+
]
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "unicode-width"
|
|
1306
|
+
version = "0.2.2"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "unicode_names2"
|
|
1312
|
+
version = "1.3.0"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"phf",
|
|
1317
|
+
"unicode_names2_generator",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "unicode_names2_generator"
|
|
1322
|
+
version = "1.3.0"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"getopts",
|
|
1327
|
+
"log",
|
|
1328
|
+
"phf_codegen",
|
|
1329
|
+
"rand",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "untrusted"
|
|
1334
|
+
version = "0.9.0"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "ureq"
|
|
1340
|
+
version = "2.12.1"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"base64",
|
|
1345
|
+
"flate2",
|
|
1346
|
+
"log",
|
|
1347
|
+
"once_cell",
|
|
1348
|
+
"rustls",
|
|
1349
|
+
"rustls-pki-types",
|
|
1350
|
+
"serde",
|
|
1351
|
+
"serde_json",
|
|
1352
|
+
"url",
|
|
1353
|
+
"webpki-roots 0.26.11",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "url"
|
|
1358
|
+
version = "2.5.8"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"form_urlencoded",
|
|
1363
|
+
"idna",
|
|
1364
|
+
"percent-encoding",
|
|
1365
|
+
"serde",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "utf8_iter"
|
|
1370
|
+
version = "1.0.4"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1373
|
+
|
|
1374
|
+
[[package]]
|
|
1375
|
+
name = "utf8parse"
|
|
1376
|
+
version = "0.2.2"
|
|
1377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "walkdir"
|
|
1382
|
+
version = "2.5.0"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1385
|
+
dependencies = [
|
|
1386
|
+
"same-file",
|
|
1387
|
+
"winapi-util",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "wasi"
|
|
1392
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1395
|
+
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "webpki-roots"
|
|
1398
|
+
version = "0.26.11"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
1401
|
+
dependencies = [
|
|
1402
|
+
"webpki-roots 1.0.8",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "webpki-roots"
|
|
1407
|
+
version = "1.0.8"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"rustls-pki-types",
|
|
1412
|
+
]
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "winapi-util"
|
|
1416
|
+
version = "0.1.11"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"windows-sys 0.61.2",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "windows-link"
|
|
1425
|
+
version = "0.2.1"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "windows-sys"
|
|
1431
|
+
version = "0.52.0"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"windows-targets",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "windows-sys"
|
|
1440
|
+
version = "0.61.2"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"windows-link",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "windows-targets"
|
|
1449
|
+
version = "0.52.6"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"windows_aarch64_gnullvm",
|
|
1454
|
+
"windows_aarch64_msvc",
|
|
1455
|
+
"windows_i686_gnu",
|
|
1456
|
+
"windows_i686_gnullvm",
|
|
1457
|
+
"windows_i686_msvc",
|
|
1458
|
+
"windows_x86_64_gnu",
|
|
1459
|
+
"windows_x86_64_gnullvm",
|
|
1460
|
+
"windows_x86_64_msvc",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "windows_aarch64_gnullvm"
|
|
1465
|
+
version = "0.52.6"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "windows_aarch64_msvc"
|
|
1471
|
+
version = "0.52.6"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "windows_i686_gnu"
|
|
1477
|
+
version = "0.52.6"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "windows_i686_gnullvm"
|
|
1483
|
+
version = "0.52.6"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "windows_i686_msvc"
|
|
1489
|
+
version = "0.52.6"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "windows_x86_64_gnu"
|
|
1495
|
+
version = "0.52.6"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "windows_x86_64_gnullvm"
|
|
1501
|
+
version = "0.52.6"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "windows_x86_64_msvc"
|
|
1507
|
+
version = "0.52.6"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "winnow"
|
|
1513
|
+
version = "0.7.15"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "winnow"
|
|
1519
|
+
version = "1.0.3"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "writeable"
|
|
1525
|
+
version = "0.6.3"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "xxhash-rust"
|
|
1531
|
+
version = "0.8.15"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "yoke"
|
|
1537
|
+
version = "0.8.3"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"stable_deref_trait",
|
|
1542
|
+
"yoke-derive",
|
|
1543
|
+
"zerofrom",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "yoke-derive"
|
|
1548
|
+
version = "0.8.2"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"proc-macro2",
|
|
1553
|
+
"quote",
|
|
1554
|
+
"syn",
|
|
1555
|
+
"synstructure",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "zerocopy"
|
|
1560
|
+
version = "0.8.52"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"zerocopy-derive",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "zerocopy-derive"
|
|
1569
|
+
version = "0.8.52"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"proc-macro2",
|
|
1574
|
+
"quote",
|
|
1575
|
+
"syn",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "zerofrom"
|
|
1580
|
+
version = "0.1.8"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1583
|
+
dependencies = [
|
|
1584
|
+
"zerofrom-derive",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "zerofrom-derive"
|
|
1589
|
+
version = "0.1.7"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1592
|
+
dependencies = [
|
|
1593
|
+
"proc-macro2",
|
|
1594
|
+
"quote",
|
|
1595
|
+
"syn",
|
|
1596
|
+
"synstructure",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "zeroize"
|
|
1601
|
+
version = "1.9.0"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "zerotrie"
|
|
1607
|
+
version = "0.2.4"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"displaydoc",
|
|
1612
|
+
"yoke",
|
|
1613
|
+
"zerofrom",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "zerovec"
|
|
1618
|
+
version = "0.11.6"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"yoke",
|
|
1623
|
+
"zerofrom",
|
|
1624
|
+
"zerovec-derive",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "zerovec-derive"
|
|
1629
|
+
version = "0.11.3"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"proc-macro2",
|
|
1634
|
+
"quote",
|
|
1635
|
+
"syn",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "zmij"
|
|
1640
|
+
version = "1.0.21"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|