@shortlink-org/portolan 0.2.4 → 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.
Files changed (291) hide show
  1. package/README.md +174 -6
  2. package/catalog/enum_test.go +46 -0
  3. package/catalog/evidence_test.go +35 -0
  4. package/catalog/model.go +1213 -0
  5. package/catalog/roundtrip_test.go +210 -0
  6. package/catalog/via_test.go +38 -0
  7. package/cli/init.test.mjs +6 -1
  8. package/cli/portolan.mjs +14 -1
  9. package/cli/portolan.test.mjs +49 -0
  10. package/go.mod +21 -0
  11. package/go.sum +34 -0
  12. package/internal/gocall/README.md +19 -0
  13. package/internal/gocall/analyze.go +189 -0
  14. package/internal/gocall/analyze_test.go +107 -0
  15. package/internal/gohttp/analyze.go +2562 -0
  16. package/internal/gohttp/destination.go +373 -0
  17. package/internal/gohttp/endpoints.go +1067 -0
  18. package/internal/gohttp/roots.go +320 -0
  19. package/internal/gohttp/typed.go +96 -0
  20. package/internal/goscan/constants.go +85 -0
  21. package/internal/goscan/goscan_test.go +227 -0
  22. package/internal/goscan/index.go +629 -0
  23. package/internal/goscan/index_test.go +66 -0
  24. package/internal/goscan/names.go +52 -0
  25. package/internal/goscan/parse_test.go +11 -0
  26. package/internal/goscan/source.go +37 -0
  27. package/internal/goscan/tree.go +284 -0
  28. package/internal/goscan/types.go +99 -0
  29. package/internal/wsdl/ids.go +127 -0
  30. package/internal/wsdl/ids_test.go +21 -0
  31. package/internal/wsdl/model.go +70 -0
  32. package/internal/wsdl/parse.go +949 -0
  33. package/internal/wsdl/parse_test.go +170 -0
  34. package/package.json +28 -15
  35. package/plugin/describe.go +156 -0
  36. package/plugin/describe_test.go +114 -0
  37. package/plugin/protocol.go +141 -0
  38. package/plugin/schematest/schematest.go +126 -0
  39. package/plugins/README.md +404 -50
  40. package/plugins/cmd/portolan-http-clients/main.go +19 -0
  41. package/plugins/extract-argocd/options.schema.json +44 -0
  42. package/plugins/extract-celery/extract.py +0 -2
  43. package/plugins/extract-celery/extract_test.py +1 -1
  44. package/plugins/extract-celery/main.py +1 -0
  45. package/plugins/extract-csharp-ddd/README.md +213 -0
  46. package/plugins/extract-csharp-ddd/options.schema.json +55 -0
  47. package/plugins/extract-django/README.md +52 -19
  48. package/plugins/extract-django/choices.py +47 -0
  49. package/plugins/extract-django/domain.py +30 -18
  50. package/plugins/extract-django/extract.py +21 -7
  51. package/plugins/extract-django/extract_test.py +68 -2
  52. package/plugins/extract-django/lifecycle.py +4 -28
  53. package/plugins/extract-django/main.py +1 -0
  54. package/plugins/extract-django/operations.py +1 -1
  55. package/plugins/extract-django/routing_test.py +109 -1
  56. package/plugins/extract-django/rules.py +154 -0
  57. package/plugins/extract-django/rules_test.py +158 -0
  58. package/plugins/extract-django/store.py +1 -1
  59. package/plugins/extract-django/transport.py +101 -55
  60. package/plugins/extract-django/verbs.py +241 -0
  61. package/plugins/extract-go/README.md +47 -0
  62. package/plugins/extract-go-sqs/options.schema.json +21 -0
  63. package/plugins/extract-http-clients/describe.go +20 -0
  64. package/plugins/extract-http-clients/describe_test.go +11 -0
  65. package/plugins/extract-http-clients/extract.go +740 -0
  66. package/plugins/extract-http-clients/extract_test.go +1561 -0
  67. package/plugins/extract-http-clients/main.go +41 -0
  68. package/plugins/extract-java/build/org/portolan/extract/Extract.class +0 -0
  69. package/plugins/extract-java/build/org/portolan/extract/Main.class +0 -0
  70. package/plugins/extract-java/build/org/portolan/extract/Protocol$Builder.class +0 -0
  71. package/plugins/extract-java/build/org/portolan/extract/Protocol$Input.class +0 -0
  72. package/plugins/extract-java/build/org/portolan/extract/Protocol$Options.class +0 -0
  73. package/plugins/extract-k8s/options.schema.json +32 -0
  74. package/plugins/extract-laravel/Cargo.lock +962 -0
  75. package/plugins/extract-laravel/Cargo.toml +20 -0
  76. package/plugins/extract-laravel/README.md +200 -0
  77. package/plugins/extract-laravel/options.schema.json +68 -0
  78. package/plugins/extract-laravel/rustfmt.toml +1 -0
  79. package/plugins/extract-php-ddd/Cargo.lock +972 -0
  80. package/plugins/extract-php-ddd/Cargo.toml +22 -0
  81. package/plugins/extract-php-ddd/README.md +141 -0
  82. package/plugins/extract-php-ddd/options.schema.json +50 -0
  83. package/plugins/extract-php-ddd/rustfmt.toml +1 -0
  84. package/plugins/extract-python-kafka/extract.py +0 -2
  85. package/plugins/extract-python-kafka/extract_test.py +1 -1
  86. package/plugins/extract-python-kafka/main.py +1 -0
  87. package/plugins/extract-terraform/options.schema.json +26 -0
  88. package/plugins/extract-ts/extract.test.ts +2 -2
  89. package/plugins/extract-ts/extract.ts +4 -5
  90. package/plugins/extract-ts/graphql.test.ts +1 -1
  91. package/plugins/extract-ts/main.ts +1 -0
  92. package/plugins/openapi/ids.go +261 -0
  93. package/plugins/openapi/ids_test.go +98 -0
  94. package/plugins/phpscan/Cargo.lock +953 -0
  95. package/plugins/phpscan/Cargo.toml +19 -0
  96. package/plugins/phpscan/rustfmt.toml +1 -0
  97. package/plugins/portolan-go.wasm +0 -0
  98. package/plugins/pyplugin/catalog.py +24 -1
  99. package/plugins/pyplugin/protocol.py +1 -5
  100. package/plugins/verify-otel/options.schema.json +12 -0
  101. package/portolan.json +132 -4
  102. package/rules/builtin.json +218 -0
  103. package/schema/portolan.schema.json +905 -4
  104. package/scripts/README.md +21 -13
  105. package/scripts/catalog-sources.mjs +6 -0
  106. package/scripts/delivery-presets.mjs +57 -14
  107. package/scripts/diff.mjs +5 -1
  108. package/scripts/django-aggregates.test.mjs +58 -0
  109. package/scripts/gen-likec4.mjs +150 -17
  110. package/scripts/gen-likec4.test.mjs +96 -0
  111. package/scripts/gen.mjs +148 -118
  112. package/scripts/gitops-example.test.mjs +108 -0
  113. package/scripts/go-discovery.test.mjs +30 -0
  114. package/scripts/history.mjs +186 -3
  115. package/scripts/history.test.mjs +1 -1
  116. package/scripts/host-plugins/fetch-argocd.mjs +338 -0
  117. package/scripts/host-plugins/fetch-argocd.options.json +49 -0
  118. package/scripts/host-plugins/fetch-argocd.test.mjs +274 -0
  119. package/scripts/host-plugins/fetch-bsr.mjs +1 -0
  120. package/scripts/host-plugins/fetch-csr.mjs +1 -0
  121. package/scripts/host-plugins/fetch-git.mjs +78 -21
  122. package/scripts/host-plugins/fetch-git.test.mjs +62 -8
  123. package/scripts/host-plugins/fetch-k8s.mjs +263 -0
  124. package/scripts/host-plugins/fetch-k8s.options.json +50 -0
  125. package/scripts/host-plugins/fetch-k8s.test.mjs +259 -0
  126. package/scripts/host-plugins/k8s-topology.mjs +183 -0
  127. package/scripts/json-format.mjs +192 -0
  128. package/scripts/json-format.test.mjs +97 -0
  129. package/scripts/local-api.mjs +287 -12
  130. package/scripts/local-api.test.mjs +150 -5
  131. package/scripts/local-discovery.mjs +94 -9
  132. package/scripts/manifest.mjs +14 -3
  133. package/scripts/manifest.test.mjs +24 -0
  134. package/scripts/output-diff.mjs +94 -0
  135. package/scripts/output-diff.test.mjs +36 -0
  136. package/scripts/package-smoke.mjs +62 -4
  137. package/scripts/plugin-host.mjs +45 -3
  138. package/scripts/plugin-host.test.mjs +9 -0
  139. package/scripts/plugin-wasm-worker.mjs +4 -1
  140. package/scripts/plugins-fresh.mjs +97 -0
  141. package/scripts/plugins-fresh.test.mjs +64 -0
  142. package/scripts/provenance.mjs +72 -0
  143. package/scripts/provenance.test.mjs +149 -0
  144. package/scripts/run-builtin.mjs +62 -7
  145. package/scripts/schema.mjs +167 -19
  146. package/scripts/trace-trials.mjs +176 -0
  147. package/scripts/trace-trials.test.mjs +142 -0
  148. package/scripts/warning-policy.mjs +167 -0
  149. package/scripts/warning-policy.test.mjs +93 -0
  150. package/src/app/Breadcrumbs.test.ts +3 -0
  151. package/src/app/Breadcrumbs.tsx +3 -0
  152. package/src/app/CatalogApp.tsx +2 -0
  153. package/src/app/Sidebar.tsx +3 -3
  154. package/src/app/SidebarFooter.tsx +20 -4
  155. package/src/catalog-docs.test.ts +64 -0
  156. package/src/catalog-docs.ts +35 -0
  157. package/src/catalog-error.test.ts +15 -0
  158. package/src/catalog-index.ts +25 -0
  159. package/src/catalog-model.ts +293 -5
  160. package/src/catalog-validation.ts +113 -2
  161. package/src/catalog.test.ts +40 -1
  162. package/src/chat/Starter.tsx +5 -11
  163. package/src/chat/tools.test.ts +27 -0
  164. package/src/chat/tools.ts +5 -9
  165. package/src/components/CatalogStamp.tsx +10 -8
  166. package/src/components/ChannelRows.test.tsx +76 -1
  167. package/src/components/ChannelRows.tsx +223 -60
  168. package/src/components/DeploymentRows.tsx +131 -0
  169. package/src/components/DocsLinks.test.tsx +27 -0
  170. package/src/components/DocsLinks.tsx +56 -0
  171. package/src/components/FieldTree.tsx +5 -2
  172. package/src/components/HTTPDestinationEvidence.test.tsx +23 -0
  173. package/src/components/HTTPDestinationEvidence.tsx +31 -0
  174. package/src/components/Integrations.tsx +1 -1
  175. package/src/components/MachineDocs.tsx +6 -5
  176. package/src/components/MethodRows.tsx +9 -2
  177. package/src/components/PluginIcon.tsx +77 -0
  178. package/src/components/ProblemRow.tsx +173 -153
  179. package/src/components/RelationEvidence.test.tsx +14 -0
  180. package/src/components/RelationEvidence.tsx +53 -0
  181. package/src/components/RuleMarks.tsx +22 -0
  182. package/src/components/ShapeRows.tsx +24 -20
  183. package/src/data.ts +46 -7
  184. package/src/enrich.test.ts +459 -4
  185. package/src/enrich.ts +308 -7
  186. package/src/er/ErCanvas.tsx +218 -12
  187. package/src/er/GroupNode.tsx +57 -0
  188. package/src/er/StoreHeader.tsx +1 -0
  189. package/src/er/layout.test.ts +85 -2
  190. package/src/er/layout.ts +140 -5
  191. package/src/er/spec.test.ts +17 -0
  192. package/src/er/spec.ts +23 -10
  193. package/src/flow/Recordings.test.tsx +52 -0
  194. package/src/flow/Recordings.tsx +236 -0
  195. package/src/flow/StepDetail.tsx +59 -0
  196. package/src/flow/TraceTrial.tsx +419 -0
  197. package/src/flow/evidence.test.ts +16 -0
  198. package/src/flow/evidence.ts +34 -0
  199. package/src/flow/examples.test.ts +33 -0
  200. package/src/flow/examples.ts +37 -0
  201. package/src/flow/outline.test.ts +28 -0
  202. package/src/flow/outline.ts +7 -2
  203. package/src/flow/trace-trial-resume.test.ts +42 -0
  204. package/src/flow/trace-trial-resume.ts +74 -0
  205. package/src/graph/elk.ts +78 -0
  206. package/src/index.css +68 -0
  207. package/src/landing/DraggableReveal.tsx +3 -2
  208. package/src/landing/EvidencePipeline.tsx +105 -0
  209. package/src/landing/LandingPage.tsx +17 -70
  210. package/src/landing/ProductTour.tsx +6 -6
  211. package/src/lib/all-problems.ts +27 -17
  212. package/src/lib/catalog-diff.ts +1 -1
  213. package/src/lib/centrality.test.ts +251 -0
  214. package/src/lib/centrality.ts +232 -0
  215. package/src/lib/confluence.test.ts +37 -0
  216. package/src/lib/confluence.ts +41 -0
  217. package/src/lib/context-color.ts +1 -1
  218. package/src/lib/deployment-drift.ts +22 -0
  219. package/src/lib/derive.ts +43 -69
  220. package/src/lib/django-aggregates.d.mts +9 -0
  221. package/src/lib/django-aggregates.mjs +36 -0
  222. package/src/lib/django-aggregates.test.ts +29 -0
  223. package/src/lib/django-aggregates.ts +5 -0
  224. package/src/lib/environments.test.ts +83 -0
  225. package/src/lib/environments.ts +57 -0
  226. package/src/lib/integration-url.test.ts +30 -0
  227. package/src/lib/integration-url.ts +63 -0
  228. package/src/lib/kafka-ui.ts +3 -45
  229. package/src/lib/local-api.ts +116 -4
  230. package/src/lib/notion.ts +13 -0
  231. package/src/lib/plugin-index.json +2765 -0
  232. package/src/lib/plugins.test.ts +68 -0
  233. package/src/lib/plugins.ts +264 -0
  234. package/src/lib/problem-flows.test.ts +61 -0
  235. package/src/lib/problem-flows.ts +78 -0
  236. package/src/lib/problem-rules-cel.d.mts +43 -0
  237. package/src/lib/problem-rules-cel.mjs +407 -0
  238. package/src/lib/problem-rules.test.ts +287 -0
  239. package/src/lib/problem-rules.ts +271 -0
  240. package/src/lib/problem-subjects.ts +737 -0
  241. package/src/lib/rule-entries.ts +39 -0
  242. package/src/lib/{data-problems.test.ts → rules-data.test.ts} +18 -16
  243. package/src/lib/rules-deploy.test.ts +133 -0
  244. package/src/lib/{problems.test.ts → rules-edges.test.ts} +8 -3
  245. package/src/lib/{proto-problems.test.ts → rules-proto.test.ts} +9 -25
  246. package/src/lib/{wire-problems.test.ts → rules-wire.test.ts} +13 -11
  247. package/src/lib/rules.test.ts +51 -0
  248. package/src/lib/rules.ts +86 -0
  249. package/src/lib/setup-info.test.ts +17 -0
  250. package/src/lib/setup-info.ts +58 -0
  251. package/src/lib/shape.test.ts +32 -0
  252. package/src/lib/shape.ts +30 -6
  253. package/src/lib/tech.ts +16 -0
  254. package/src/lib/trace-project.test.ts +34 -0
  255. package/src/lib/trace-project.ts +50 -0
  256. package/src/lib/use-problems.ts +23 -0
  257. package/src/lib/warnings.test.ts +63 -0
  258. package/src/lib/warnings.ts +260 -0
  259. package/src/likec4/ids.test.ts +6 -2
  260. package/src/likec4/ids.ts +43 -0
  261. package/src/main.tsx +23 -0
  262. package/src/map/ContextMapGraph.tsx +76 -32
  263. package/src/merge-deployments.test.ts +127 -0
  264. package/src/merge.test.ts +82 -0
  265. package/src/merge.ts +189 -18
  266. package/src/pages/AggregatePage.tsx +65 -14
  267. package/src/pages/ContextMap.tsx +45 -3
  268. package/src/pages/ContextPage.tsx +8 -5
  269. package/src/pages/EventPage.tsx +15 -5
  270. package/src/pages/FlowDetail.tsx +23 -2
  271. package/src/pages/GraphPage.tsx +40 -3
  272. package/src/pages/Overview.tsx +152 -12
  273. package/src/pages/PluginIndex.tsx +190 -0
  274. package/src/pages/Problems.tsx +396 -128
  275. package/src/pages/ServicePage.tsx +62 -5
  276. package/src/pages/Settings.tsx +217 -43
  277. package/src/pages/settings/AboutSettings.tsx +8 -1
  278. package/src/pages/settings/DjangoAggregateChoices.tsx +79 -0
  279. package/src/pages/settings/IntegrationsSettings.tsx +63 -17
  280. package/src/pages/settings/RecordingSettings.tsx +138 -0
  281. package/src/pages/settings/RulesSettings.tsx +825 -0
  282. package/src/routes.test.ts +9 -0
  283. package/src/routes.ts +22 -1
  284. package/src/selection/DetailPanel.tsx +15 -0
  285. package/src/virtual-provenance.d.ts +11 -0
  286. package/vite.config.ts +5 -0
  287. package/scripts/vendor-lock.mjs +0 -58
  288. package/scripts/vendor-lock.test.mjs +0 -69
  289. package/src/lib/data-problems.ts +0 -314
  290. package/src/lib/proto-problems.ts +0 -237
  291. package/src/lib/wire-problems.ts +0 -342
@@ -0,0 +1,953 @@
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 = "proc-macro2"
518
+ version = "1.0.107"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
521
+ dependencies = [
522
+ "unicode-ident",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "quote"
527
+ version = "1.0.47"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
530
+ dependencies = [
531
+ "proc-macro2",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "rand"
536
+ version = "0.8.8"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
539
+ dependencies = [
540
+ "rand_core",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "rand_core"
545
+ version = "0.6.4"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
548
+
549
+ [[package]]
550
+ name = "rayon"
551
+ version = "1.12.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
554
+ dependencies = [
555
+ "either",
556
+ "rayon-core",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "rayon-core"
561
+ version = "1.13.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
564
+ dependencies = [
565
+ "crossbeam-deque",
566
+ "crossbeam-utils",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "redox_syscall"
571
+ version = "0.5.18"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
574
+ dependencies = [
575
+ "bitflags",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "ref-cast"
580
+ version = "1.0.27"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
583
+ dependencies = [
584
+ "ref-cast-impl",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "ref-cast-impl"
589
+ version = "1.0.27"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
592
+ dependencies = [
593
+ "proc-macro2",
594
+ "quote",
595
+ "syn 3.0.5",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "regex"
600
+ version = "1.13.1"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
603
+ dependencies = [
604
+ "aho-corasick",
605
+ "memchr",
606
+ "regex-automata",
607
+ "regex-syntax",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "regex-automata"
612
+ version = "0.4.18"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
615
+ dependencies = [
616
+ "aho-corasick",
617
+ "memchr",
618
+ "regex-syntax",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "regex-syntax"
623
+ version = "0.8.11"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
626
+
627
+ [[package]]
628
+ name = "same-file"
629
+ version = "1.0.6"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
632
+ dependencies = [
633
+ "winapi-util",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "schemars"
638
+ version = "1.2.2"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
641
+ dependencies = [
642
+ "dyn-clone",
643
+ "ref-cast",
644
+ "schemars_derive",
645
+ "serde",
646
+ "serde_json",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "schemars_derive"
651
+ version = "1.2.2"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "d98c67716b46af2f0b8cf752abc930f6f9aecfbf671ecfb531db8a31dbe4e2ba"
654
+ dependencies = [
655
+ "proc-macro2",
656
+ "quote",
657
+ "serde_derive_internals",
658
+ "syn 3.0.5",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "scopeguard"
663
+ version = "1.2.0"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
666
+
667
+ [[package]]
668
+ name = "serde"
669
+ version = "1.0.229"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
672
+ dependencies = [
673
+ "serde_core",
674
+ "serde_derive",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "serde_core"
679
+ version = "1.0.229"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
682
+ dependencies = [
683
+ "serde_derive",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "serde_derive"
688
+ version = "1.0.229"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
691
+ dependencies = [
692
+ "proc-macro2",
693
+ "quote",
694
+ "syn 3.0.5",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "serde_derive_internals"
699
+ version = "0.30.0"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "f852137cce035d6a4df67ccce505ff6b3e9fd3a10e3e52b24dc71e650bb1a9bd"
702
+ dependencies = [
703
+ "proc-macro2",
704
+ "quote",
705
+ "syn 3.0.5",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "serde_json"
710
+ version = "1.0.151"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
713
+ dependencies = [
714
+ "indexmap",
715
+ "itoa",
716
+ "memchr",
717
+ "serde",
718
+ "serde_core",
719
+ "zmij",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "shlex"
724
+ version = "2.0.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
727
+
728
+ [[package]]
729
+ name = "smallvec"
730
+ version = "1.16.0"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "b9be42f50aa861c555654aa3a37f52f4b1074bacf4e48fe0ef7fa584e80f1f0f"
733
+
734
+ [[package]]
735
+ name = "strum"
736
+ version = "0.28.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
739
+ dependencies = [
740
+ "strum_macros",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "strum_macros"
745
+ version = "0.28.0"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
748
+ dependencies = [
749
+ "heck",
750
+ "proc-macro2",
751
+ "quote",
752
+ "syn 2.0.119",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "syn"
757
+ version = "2.0.119"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
760
+ dependencies = [
761
+ "proc-macro2",
762
+ "quote",
763
+ "unicode-ident",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "syn"
768
+ version = "3.0.5"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
771
+ dependencies = [
772
+ "proc-macro2",
773
+ "quote",
774
+ "unicode-ident",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "termcolor"
779
+ version = "1.4.1"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
782
+ dependencies = [
783
+ "winapi-util",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "tracing"
788
+ version = "0.1.44"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
791
+ dependencies = [
792
+ "pin-project-lite",
793
+ "tracing-attributes",
794
+ "tracing-core",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "tracing-attributes"
799
+ version = "0.1.31"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
802
+ dependencies = [
803
+ "proc-macro2",
804
+ "quote",
805
+ "syn 2.0.119",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "tracing-core"
810
+ version = "0.1.36"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
813
+ dependencies = [
814
+ "once_cell",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "unicode-ident"
819
+ version = "1.0.24"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
822
+
823
+ [[package]]
824
+ name = "unicode-width"
825
+ version = "0.2.2"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
828
+
829
+ [[package]]
830
+ name = "walkdir"
831
+ version = "2.5.0"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
834
+ dependencies = [
835
+ "same-file",
836
+ "winapi-util",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "wasi"
841
+ version = "0.11.1+wasi-snapshot-preview1"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
844
+
845
+ [[package]]
846
+ name = "winapi-util"
847
+ version = "0.1.11"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
850
+ dependencies = [
851
+ "windows-sys 0.61.2",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "windows-link"
856
+ version = "0.2.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
859
+
860
+ [[package]]
861
+ name = "windows-sys"
862
+ version = "0.60.2"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
865
+ dependencies = [
866
+ "windows-targets",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "windows-sys"
871
+ version = "0.61.2"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
874
+ dependencies = [
875
+ "windows-link",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "windows-targets"
880
+ version = "0.53.5"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
883
+ dependencies = [
884
+ "windows-link",
885
+ "windows_aarch64_gnullvm",
886
+ "windows_aarch64_msvc",
887
+ "windows_i686_gnu",
888
+ "windows_i686_gnullvm",
889
+ "windows_i686_msvc",
890
+ "windows_x86_64_gnu",
891
+ "windows_x86_64_gnullvm",
892
+ "windows_x86_64_msvc",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "windows_aarch64_gnullvm"
897
+ version = "0.53.1"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
900
+
901
+ [[package]]
902
+ name = "windows_aarch64_msvc"
903
+ version = "0.53.1"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
906
+
907
+ [[package]]
908
+ name = "windows_i686_gnu"
909
+ version = "0.53.1"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
912
+
913
+ [[package]]
914
+ name = "windows_i686_gnullvm"
915
+ version = "0.53.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
918
+
919
+ [[package]]
920
+ name = "windows_i686_msvc"
921
+ version = "0.53.1"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
924
+
925
+ [[package]]
926
+ name = "windows_x86_64_gnu"
927
+ version = "0.53.1"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
930
+
931
+ [[package]]
932
+ name = "windows_x86_64_gnullvm"
933
+ version = "0.53.1"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
936
+
937
+ [[package]]
938
+ name = "windows_x86_64_msvc"
939
+ version = "0.53.1"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
942
+
943
+ [[package]]
944
+ name = "yansi"
945
+ version = "1.0.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
948
+
949
+ [[package]]
950
+ name = "zmij"
951
+ version = "1.0.23"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"