@shortlink-org/portolan 0.3.0 → 0.4.0
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.
- package/README.md +151 -6
- package/catalog/model.go +147 -0
- package/catalog/roundtrip_test.go +7 -0
- package/cli/portolan.mjs +6 -1
- package/go.mod +7 -0
- package/go.sum +20 -6
- package/package.json +10 -9
- package/plugin/describe.go +38 -0
- package/plugins/README.md +296 -5
- package/plugins/extract-argocd/options.schema.json +44 -0
- package/plugins/extract-celery/main.py +1 -0
- package/plugins/extract-csharp-ddd/README.md +213 -0
- package/plugins/extract-csharp-ddd/options.schema.json +55 -0
- package/plugins/extract-django/README.md +13 -2
- package/plugins/extract-django/choices.py +47 -0
- package/plugins/extract-django/domain.py +2 -1
- package/plugins/extract-django/extract_test.py +13 -0
- package/plugins/extract-django/lifecycle.py +2 -28
- package/plugins/extract-django/main.py +1 -0
- package/plugins/extract-django/rules.py +154 -0
- package/plugins/extract-django/rules_test.py +158 -0
- package/plugins/extract-go-sqs/options.schema.json +21 -0
- package/plugins/extract-http-clients/describe.go +5 -4
- package/plugins/extract-java/build/org/portolan/extract/Main.class +0 -0
- package/plugins/extract-k8s/options.schema.json +32 -0
- package/plugins/extract-laravel/Cargo.lock +962 -0
- package/plugins/extract-laravel/Cargo.toml +20 -0
- package/plugins/extract-laravel/README.md +200 -0
- package/plugins/extract-laravel/options.schema.json +68 -0
- package/plugins/extract-laravel/rustfmt.toml +1 -0
- package/plugins/extract-php-ddd/Cargo.lock +972 -0
- package/plugins/extract-php-ddd/Cargo.toml +22 -0
- package/plugins/extract-php-ddd/README.md +141 -0
- package/plugins/extract-php-ddd/options.schema.json +50 -0
- package/plugins/extract-php-ddd/rustfmt.toml +1 -0
- package/plugins/extract-python-kafka/main.py +1 -0
- package/plugins/extract-terraform/options.schema.json +26 -0
- package/plugins/extract-ts/main.ts +1 -0
- package/plugins/phpscan/Cargo.lock +953 -0
- package/plugins/phpscan/Cargo.toml +19 -0
- package/plugins/phpscan/rustfmt.toml +1 -0
- package/plugins/portolan-go.wasm +0 -0
- package/plugins/pyplugin/catalog.py +24 -1
- package/plugins/verify-otel/options.schema.json +12 -0
- package/portolan.json +130 -3
- package/rules/builtin.json +218 -0
- package/schema/portolan.schema.json +880 -13
- package/scripts/README.md +3 -1
- package/scripts/delivery-presets.mjs +36 -3
- package/scripts/gen-likec4.mjs +149 -16
- package/scripts/gen-likec4.test.mjs +96 -0
- package/scripts/gen.mjs +30 -3
- package/scripts/gitops-example.test.mjs +108 -0
- package/scripts/host-plugins/fetch-argocd.mjs +338 -0
- package/scripts/host-plugins/fetch-argocd.options.json +49 -0
- package/scripts/host-plugins/fetch-argocd.test.mjs +274 -0
- package/scripts/host-plugins/fetch-bsr.mjs +1 -0
- package/scripts/host-plugins/fetch-csr.mjs +1 -0
- package/scripts/host-plugins/fetch-git.mjs +1 -0
- package/scripts/host-plugins/fetch-k8s.mjs +263 -0
- package/scripts/host-plugins/fetch-k8s.options.json +50 -0
- package/scripts/host-plugins/fetch-k8s.test.mjs +259 -0
- package/scripts/host-plugins/k8s-topology.mjs +183 -0
- package/scripts/json-format.mjs +192 -0
- package/scripts/json-format.test.mjs +97 -0
- package/scripts/local-api.mjs +216 -8
- package/scripts/local-api.test.mjs +88 -2
- package/scripts/local-discovery.mjs +12 -0
- package/scripts/manifest.mjs +10 -1
- package/scripts/plugin-host.mjs +23 -1
- package/scripts/plugins-fresh.mjs +97 -0
- package/scripts/plugins-fresh.test.mjs +64 -0
- package/scripts/run-builtin.mjs +26 -5
- package/scripts/schema.mjs +138 -19
- package/scripts/trace-trials.mjs +176 -0
- package/scripts/trace-trials.test.mjs +142 -0
- package/scripts/warning-policy.mjs +12 -6
- package/scripts/warning-policy.test.mjs +40 -3
- package/src/app/Breadcrumbs.test.ts +3 -0
- package/src/app/Breadcrumbs.tsx +3 -0
- package/src/app/CatalogApp.tsx +2 -0
- package/src/app/SidebarFooter.tsx +20 -4
- package/src/catalog-index.ts +25 -0
- package/src/catalog-model.ts +246 -1
- package/src/catalog-validation.ts +104 -2
- package/src/catalog.test.ts +40 -1
- package/src/components/ChannelRows.test.tsx +76 -1
- package/src/components/ChannelRows.tsx +223 -60
- package/src/components/DeploymentRows.tsx +131 -0
- package/src/components/DocsLinks.test.tsx +27 -0
- package/src/components/DocsLinks.tsx +56 -0
- package/src/components/FieldTree.tsx +5 -2
- package/src/components/HTTPDestinationEvidence.tsx +1 -1
- package/src/components/PluginIcon.tsx +77 -0
- package/src/components/ProblemRow.tsx +173 -153
- package/src/components/RuleMarks.tsx +22 -0
- package/src/components/ShapeRows.tsx +24 -20
- package/src/data.ts +21 -0
- package/src/enrich.test.ts +127 -3
- package/src/enrich.ts +104 -6
- package/src/er/ErCanvas.tsx +218 -12
- package/src/er/GroupNode.tsx +57 -0
- package/src/er/StoreHeader.tsx +1 -0
- package/src/er/layout.test.ts +85 -2
- package/src/er/layout.ts +140 -5
- package/src/er/spec.test.ts +17 -0
- package/src/er/spec.ts +23 -10
- package/src/flow/Recordings.test.tsx +52 -0
- package/src/flow/Recordings.tsx +236 -0
- package/src/flow/StepDetail.tsx +53 -0
- package/src/flow/TraceTrial.tsx +419 -0
- package/src/flow/examples.test.ts +33 -0
- package/src/flow/examples.ts +37 -0
- package/src/flow/outline.test.ts +28 -0
- package/src/flow/outline.ts +7 -2
- package/src/flow/trace-trial-resume.test.ts +42 -0
- package/src/flow/trace-trial-resume.ts +74 -0
- package/src/graph/elk.ts +78 -0
- package/src/index.css +24 -0
- package/src/landing/LandingPage.tsx +15 -11
- package/src/landing/ProductTour.tsx +6 -6
- package/src/lib/all-problems.ts +27 -17
- package/src/lib/centrality.test.ts +251 -0
- package/src/lib/centrality.ts +232 -0
- package/src/lib/confluence.test.ts +37 -0
- package/src/lib/confluence.ts +41 -0
- package/src/lib/context-color.ts +1 -1
- package/src/lib/deployment-drift.ts +22 -0
- package/src/lib/derive.ts +43 -69
- package/src/lib/environments.test.ts +83 -0
- package/src/lib/environments.ts +57 -0
- package/src/lib/integration-url.test.ts +30 -0
- package/src/lib/integration-url.ts +63 -0
- package/src/lib/kafka-ui.ts +3 -45
- package/src/lib/local-api.ts +96 -2
- package/src/lib/notion.ts +13 -0
- package/src/lib/plugin-index.json +2765 -0
- package/src/lib/plugins.test.ts +68 -0
- package/src/lib/plugins.ts +264 -0
- package/src/lib/problem-flows.test.ts +61 -0
- package/src/lib/problem-flows.ts +78 -0
- package/src/lib/problem-rules-cel.d.mts +43 -0
- package/src/lib/problem-rules-cel.mjs +407 -0
- package/src/lib/problem-rules.test.ts +287 -0
- package/src/lib/problem-rules.ts +271 -0
- package/src/lib/problem-subjects.ts +737 -0
- package/src/lib/rule-entries.ts +39 -0
- package/src/lib/{data-problems.test.ts → rules-data.test.ts} +18 -16
- package/src/lib/rules-deploy.test.ts +133 -0
- package/src/lib/{problems.test.ts → rules-edges.test.ts} +8 -3
- package/src/lib/{proto-problems.test.ts → rules-proto.test.ts} +9 -25
- package/src/lib/{wire-problems.test.ts → rules-wire.test.ts} +13 -11
- package/src/lib/rules.test.ts +51 -0
- package/src/lib/rules.ts +86 -0
- package/src/lib/shape.test.ts +32 -0
- package/src/lib/shape.ts +30 -6
- package/src/lib/tech.ts +16 -0
- package/src/lib/trace-project.test.ts +34 -0
- package/src/lib/trace-project.ts +50 -0
- package/src/lib/use-problems.ts +23 -0
- package/src/lib/warnings.test.ts +9 -0
- package/src/lib/warnings.ts +10 -10
- package/src/likec4/ids.test.ts +6 -2
- package/src/likec4/ids.ts +43 -0
- package/src/main.tsx +23 -0
- package/src/merge-deployments.test.ts +127 -0
- package/src/merge.test.ts +82 -0
- package/src/merge.ts +173 -9
- package/src/pages/AggregatePage.tsx +57 -7
- package/src/pages/ContextMap.tsx +45 -3
- package/src/pages/ContextPage.tsx +2 -0
- package/src/pages/EventPage.tsx +15 -5
- package/src/pages/FlowDetail.tsx +23 -2
- package/src/pages/GraphPage.tsx +40 -3
- package/src/pages/Overview.tsx +152 -12
- package/src/pages/PluginIndex.tsx +190 -0
- package/src/pages/Problems.tsx +396 -128
- package/src/pages/ServicePage.tsx +58 -2
- package/src/pages/Settings.tsx +28 -2
- package/src/pages/settings/AboutSettings.tsx +8 -1
- package/src/pages/settings/IntegrationsSettings.tsx +63 -17
- package/src/pages/settings/RecordingSettings.tsx +138 -0
- package/src/pages/settings/RulesSettings.tsx +825 -0
- package/src/routes.test.ts +9 -0
- package/src/routes.ts +22 -1
- package/src/lib/data-problems.ts +0 -314
- package/src/lib/proto-problems.ts +0 -237
- package/src/lib/wire-problems.ts +0 -342
|
@@ -0,0 +1,972 @@
|
|
|
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.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
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 = "ariadne"
|
|
22
|
+
version = "0.6.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "8454c8a44ce2cb9cc7e7fae67fc6128465b343b92c6631e94beca3c8d1524ea5"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"unicode-width",
|
|
27
|
+
"yansi",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[[package]]
|
|
31
|
+
name = "arrayvec"
|
|
32
|
+
version = "0.7.8"
|
|
33
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
35
|
+
|
|
36
|
+
[[package]]
|
|
37
|
+
name = "autocfg"
|
|
38
|
+
version = "1.5.1"
|
|
39
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
40
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "bitflags"
|
|
44
|
+
version = "2.13.2"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "blake3"
|
|
50
|
+
version = "1.8.7"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"
|
|
53
|
+
dependencies = [
|
|
54
|
+
"arrayvec",
|
|
55
|
+
"cc",
|
|
56
|
+
"cfg-if",
|
|
57
|
+
"constant_time_eq",
|
|
58
|
+
"cpufeatures",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "blink-alloc"
|
|
63
|
+
version = "0.3.1"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "e669f146bb8b2327006ed94c69cf78c8ec81c100192564654230a40b4f091d82"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"allocator-api2",
|
|
68
|
+
"parking_lot",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "bstr"
|
|
73
|
+
version = "1.13.1"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"memchr",
|
|
78
|
+
"serde_core",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "cc"
|
|
83
|
+
version = "1.4.5"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"find-msvc-tools",
|
|
88
|
+
"shlex",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "cfg-if"
|
|
93
|
+
version = "1.0.4"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "codespan-reporting"
|
|
99
|
+
version = "0.13.1"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"serde",
|
|
104
|
+
"termcolor",
|
|
105
|
+
"unicode-width",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "constant_time_eq"
|
|
110
|
+
version = "0.4.2"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "cpufeatures"
|
|
116
|
+
version = "0.3.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"libc",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "crossbeam-deque"
|
|
125
|
+
version = "0.8.8"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"crossbeam-epoch",
|
|
130
|
+
"crossbeam-utils",
|
|
131
|
+
]
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "crossbeam-epoch"
|
|
135
|
+
version = "0.9.21"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"crossbeam-utils",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "crossbeam-utils"
|
|
144
|
+
version = "0.8.23"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "dyn-clone"
|
|
150
|
+
version = "1.0.20"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "either"
|
|
156
|
+
version = "1.18.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "equivalent"
|
|
162
|
+
version = "1.0.2"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "find-msvc-tools"
|
|
168
|
+
version = "0.1.12"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "foldhash"
|
|
174
|
+
version = "0.2.0"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "fsevent-sys"
|
|
180
|
+
version = "4.1.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"libc",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "glob"
|
|
189
|
+
version = "0.3.4"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "globset"
|
|
195
|
+
version = "0.4.20"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "07c34a9410465b45bd9787443bc7370f37735bad04b0f0cd57ff1a3186c98988"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"aho-corasick",
|
|
200
|
+
"bstr",
|
|
201
|
+
"log",
|
|
202
|
+
"regex-automata",
|
|
203
|
+
"regex-syntax",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "hashbrown"
|
|
208
|
+
version = "0.17.1"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"allocator-api2",
|
|
213
|
+
"equivalent",
|
|
214
|
+
"foldhash",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "heck"
|
|
219
|
+
version = "0.5.0"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "indexmap"
|
|
225
|
+
version = "2.14.2"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"equivalent",
|
|
230
|
+
"hashbrown",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "inotify"
|
|
235
|
+
version = "0.11.5"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "4cc00ea907cab49550b7da656f80ebb97be1b997d931fbcd28d39734e17ce592"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"bitflags",
|
|
240
|
+
"inotify-sys",
|
|
241
|
+
"libc",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "inotify-sys"
|
|
246
|
+
version = "0.1.8"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"libc",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "itoa"
|
|
255
|
+
version = "1.0.18"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "kqueue"
|
|
261
|
+
version = "1.2.1"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "8d763e5b24120b4ddf50de6c92308156765aabfbbccebf401da7cff2d70a41ea"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"kqueue-sys",
|
|
266
|
+
"libc",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "kqueue-sys"
|
|
271
|
+
version = "1.1.2"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"bitflags",
|
|
276
|
+
"libc",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "libc"
|
|
281
|
+
version = "0.2.189"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "lock_api"
|
|
287
|
+
version = "0.4.14"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"scopeguard",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "log"
|
|
296
|
+
version = "0.4.34"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "mago-allocator"
|
|
302
|
+
version = "1.48.1"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "ac5fcb5ff2404cd4b614a75a5193757f12fd7efbf056fe9336686ca5ae7c68f4"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"allocator-api2",
|
|
307
|
+
"blink-alloc",
|
|
308
|
+
"hashbrown",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "mago-database"
|
|
313
|
+
version = "1.48.1"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "51ca05278b086b3b66a91bce765b27ba2e28aad46a593536f3007f60ea370dd7"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"foldhash",
|
|
318
|
+
"glob",
|
|
319
|
+
"globset",
|
|
320
|
+
"memchr",
|
|
321
|
+
"notify",
|
|
322
|
+
"rayon",
|
|
323
|
+
"tracing",
|
|
324
|
+
"walkdir",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "mago-php-version"
|
|
329
|
+
version = "1.48.1"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "9002dae30dfc1d47ce0335f351d795625e8fb5c88e5ac406f5755796e27b26a7"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"schemars",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "mago-reporting"
|
|
338
|
+
version = "1.48.1"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "5036f7a07db5f19c51340aed8eac78694251a81c83133e53c1bcd9e662b90ec0"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"ariadne",
|
|
343
|
+
"blake3",
|
|
344
|
+
"codespan-reporting",
|
|
345
|
+
"foldhash",
|
|
346
|
+
"mago-database",
|
|
347
|
+
"mago-span",
|
|
348
|
+
"mago-text-edit",
|
|
349
|
+
"regex",
|
|
350
|
+
"schemars",
|
|
351
|
+
"strum",
|
|
352
|
+
"termcolor",
|
|
353
|
+
"tracing",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "mago-span"
|
|
358
|
+
version = "1.48.1"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "af2f7ffcca8083075cc0cb9f27fac781ceda0c988af5d17242b6d81164162814"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"mago-database",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "mago-syntax"
|
|
367
|
+
version = "1.48.1"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "b53990fb8923a7dba0f0871743165d142c7db377008ebcb13f8126e0a59c04bb"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"mago-allocator",
|
|
372
|
+
"mago-database",
|
|
373
|
+
"mago-php-version",
|
|
374
|
+
"mago-reporting",
|
|
375
|
+
"mago-span",
|
|
376
|
+
"mago-syntax-core",
|
|
377
|
+
"memchr",
|
|
378
|
+
"ordered-float",
|
|
379
|
+
"paste",
|
|
380
|
+
"strum",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "mago-syntax-core"
|
|
385
|
+
version = "1.48.1"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "56af18119b743b01e56c8b4f81c4310b27864c886d7149d01dafe66062ce1e58"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"mago-allocator",
|
|
390
|
+
"mago-database",
|
|
391
|
+
"mago-span",
|
|
392
|
+
"memchr",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "mago-text-edit"
|
|
397
|
+
version = "1.48.1"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "7b278352be8fd8b49e8be178b5b3babb7fd8fe35ccceeacb9e4a4dc1036fd32c"
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "memchr"
|
|
403
|
+
version = "2.8.3"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "mio"
|
|
409
|
+
version = "1.2.3"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"libc",
|
|
414
|
+
"log",
|
|
415
|
+
"wasi",
|
|
416
|
+
"windows-sys 0.61.2",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "notify"
|
|
421
|
+
version = "8.2.0"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"bitflags",
|
|
426
|
+
"fsevent-sys",
|
|
427
|
+
"inotify",
|
|
428
|
+
"kqueue",
|
|
429
|
+
"libc",
|
|
430
|
+
"log",
|
|
431
|
+
"mio",
|
|
432
|
+
"notify-types",
|
|
433
|
+
"walkdir",
|
|
434
|
+
"windows-sys 0.60.2",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "notify-types"
|
|
439
|
+
version = "2.1.0"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"bitflags",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "num-traits"
|
|
448
|
+
version = "0.2.19"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"autocfg",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "once_cell"
|
|
457
|
+
version = "1.21.4"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "ordered-float"
|
|
463
|
+
version = "5.5.0"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "8c7c9e0d9b23589f26070720bac724174bfec1083e82f7854cdd0267518343c0"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"num-traits",
|
|
468
|
+
"rand",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "parking_lot"
|
|
473
|
+
version = "0.12.5"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"lock_api",
|
|
478
|
+
"parking_lot_core",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "parking_lot_core"
|
|
483
|
+
version = "0.9.12"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"cfg-if",
|
|
488
|
+
"libc",
|
|
489
|
+
"redox_syscall",
|
|
490
|
+
"smallvec",
|
|
491
|
+
"windows-link",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "paste"
|
|
496
|
+
version = "1.0.15"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "phpscan"
|
|
502
|
+
version = "0.1.0"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"mago-allocator",
|
|
505
|
+
"mago-database",
|
|
506
|
+
"mago-span",
|
|
507
|
+
"mago-syntax",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "pin-project-lite"
|
|
512
|
+
version = "0.2.17"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "portolan-extract-php-ddd"
|
|
518
|
+
version = "0.1.0"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"phpscan",
|
|
521
|
+
"roxmltree",
|
|
522
|
+
"serde",
|
|
523
|
+
"serde_json",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "proc-macro2"
|
|
528
|
+
version = "1.0.107"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"unicode-ident",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "quote"
|
|
537
|
+
version = "1.0.47"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"proc-macro2",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "rand"
|
|
546
|
+
version = "0.8.8"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"rand_core",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "rand_core"
|
|
555
|
+
version = "0.6.4"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "rayon"
|
|
561
|
+
version = "1.12.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"either",
|
|
566
|
+
"rayon-core",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "rayon-core"
|
|
571
|
+
version = "1.13.0"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"crossbeam-deque",
|
|
576
|
+
"crossbeam-utils",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "redox_syscall"
|
|
581
|
+
version = "0.5.18"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"bitflags",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "ref-cast"
|
|
590
|
+
version = "1.0.27"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"ref-cast-impl",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "ref-cast-impl"
|
|
599
|
+
version = "1.0.27"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"proc-macro2",
|
|
604
|
+
"quote",
|
|
605
|
+
"syn 3.0.5",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "regex"
|
|
610
|
+
version = "1.13.1"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"aho-corasick",
|
|
615
|
+
"memchr",
|
|
616
|
+
"regex-automata",
|
|
617
|
+
"regex-syntax",
|
|
618
|
+
]
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "regex-automata"
|
|
622
|
+
version = "0.4.18"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"aho-corasick",
|
|
627
|
+
"memchr",
|
|
628
|
+
"regex-syntax",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "regex-syntax"
|
|
633
|
+
version = "0.8.11"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "roxmltree"
|
|
639
|
+
version = "0.21.1"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"memchr",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "same-file"
|
|
648
|
+
version = "1.0.6"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"winapi-util",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "schemars"
|
|
657
|
+
version = "1.2.2"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
|
|
660
|
+
dependencies = [
|
|
661
|
+
"dyn-clone",
|
|
662
|
+
"ref-cast",
|
|
663
|
+
"schemars_derive",
|
|
664
|
+
"serde",
|
|
665
|
+
"serde_json",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "schemars_derive"
|
|
670
|
+
version = "1.2.2"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "d98c67716b46af2f0b8cf752abc930f6f9aecfbf671ecfb531db8a31dbe4e2ba"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"proc-macro2",
|
|
675
|
+
"quote",
|
|
676
|
+
"serde_derive_internals",
|
|
677
|
+
"syn 3.0.5",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "scopeguard"
|
|
682
|
+
version = "1.2.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "serde"
|
|
688
|
+
version = "1.0.229"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"serde_core",
|
|
693
|
+
"serde_derive",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "serde_core"
|
|
698
|
+
version = "1.0.229"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"serde_derive",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "serde_derive"
|
|
707
|
+
version = "1.0.229"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"proc-macro2",
|
|
712
|
+
"quote",
|
|
713
|
+
"syn 3.0.5",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "serde_derive_internals"
|
|
718
|
+
version = "0.30.0"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "f852137cce035d6a4df67ccce505ff6b3e9fd3a10e3e52b24dc71e650bb1a9bd"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"proc-macro2",
|
|
723
|
+
"quote",
|
|
724
|
+
"syn 3.0.5",
|
|
725
|
+
]
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "serde_json"
|
|
729
|
+
version = "1.0.151"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"indexmap",
|
|
734
|
+
"itoa",
|
|
735
|
+
"memchr",
|
|
736
|
+
"serde",
|
|
737
|
+
"serde_core",
|
|
738
|
+
"zmij",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "shlex"
|
|
743
|
+
version = "2.0.1"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "smallvec"
|
|
749
|
+
version = "1.16.0"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "b9be42f50aa861c555654aa3a37f52f4b1074bacf4e48fe0ef7fa584e80f1f0f"
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "strum"
|
|
755
|
+
version = "0.28.0"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"strum_macros",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "strum_macros"
|
|
764
|
+
version = "0.28.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"heck",
|
|
769
|
+
"proc-macro2",
|
|
770
|
+
"quote",
|
|
771
|
+
"syn 2.0.119",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "syn"
|
|
776
|
+
version = "2.0.119"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"proc-macro2",
|
|
781
|
+
"quote",
|
|
782
|
+
"unicode-ident",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "syn"
|
|
787
|
+
version = "3.0.5"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"proc-macro2",
|
|
792
|
+
"quote",
|
|
793
|
+
"unicode-ident",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "termcolor"
|
|
798
|
+
version = "1.4.1"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"winapi-util",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "tracing"
|
|
807
|
+
version = "0.1.44"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"pin-project-lite",
|
|
812
|
+
"tracing-attributes",
|
|
813
|
+
"tracing-core",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "tracing-attributes"
|
|
818
|
+
version = "0.1.31"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"proc-macro2",
|
|
823
|
+
"quote",
|
|
824
|
+
"syn 2.0.119",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "tracing-core"
|
|
829
|
+
version = "0.1.36"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"once_cell",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "unicode-ident"
|
|
838
|
+
version = "1.0.24"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "unicode-width"
|
|
844
|
+
version = "0.2.2"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "walkdir"
|
|
850
|
+
version = "2.5.0"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"same-file",
|
|
855
|
+
"winapi-util",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "wasi"
|
|
860
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "winapi-util"
|
|
866
|
+
version = "0.1.11"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"windows-sys 0.61.2",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "windows-link"
|
|
875
|
+
version = "0.2.1"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "windows-sys"
|
|
881
|
+
version = "0.60.2"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"windows-targets",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "windows-sys"
|
|
890
|
+
version = "0.61.2"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"windows-link",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "windows-targets"
|
|
899
|
+
version = "0.53.5"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"windows-link",
|
|
904
|
+
"windows_aarch64_gnullvm",
|
|
905
|
+
"windows_aarch64_msvc",
|
|
906
|
+
"windows_i686_gnu",
|
|
907
|
+
"windows_i686_gnullvm",
|
|
908
|
+
"windows_i686_msvc",
|
|
909
|
+
"windows_x86_64_gnu",
|
|
910
|
+
"windows_x86_64_gnullvm",
|
|
911
|
+
"windows_x86_64_msvc",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "windows_aarch64_gnullvm"
|
|
916
|
+
version = "0.53.1"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "windows_aarch64_msvc"
|
|
922
|
+
version = "0.53.1"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "windows_i686_gnu"
|
|
928
|
+
version = "0.53.1"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "windows_i686_gnullvm"
|
|
934
|
+
version = "0.53.1"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "windows_i686_msvc"
|
|
940
|
+
version = "0.53.1"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "windows_x86_64_gnu"
|
|
946
|
+
version = "0.53.1"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "windows_x86_64_gnullvm"
|
|
952
|
+
version = "0.53.1"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "windows_x86_64_msvc"
|
|
958
|
+
version = "0.53.1"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "yansi"
|
|
964
|
+
version = "1.0.1"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "zmij"
|
|
970
|
+
version = "1.0.23"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|