create-backbone-template 0.1.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 +33 -0
- package/bin/create-backbone-template.js +5 -0
- package/package.json +30 -0
- package/src/create-backbone-template.js +204 -0
- package/template/.agents/skills/agent-browser/SKILL.md +55 -0
- package/template/.agents/skills/create-plan/SKILL.md +52 -0
- package/template/.agents/skills/create-plan/agents/openai.yaml +4 -0
- package/template/.agents/skills/create-pr-presentation/SKILL.md +86 -0
- package/template/.agents/skills/create-pr-presentation/agents/openai.yaml +4 -0
- package/template/.agents/skills/implement-plan/SKILL.md +26 -0
- package/template/.agents/skills/implement-plan/agents/openai.yaml +4 -0
- package/template/.agents/skills/review-plan/SKILL.md +38 -0
- package/template/.agents/skills/review-plan/agents/openai.yaml +4 -0
- package/template/.env.schema +30 -0
- package/template/.env.test +6 -0
- package/template/.oxlintrc.json +67 -0
- package/template/.vscode/extensions.json +3 -0
- package/template/.vscode/settings.json +23 -0
- package/template/AGENTS.md +55 -0
- package/template/Cargo.lock +2648 -0
- package/template/Cargo.toml +29 -0
- package/template/Justfile +140 -0
- package/template/README.md +72 -0
- package/template/TODO.md +1 -0
- package/template/_gitignore +12 -0
- package/template/buf.gen.yaml +7 -0
- package/template/buf.yaml +10 -0
- package/template/client/.oxfmtrc.json +8 -0
- package/template/client/.oxlintrc.json +57 -0
- package/template/client/README.md +19 -0
- package/template/client/_gitignore +5 -0
- package/template/client/index.html +12 -0
- package/template/client/package.json +47 -0
- package/template/client/packages/design-system/package.json +19 -0
- package/template/client/packages/design-system/src/index.ts +2 -0
- package/template/client/packages/design-system-basic/package.json +18 -0
- package/template/client/packages/design-system-basic/src/button.stories.tsx +50 -0
- package/template/client/packages/design-system-basic/src/button.tsx +26 -0
- package/template/client/packages/design-system-basic/src/empty-state.stories.tsx +18 -0
- package/template/client/packages/design-system-basic/src/empty-state.tsx +17 -0
- package/template/client/packages/design-system-basic/src/form-field.stories.tsx +15 -0
- package/template/client/packages/design-system-basic/src/form-field.tsx +10 -0
- package/template/client/packages/design-system-basic/src/form.stories.tsx +27 -0
- package/template/client/packages/design-system-basic/src/form.tsx +9 -0
- package/template/client/packages/design-system-basic/src/heading.stories.tsx +14 -0
- package/template/client/packages/design-system-basic/src/heading.tsx +25 -0
- package/template/client/packages/design-system-basic/src/index.tsx +15 -0
- package/template/client/packages/design-system-basic/src/inline.stories.tsx +13 -0
- package/template/client/packages/design-system-basic/src/inline.tsx +5 -0
- package/template/client/packages/design-system-basic/src/layout.stories.tsx +24 -0
- package/template/client/packages/design-system-basic/src/layout.tsx +14 -0
- package/template/client/packages/design-system-basic/src/loader.stories.tsx +8 -0
- package/template/client/packages/design-system-basic/src/loader.tsx +11 -0
- package/template/client/packages/design-system-basic/src/navigation.stories.tsx +16 -0
- package/template/client/packages/design-system-basic/src/navigation.tsx +18 -0
- package/template/client/packages/design-system-basic/src/notice.stories.tsx +13 -0
- package/template/client/packages/design-system-basic/src/notice.tsx +5 -0
- package/template/client/packages/design-system-basic/src/stack.stories.tsx +17 -0
- package/template/client/packages/design-system-basic/src/stack.tsx +5 -0
- package/template/client/packages/design-system-basic/src/styles.css +254 -0
- package/template/client/packages/design-system-basic/src/text-input.stories.tsx +13 -0
- package/template/client/packages/design-system-basic/src/text-input.tsx +5 -0
- package/template/client/packages/design-system-basic/src/text.stories.tsx +21 -0
- package/template/client/packages/design-system-basic/src/text.tsx +5 -0
- package/template/client/packages/design-system-contract/package.json +15 -0
- package/template/client/packages/design-system-contract/src/button.ts +10 -0
- package/template/client/packages/design-system-contract/src/empty-state.ts +9 -0
- package/template/client/packages/design-system-contract/src/form-field.ts +9 -0
- package/template/client/packages/design-system-contract/src/form.ts +9 -0
- package/template/client/packages/design-system-contract/src/heading.ts +9 -0
- package/template/client/packages/design-system-contract/src/index.ts +13 -0
- package/template/client/packages/design-system-contract/src/inline.ts +7 -0
- package/template/client/packages/design-system-contract/src/layout.ts +8 -0
- package/template/client/packages/design-system-contract/src/loader.ts +7 -0
- package/template/client/packages/design-system-contract/src/navigation.ts +13 -0
- package/template/client/packages/design-system-contract/src/notice.ts +8 -0
- package/template/client/packages/design-system-contract/src/stack.ts +8 -0
- package/template/client/packages/design-system-contract/src/text-input.ts +5 -0
- package/template/client/packages/design-system-contract/src/text.ts +9 -0
- package/template/client/packages/design-system-lint/fixtures/invalid/external-ui-import.tsx +5 -0
- package/template/client/packages/design-system-lint/fixtures/invalid/raw-dom-jsx.tsx +3 -0
- package/template/client/packages/design-system-lint/fixtures/invalid/two-violations.tsx +7 -0
- package/template/client/packages/design-system-lint/fixtures/valid/design-system-only.tsx +13 -0
- package/template/client/packages/design-system-lint/package.json +23 -0
- package/template/client/packages/design-system-lint/src/check-design-system-architecture.ts +22 -0
- package/template/client/packages/design-system-lint/src/design-system-architecture.ts +286 -0
- package/template/client/packages/design-system-lint/src/oxlint-plugin.ts +11 -0
- package/template/client/packages/design-system-lint/src/page-architecture.ts +382 -0
- package/template/client/packages/design-system-lint/src/rules.ts +111 -0
- package/template/client/packages/design-system-lint/test/design-system-architecture.test.ts +243 -0
- package/template/client/packages/design-system-lint/test/oxlint-fixtures.test.ts +159 -0
- package/template/client/packages/design-system-lint/test/page-architecture.test.ts +175 -0
- package/template/client/packages/design-system-lint/test/rules.test.ts +65 -0
- package/template/client/packages/design-system-lint/tsconfig.json +29 -0
- package/template/client/src/App.tsx +77 -0
- package/template/client/src/design-system-components.test.tsx +75 -0
- package/template/client/src/gen/helloworld/v1/helloworld_pb.ts +63 -0
- package/template/client/src/main.tsx +18 -0
- package/template/client/src/pages/hello/hello-page.stories.tsx +20 -0
- package/template/client/src/pages/hello/hello-page.test.tsx +90 -0
- package/template/client/src/pages/hello/hello-page.tsx +126 -0
- package/template/client/src/pages/page.ts +20 -0
- package/template/client/src/testing/create-preview-events.test.ts +36 -0
- package/template/client/src/testing/create-preview-events.ts +30 -0
- package/template/client/src/vite-env.d.ts +1 -0
- package/template/client/tsconfig.json +32 -0
- package/template/client/vite.config.ts +21 -0
- package/template/client/vite.ladle.config.ts +5 -0
- package/template/e2e/.gherkin-lintrc +20 -0
- package/template/e2e/.oxfmtrc.json +15 -0
- package/template/e2e/.oxlintrc.json +37 -0
- package/template/e2e/_gitignore +4 -0
- package/template/e2e/features/helloworld.feature +10 -0
- package/template/e2e/package.json +42 -0
- package/template/e2e/playwright.config.ts +16 -0
- package/template/e2e/support/app-gherkin.ts +4 -0
- package/template/e2e/support/fixtures.ts +236 -0
- package/template/e2e/support/gherkin-fixtures/duplicate-id.feature +9 -0
- package/template/e2e/support/gherkin-fixtures/duplicate-id.spec.ts +7 -0
- package/template/e2e/support/gherkin-fixtures/extra-implementation.spec.ts +7 -0
- package/template/e2e/support/gherkin-fixtures/extra-step.spec.ts +10 -0
- package/template/e2e/support/gherkin-fixtures/happy-path.spec.ts +4 -0
- package/template/e2e/support/gherkin-fixtures/missing-id.feature +4 -0
- package/template/e2e/support/gherkin-fixtures/missing-id.spec.ts +7 -0
- package/template/e2e/support/gherkin-fixtures/missing-implementation.spec.ts +7 -0
- package/template/e2e/support/gherkin-fixtures/missing-step.spec.ts +7 -0
- package/template/e2e/support/gherkin-fixtures/playwright.config.ts +7 -0
- package/template/e2e/support/gherkin-fixtures/scenario-outline.feature +9 -0
- package/template/e2e/support/gherkin-fixtures/scenario-outline.spec.ts +7 -0
- package/template/e2e/support/gherkin-fixtures/step-mismatch.spec.ts +9 -0
- package/template/e2e/support/gherkin-fixtures/valid-implementations.ts +23 -0
- package/template/e2e/support/gherkin-fixtures/valid-scenarios.feature +26 -0
- package/template/e2e/support/gherkin.test.ts +184 -0
- package/template/e2e/support/gherkin.ts +321 -0
- package/template/e2e/support/oxlint-plugin.test.ts +328 -0
- package/template/e2e/support/oxlint-plugin.ts +485 -0
- package/template/e2e/tests/helloworld.spec.ts +39 -0
- package/template/e2e/tsconfig.json +26 -0
- package/template/e2e/tsconfig.oxlint-plugin.json +12 -0
- package/template/package.json +9 -0
- package/template/pnpm-lock.yaml +10723 -0
- package/template/pnpm-workspace.yaml +8 -0
- package/template/pr-slide/README.md +95 -0
- package/template/pr-slide/package.json +23 -0
- package/template/pr-slide/src/cli.js +262 -0
- package/template/pr-slide/src/generate-pr-deck.js +833 -0
- package/template/pr-slide/src/git-context.js +91 -0
- package/template/pr-slide/src/presentation-paths.js +9 -0
- package/template/pr-slide/src/presentations.js +53 -0
- package/template/pr-slide/test/generate-pr-deck.test.js +118 -0
- package/template/pr-slide/test/presentation-paths.test.js +14 -0
- package/template/pr-slide/test/presentations.test.js +50 -0
- package/template/proto/helloworld/v1/helloworld.proto +15 -0
- package/template/scripts/run-e2e.sh +10 -0
- package/template/server/Cargo.toml +26 -0
- package/template/server/build.rs +9 -0
- package/template/server/dylint/backbone_server_lints/.cargo/config.toml +6 -0
- package/template/server/dylint/backbone_server_lints/Cargo.lock +1581 -0
- package/template/server/dylint/backbone_server_lints/Cargo.toml +21 -0
- package/template/server/dylint/backbone_server_lints/README.md +5 -0
- package/template/server/dylint/backbone_server_lints/_gitignore +1 -0
- package/template/server/dylint/backbone_server_lints/rust-toolchain +3 -0
- package/template/server/dylint/backbone_server_lints/src/lib.rs +612 -0
- package/template/server/dylint/backbone_server_lints/ui/lib.rs +4 -0
- package/template/server/dylint/backbone_server_lints/ui/lib.stderr +10 -0
- package/template/server/dylint/backbone_server_lints/ui/long_file.rs +303 -0
- package/template/server/dylint/backbone_server_lints/ui/long_file.stderr +6 -0
- package/template/server/dylint/backbone_server_lints/ui/main.rs +59 -0
- package/template/server/dylint/backbone_server_lints/ui/main.stderr +85 -0
- package/template/server/migrations/20260520120000_create_projects.sql +12 -0
- package/template/server/migrations/20260524160000_create_hello_world_inputs.sql +12 -0
- package/template/server/src/config.rs +27 -0
- package/template/server/src/db/hello_world.rs +34 -0
- package/template/server/src/db/hello_world_tests.rs +11 -0
- package/template/server/src/db/mod.rs +39 -0
- package/template/server/src/lib.rs +10 -0
- package/template/server/src/main.rs +43 -0
- package/template/server/src/rpc/greeter/mod.rs +31 -0
- package/template/server/src/rpc/greeter/say_hello.rs +27 -0
- package/template/server/src/rpc/mod.rs +8 -0
- package/template/server/src/state.rs +13 -0
- package/template/skills-lock.json +11 -0
|
@@ -0,0 +1,1581 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anstream"
|
|
16
|
+
version = "1.0.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"anstyle",
|
|
21
|
+
"anstyle-parse",
|
|
22
|
+
"anstyle-query",
|
|
23
|
+
"anstyle-wincon",
|
|
24
|
+
"colorchoice",
|
|
25
|
+
"is_terminal_polyfill",
|
|
26
|
+
"utf8parse",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anstyle"
|
|
31
|
+
version = "1.0.14"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-parse"
|
|
37
|
+
version = "1.0.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"utf8parse",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-query"
|
|
46
|
+
version = "1.1.5"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"windows-sys 0.61.2",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle-wincon"
|
|
55
|
+
version = "3.0.11"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"anstyle",
|
|
60
|
+
"once_cell_polyfill",
|
|
61
|
+
"windows-sys 0.61.2",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anyhow"
|
|
66
|
+
version = "1.0.102"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "backbone_server_lints"
|
|
72
|
+
version = "0.1.0"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"dylint_linting",
|
|
75
|
+
"dylint_testing",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "bitflags"
|
|
80
|
+
version = "2.11.1"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "camino"
|
|
86
|
+
version = "1.2.2"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"serde_core",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "cargo-platform"
|
|
95
|
+
version = "0.3.3"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
|
|
98
|
+
dependencies = [
|
|
99
|
+
"serde",
|
|
100
|
+
"serde_core",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "cargo_metadata"
|
|
105
|
+
version = "0.23.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"camino",
|
|
110
|
+
"cargo-platform",
|
|
111
|
+
"semver",
|
|
112
|
+
"serde",
|
|
113
|
+
"serde_json",
|
|
114
|
+
"thiserror 2.0.18",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "cc"
|
|
119
|
+
version = "1.2.62"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"find-msvc-tools",
|
|
124
|
+
"jobserver",
|
|
125
|
+
"libc",
|
|
126
|
+
"shlex",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "cfg-if"
|
|
131
|
+
version = "1.0.4"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "colorchoice"
|
|
137
|
+
version = "1.0.5"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "compiletest_rs"
|
|
143
|
+
version = "0.11.2"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "f150fe9105fcd2a57cad53f0c079a24de65195903ef670990f5909f695eac04c"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"diff",
|
|
148
|
+
"filetime",
|
|
149
|
+
"getopts",
|
|
150
|
+
"lazy_static",
|
|
151
|
+
"libc",
|
|
152
|
+
"log",
|
|
153
|
+
"miow",
|
|
154
|
+
"regex",
|
|
155
|
+
"rustfix",
|
|
156
|
+
"serde",
|
|
157
|
+
"serde_derive",
|
|
158
|
+
"serde_json",
|
|
159
|
+
"tester",
|
|
160
|
+
"windows-sys 0.59.0",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "diff"
|
|
165
|
+
version = "0.1.13"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "dirs-next"
|
|
171
|
+
version = "2.0.0"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"cfg-if",
|
|
176
|
+
"dirs-sys-next",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "dirs-sys-next"
|
|
181
|
+
version = "0.1.2"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"libc",
|
|
186
|
+
"redox_users",
|
|
187
|
+
"winapi",
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "displaydoc"
|
|
192
|
+
version = "0.2.5"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"proc-macro2",
|
|
197
|
+
"quote",
|
|
198
|
+
"syn",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "dylint"
|
|
203
|
+
version = "6.0.0"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "b795f98802f87352aab60584eea87f942c53ab30edcafab4b31a6cbdd9e8a3ac"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"anstyle",
|
|
208
|
+
"anyhow",
|
|
209
|
+
"cargo_metadata",
|
|
210
|
+
"dylint_internal",
|
|
211
|
+
"log",
|
|
212
|
+
"once_cell",
|
|
213
|
+
"semver",
|
|
214
|
+
"serde",
|
|
215
|
+
"serde_json",
|
|
216
|
+
"tempfile",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "dylint_internal"
|
|
221
|
+
version = "6.0.0"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "a03ff51e671fceef87e50fef97ddc1569241af242d76e0b367dfcc812c860eb0"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"anstyle",
|
|
226
|
+
"anyhow",
|
|
227
|
+
"bitflags",
|
|
228
|
+
"cargo_metadata",
|
|
229
|
+
"git2",
|
|
230
|
+
"home",
|
|
231
|
+
"log",
|
|
232
|
+
"regex",
|
|
233
|
+
"serde",
|
|
234
|
+
"tar",
|
|
235
|
+
"thiserror 2.0.18",
|
|
236
|
+
"toml",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "dylint_linting"
|
|
241
|
+
version = "6.0.0"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "c3efcb9b741bccdd6f1ce701c4b17b452112e8c0cd045c8b894a112584ff5d55"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"cargo_metadata",
|
|
246
|
+
"dylint_internal",
|
|
247
|
+
"paste",
|
|
248
|
+
"rustversion",
|
|
249
|
+
"serde",
|
|
250
|
+
"thiserror 2.0.18",
|
|
251
|
+
"toml",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "dylint_testing"
|
|
256
|
+
version = "6.0.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "2eaa3ca6e1f740cd587630c321f61927b4cafdc2abf7c2fbacc3fca8635fcc48"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"anyhow",
|
|
261
|
+
"cargo_metadata",
|
|
262
|
+
"compiletest_rs",
|
|
263
|
+
"dylint",
|
|
264
|
+
"dylint_internal",
|
|
265
|
+
"env_logger",
|
|
266
|
+
"once_cell",
|
|
267
|
+
"regex",
|
|
268
|
+
"serde_json",
|
|
269
|
+
"tempfile",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "env_filter"
|
|
274
|
+
version = "1.0.1"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"log",
|
|
279
|
+
"regex",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "env_logger"
|
|
284
|
+
version = "0.11.10"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"anstream",
|
|
289
|
+
"anstyle",
|
|
290
|
+
"env_filter",
|
|
291
|
+
"jiff",
|
|
292
|
+
"log",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "equivalent"
|
|
297
|
+
version = "1.0.2"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "errno"
|
|
303
|
+
version = "0.3.14"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"libc",
|
|
308
|
+
"windows-sys 0.61.2",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "fastrand"
|
|
313
|
+
version = "2.4.1"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "filetime"
|
|
319
|
+
version = "0.2.29"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"cfg-if",
|
|
324
|
+
"libc",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "find-msvc-tools"
|
|
329
|
+
version = "0.1.9"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "foldhash"
|
|
335
|
+
version = "0.1.5"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "form_urlencoded"
|
|
341
|
+
version = "1.2.2"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"percent-encoding",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "getopts"
|
|
350
|
+
version = "0.2.24"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"unicode-width",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "getrandom"
|
|
359
|
+
version = "0.2.17"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"cfg-if",
|
|
364
|
+
"libc",
|
|
365
|
+
"wasi",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "getrandom"
|
|
370
|
+
version = "0.3.4"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"cfg-if",
|
|
375
|
+
"libc",
|
|
376
|
+
"r-efi 5.3.0",
|
|
377
|
+
"wasip2",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "getrandom"
|
|
382
|
+
version = "0.4.2"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"cfg-if",
|
|
387
|
+
"libc",
|
|
388
|
+
"r-efi 6.0.0",
|
|
389
|
+
"wasip2",
|
|
390
|
+
"wasip3",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "git2"
|
|
395
|
+
version = "0.20.4"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"bitflags",
|
|
400
|
+
"libc",
|
|
401
|
+
"libgit2-sys",
|
|
402
|
+
"log",
|
|
403
|
+
"openssl-probe",
|
|
404
|
+
"openssl-sys",
|
|
405
|
+
"url",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "hashbrown"
|
|
410
|
+
version = "0.15.5"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"foldhash",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "hashbrown"
|
|
419
|
+
version = "0.17.1"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "heck"
|
|
425
|
+
version = "0.5.0"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "hermit-abi"
|
|
431
|
+
version = "0.5.2"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "home"
|
|
437
|
+
version = "0.5.12"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"windows-sys 0.61.2",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "icu_collections"
|
|
446
|
+
version = "2.2.0"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
449
|
+
dependencies = [
|
|
450
|
+
"displaydoc",
|
|
451
|
+
"potential_utf",
|
|
452
|
+
"utf8_iter",
|
|
453
|
+
"yoke",
|
|
454
|
+
"zerofrom",
|
|
455
|
+
"zerovec",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "icu_locale_core"
|
|
460
|
+
version = "2.2.0"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"displaydoc",
|
|
465
|
+
"litemap",
|
|
466
|
+
"tinystr",
|
|
467
|
+
"writeable",
|
|
468
|
+
"zerovec",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "icu_normalizer"
|
|
473
|
+
version = "2.2.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"icu_collections",
|
|
478
|
+
"icu_normalizer_data",
|
|
479
|
+
"icu_properties",
|
|
480
|
+
"icu_provider",
|
|
481
|
+
"smallvec",
|
|
482
|
+
"zerovec",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "icu_normalizer_data"
|
|
487
|
+
version = "2.2.0"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "icu_properties"
|
|
493
|
+
version = "2.2.0"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"icu_collections",
|
|
498
|
+
"icu_locale_core",
|
|
499
|
+
"icu_properties_data",
|
|
500
|
+
"icu_provider",
|
|
501
|
+
"zerotrie",
|
|
502
|
+
"zerovec",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "icu_properties_data"
|
|
507
|
+
version = "2.2.0"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "icu_provider"
|
|
513
|
+
version = "2.2.0"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"displaydoc",
|
|
518
|
+
"icu_locale_core",
|
|
519
|
+
"writeable",
|
|
520
|
+
"yoke",
|
|
521
|
+
"zerofrom",
|
|
522
|
+
"zerotrie",
|
|
523
|
+
"zerovec",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "id-arena"
|
|
528
|
+
version = "2.3.0"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "idna"
|
|
534
|
+
version = "1.1.0"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"idna_adapter",
|
|
539
|
+
"smallvec",
|
|
540
|
+
"utf8_iter",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "idna_adapter"
|
|
545
|
+
version = "1.2.2"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"icu_normalizer",
|
|
550
|
+
"icu_properties",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "indexmap"
|
|
555
|
+
version = "2.14.0"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"equivalent",
|
|
560
|
+
"hashbrown 0.17.1",
|
|
561
|
+
"serde",
|
|
562
|
+
"serde_core",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "is_terminal_polyfill"
|
|
567
|
+
version = "1.70.2"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "itoa"
|
|
573
|
+
version = "1.0.18"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "jiff"
|
|
579
|
+
version = "0.2.24"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"jiff-static",
|
|
584
|
+
"log",
|
|
585
|
+
"portable-atomic",
|
|
586
|
+
"portable-atomic-util",
|
|
587
|
+
"serde_core",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "jiff-static"
|
|
592
|
+
version = "0.2.24"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"proc-macro2",
|
|
597
|
+
"quote",
|
|
598
|
+
"syn",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "jobserver"
|
|
603
|
+
version = "0.1.34"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"getrandom 0.3.4",
|
|
608
|
+
"libc",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "lazy_static"
|
|
613
|
+
version = "1.5.0"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "leb128fmt"
|
|
619
|
+
version = "0.1.0"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "libc"
|
|
625
|
+
version = "0.2.186"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "libgit2-sys"
|
|
631
|
+
version = "0.18.4+1.9.3"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "9b26f66f35e1871b22efcf7191564123d2a446ca0538cde63c23adfefa9b15b7"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"cc",
|
|
636
|
+
"libc",
|
|
637
|
+
"libssh2-sys",
|
|
638
|
+
"libz-sys",
|
|
639
|
+
"openssl-sys",
|
|
640
|
+
"pkg-config",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "libredox"
|
|
645
|
+
version = "0.1.16"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"libc",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "libssh2-sys"
|
|
654
|
+
version = "0.3.1"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "220e4f05ad4a218192533b300327f5150e809b54c4ec83b5a1d91833601811b9"
|
|
657
|
+
dependencies = [
|
|
658
|
+
"cc",
|
|
659
|
+
"libc",
|
|
660
|
+
"libz-sys",
|
|
661
|
+
"openssl-sys",
|
|
662
|
+
"pkg-config",
|
|
663
|
+
"vcpkg",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "libz-sys"
|
|
668
|
+
version = "1.1.28"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"cc",
|
|
673
|
+
"libc",
|
|
674
|
+
"pkg-config",
|
|
675
|
+
"vcpkg",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "linux-raw-sys"
|
|
680
|
+
version = "0.12.1"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "litemap"
|
|
686
|
+
version = "0.8.2"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "log"
|
|
692
|
+
version = "0.4.29"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "memchr"
|
|
698
|
+
version = "2.8.0"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "miow"
|
|
704
|
+
version = "0.6.1"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "536bfad37a309d62069485248eeaba1e8d9853aaf951caaeaed0585a95346f08"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"windows-sys 0.61.2",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "num_cpus"
|
|
713
|
+
version = "1.17.0"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"hermit-abi",
|
|
718
|
+
"libc",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "once_cell"
|
|
723
|
+
version = "1.21.4"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "once_cell_polyfill"
|
|
729
|
+
version = "1.70.2"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "openssl-probe"
|
|
735
|
+
version = "0.1.6"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "openssl-sys"
|
|
741
|
+
version = "0.9.116"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
|
|
744
|
+
dependencies = [
|
|
745
|
+
"cc",
|
|
746
|
+
"libc",
|
|
747
|
+
"pkg-config",
|
|
748
|
+
"vcpkg",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "paste"
|
|
753
|
+
version = "1.0.15"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "percent-encoding"
|
|
759
|
+
version = "2.3.2"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "pin-project-lite"
|
|
765
|
+
version = "0.2.17"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "pkg-config"
|
|
771
|
+
version = "0.3.33"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "portable-atomic"
|
|
777
|
+
version = "1.13.1"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "portable-atomic-util"
|
|
783
|
+
version = "0.2.7"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"portable-atomic",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "potential_utf"
|
|
792
|
+
version = "0.1.5"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"zerovec",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "prettyplease"
|
|
801
|
+
version = "0.2.37"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"proc-macro2",
|
|
806
|
+
"syn",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "proc-macro2"
|
|
811
|
+
version = "1.0.106"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"unicode-ident",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "quote"
|
|
820
|
+
version = "1.0.45"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"proc-macro2",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "r-efi"
|
|
829
|
+
version = "5.3.0"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "r-efi"
|
|
835
|
+
version = "6.0.0"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "redox_users"
|
|
841
|
+
version = "0.4.6"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"getrandom 0.2.17",
|
|
846
|
+
"libredox",
|
|
847
|
+
"thiserror 1.0.69",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "regex"
|
|
852
|
+
version = "1.12.3"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"aho-corasick",
|
|
857
|
+
"memchr",
|
|
858
|
+
"regex-automata",
|
|
859
|
+
"regex-syntax",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "regex-automata"
|
|
864
|
+
version = "0.4.14"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"aho-corasick",
|
|
869
|
+
"memchr",
|
|
870
|
+
"regex-syntax",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "regex-syntax"
|
|
875
|
+
version = "0.8.10"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "rustfix"
|
|
881
|
+
version = "0.8.7"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "82fa69b198d894d84e23afde8e9ab2af4400b2cba20d6bf2b428a8b01c222c5a"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"serde",
|
|
886
|
+
"serde_json",
|
|
887
|
+
"thiserror 1.0.69",
|
|
888
|
+
"tracing",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "rustix"
|
|
893
|
+
version = "1.1.4"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"bitflags",
|
|
898
|
+
"errno",
|
|
899
|
+
"libc",
|
|
900
|
+
"linux-raw-sys",
|
|
901
|
+
"windows-sys 0.61.2",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "rustversion"
|
|
906
|
+
version = "1.0.22"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "semver"
|
|
912
|
+
version = "1.0.28"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"serde",
|
|
917
|
+
"serde_core",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "serde"
|
|
922
|
+
version = "1.0.228"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"serde_core",
|
|
927
|
+
"serde_derive",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "serde_core"
|
|
932
|
+
version = "1.0.228"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"serde_derive",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "serde_derive"
|
|
941
|
+
version = "1.0.228"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"proc-macro2",
|
|
946
|
+
"quote",
|
|
947
|
+
"syn",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "serde_json"
|
|
952
|
+
version = "1.0.149"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"itoa",
|
|
957
|
+
"memchr",
|
|
958
|
+
"serde",
|
|
959
|
+
"serde_core",
|
|
960
|
+
"zmij",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "serde_spanned"
|
|
965
|
+
version = "1.1.1"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
968
|
+
dependencies = [
|
|
969
|
+
"serde_core",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "shlex"
|
|
974
|
+
version = "1.3.0"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "smallvec"
|
|
980
|
+
version = "1.15.1"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "stable_deref_trait"
|
|
986
|
+
version = "1.2.1"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "syn"
|
|
992
|
+
version = "2.0.117"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"proc-macro2",
|
|
997
|
+
"quote",
|
|
998
|
+
"unicode-ident",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "synstructure"
|
|
1003
|
+
version = "0.13.2"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"proc-macro2",
|
|
1008
|
+
"quote",
|
|
1009
|
+
"syn",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "tar"
|
|
1014
|
+
version = "0.4.46"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"filetime",
|
|
1019
|
+
"libc",
|
|
1020
|
+
"xattr",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "tempfile"
|
|
1025
|
+
version = "3.27.0"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"fastrand",
|
|
1030
|
+
"getrandom 0.4.2",
|
|
1031
|
+
"once_cell",
|
|
1032
|
+
"rustix",
|
|
1033
|
+
"windows-sys 0.61.2",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "term"
|
|
1038
|
+
version = "0.7.0"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"dirs-next",
|
|
1043
|
+
"rustversion",
|
|
1044
|
+
"winapi",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "tester"
|
|
1049
|
+
version = "0.9.1"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "89e8bf7e0eb2dd7b4228cc1b6821fc5114cd6841ae59f652a85488c016091e5f"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"cfg-if",
|
|
1054
|
+
"getopts",
|
|
1055
|
+
"libc",
|
|
1056
|
+
"num_cpus",
|
|
1057
|
+
"term",
|
|
1058
|
+
]
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "thiserror"
|
|
1062
|
+
version = "1.0.69"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1065
|
+
dependencies = [
|
|
1066
|
+
"thiserror-impl 1.0.69",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "thiserror"
|
|
1071
|
+
version = "2.0.18"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"thiserror-impl 2.0.18",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "thiserror-impl"
|
|
1080
|
+
version = "1.0.69"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"proc-macro2",
|
|
1085
|
+
"quote",
|
|
1086
|
+
"syn",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "thiserror-impl"
|
|
1091
|
+
version = "2.0.18"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"proc-macro2",
|
|
1096
|
+
"quote",
|
|
1097
|
+
"syn",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "tinystr"
|
|
1102
|
+
version = "0.8.3"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"displaydoc",
|
|
1107
|
+
"zerovec",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "toml"
|
|
1112
|
+
version = "1.1.2+spec-1.1.0"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"indexmap",
|
|
1117
|
+
"serde_core",
|
|
1118
|
+
"serde_spanned",
|
|
1119
|
+
"toml_datetime",
|
|
1120
|
+
"toml_parser",
|
|
1121
|
+
"toml_writer",
|
|
1122
|
+
"winnow",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "toml_datetime"
|
|
1127
|
+
version = "1.1.1+spec-1.1.0"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"serde_core",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "toml_parser"
|
|
1136
|
+
version = "1.1.2+spec-1.1.0"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"winnow",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "toml_writer"
|
|
1145
|
+
version = "1.1.1+spec-1.1.0"
|
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "tracing"
|
|
1151
|
+
version = "0.1.44"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"pin-project-lite",
|
|
1156
|
+
"tracing-core",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "tracing-core"
|
|
1161
|
+
version = "0.1.36"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1164
|
+
dependencies = [
|
|
1165
|
+
"once_cell",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "unicode-ident"
|
|
1170
|
+
version = "1.0.24"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "unicode-width"
|
|
1176
|
+
version = "0.2.2"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "unicode-xid"
|
|
1182
|
+
version = "0.2.6"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "url"
|
|
1188
|
+
version = "2.5.8"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"form_urlencoded",
|
|
1193
|
+
"idna",
|
|
1194
|
+
"percent-encoding",
|
|
1195
|
+
"serde",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "utf8_iter"
|
|
1200
|
+
version = "1.0.4"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "utf8parse"
|
|
1206
|
+
version = "0.2.2"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "vcpkg"
|
|
1212
|
+
version = "0.2.15"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1215
|
+
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "wasi"
|
|
1218
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "wasip2"
|
|
1224
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1227
|
+
dependencies = [
|
|
1228
|
+
"wit-bindgen 0.57.1",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "wasip3"
|
|
1233
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1236
|
+
dependencies = [
|
|
1237
|
+
"wit-bindgen 0.51.0",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "wasm-encoder"
|
|
1242
|
+
version = "0.244.0"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1245
|
+
dependencies = [
|
|
1246
|
+
"leb128fmt",
|
|
1247
|
+
"wasmparser",
|
|
1248
|
+
]
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "wasm-metadata"
|
|
1252
|
+
version = "0.244.0"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1255
|
+
dependencies = [
|
|
1256
|
+
"anyhow",
|
|
1257
|
+
"indexmap",
|
|
1258
|
+
"wasm-encoder",
|
|
1259
|
+
"wasmparser",
|
|
1260
|
+
]
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "wasmparser"
|
|
1264
|
+
version = "0.244.0"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"bitflags",
|
|
1269
|
+
"hashbrown 0.15.5",
|
|
1270
|
+
"indexmap",
|
|
1271
|
+
"semver",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "winapi"
|
|
1276
|
+
version = "0.3.9"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"winapi-i686-pc-windows-gnu",
|
|
1281
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1286
|
+
version = "0.4.0"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1292
|
+
version = "0.4.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "windows-link"
|
|
1298
|
+
version = "0.2.1"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "windows-sys"
|
|
1304
|
+
version = "0.59.0"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"windows-targets",
|
|
1309
|
+
]
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "windows-sys"
|
|
1313
|
+
version = "0.61.2"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"windows-link",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "windows-targets"
|
|
1322
|
+
version = "0.52.6"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"windows_aarch64_gnullvm",
|
|
1327
|
+
"windows_aarch64_msvc",
|
|
1328
|
+
"windows_i686_gnu",
|
|
1329
|
+
"windows_i686_gnullvm",
|
|
1330
|
+
"windows_i686_msvc",
|
|
1331
|
+
"windows_x86_64_gnu",
|
|
1332
|
+
"windows_x86_64_gnullvm",
|
|
1333
|
+
"windows_x86_64_msvc",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "windows_aarch64_gnullvm"
|
|
1338
|
+
version = "0.52.6"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "windows_aarch64_msvc"
|
|
1344
|
+
version = "0.52.6"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "windows_i686_gnu"
|
|
1350
|
+
version = "0.52.6"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "windows_i686_gnullvm"
|
|
1356
|
+
version = "0.52.6"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "windows_i686_msvc"
|
|
1362
|
+
version = "0.52.6"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "windows_x86_64_gnu"
|
|
1368
|
+
version = "0.52.6"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "windows_x86_64_gnullvm"
|
|
1374
|
+
version = "0.52.6"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "windows_x86_64_msvc"
|
|
1380
|
+
version = "0.52.6"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "winnow"
|
|
1386
|
+
version = "1.0.3"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "wit-bindgen"
|
|
1392
|
+
version = "0.51.0"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"wit-bindgen-rust-macro",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "wit-bindgen"
|
|
1401
|
+
version = "0.57.1"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "wit-bindgen-core"
|
|
1407
|
+
version = "0.51.0"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"anyhow",
|
|
1412
|
+
"heck",
|
|
1413
|
+
"wit-parser",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "wit-bindgen-rust"
|
|
1418
|
+
version = "0.51.0"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"anyhow",
|
|
1423
|
+
"heck",
|
|
1424
|
+
"indexmap",
|
|
1425
|
+
"prettyplease",
|
|
1426
|
+
"syn",
|
|
1427
|
+
"wasm-metadata",
|
|
1428
|
+
"wit-bindgen-core",
|
|
1429
|
+
"wit-component",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "wit-bindgen-rust-macro"
|
|
1434
|
+
version = "0.51.0"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"anyhow",
|
|
1439
|
+
"prettyplease",
|
|
1440
|
+
"proc-macro2",
|
|
1441
|
+
"quote",
|
|
1442
|
+
"syn",
|
|
1443
|
+
"wit-bindgen-core",
|
|
1444
|
+
"wit-bindgen-rust",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "wit-component"
|
|
1449
|
+
version = "0.244.0"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"anyhow",
|
|
1454
|
+
"bitflags",
|
|
1455
|
+
"indexmap",
|
|
1456
|
+
"log",
|
|
1457
|
+
"serde",
|
|
1458
|
+
"serde_derive",
|
|
1459
|
+
"serde_json",
|
|
1460
|
+
"wasm-encoder",
|
|
1461
|
+
"wasm-metadata",
|
|
1462
|
+
"wasmparser",
|
|
1463
|
+
"wit-parser",
|
|
1464
|
+
]
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "wit-parser"
|
|
1468
|
+
version = "0.244.0"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"anyhow",
|
|
1473
|
+
"id-arena",
|
|
1474
|
+
"indexmap",
|
|
1475
|
+
"log",
|
|
1476
|
+
"semver",
|
|
1477
|
+
"serde",
|
|
1478
|
+
"serde_derive",
|
|
1479
|
+
"serde_json",
|
|
1480
|
+
"unicode-xid",
|
|
1481
|
+
"wasmparser",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "writeable"
|
|
1486
|
+
version = "0.6.3"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "xattr"
|
|
1492
|
+
version = "1.6.1"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"libc",
|
|
1497
|
+
"rustix",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "yoke"
|
|
1502
|
+
version = "0.8.2"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"stable_deref_trait",
|
|
1507
|
+
"yoke-derive",
|
|
1508
|
+
"zerofrom",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "yoke-derive"
|
|
1513
|
+
version = "0.8.2"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1516
|
+
dependencies = [
|
|
1517
|
+
"proc-macro2",
|
|
1518
|
+
"quote",
|
|
1519
|
+
"syn",
|
|
1520
|
+
"synstructure",
|
|
1521
|
+
]
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "zerofrom"
|
|
1525
|
+
version = "0.1.8"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1528
|
+
dependencies = [
|
|
1529
|
+
"zerofrom-derive",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "zerofrom-derive"
|
|
1534
|
+
version = "0.1.7"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"proc-macro2",
|
|
1539
|
+
"quote",
|
|
1540
|
+
"syn",
|
|
1541
|
+
"synstructure",
|
|
1542
|
+
]
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "zerotrie"
|
|
1546
|
+
version = "0.2.4"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"displaydoc",
|
|
1551
|
+
"yoke",
|
|
1552
|
+
"zerofrom",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "zerovec"
|
|
1557
|
+
version = "0.11.6"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1560
|
+
dependencies = [
|
|
1561
|
+
"yoke",
|
|
1562
|
+
"zerofrom",
|
|
1563
|
+
"zerovec-derive",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "zerovec-derive"
|
|
1568
|
+
version = "0.11.3"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"proc-macro2",
|
|
1573
|
+
"quote",
|
|
1574
|
+
"syn",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "zmij"
|
|
1579
|
+
version = "1.0.21"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|