@hasna/terminal 2.2.0 → 2.3.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/dist/cli.js +29 -12
- package/package.json +1 -1
- package/src/ai.ts +50 -36
- package/src/cli.tsx +29 -12
- package/src/context-hints.ts +89 -0
- package/src/discover.ts +238 -0
- package/src/economy.ts +53 -0
- package/src/output-store.ts +65 -0
- package/src/providers/index.ts +4 -4
- package/src/sessions-db.ts +81 -0
- package/temp/rtk/.claude/agents/code-reviewer.md +221 -0
- package/temp/rtk/.claude/agents/debugger.md +519 -0
- package/temp/rtk/.claude/agents/rtk-testing-specialist.md +461 -0
- package/temp/rtk/.claude/agents/rust-rtk.md +511 -0
- package/temp/rtk/.claude/agents/technical-writer.md +355 -0
- package/temp/rtk/.claude/commands/diagnose.md +352 -0
- package/temp/rtk/.claude/commands/test-routing.md +362 -0
- package/temp/rtk/.claude/hooks/bash/pre-commit-format.sh +16 -0
- package/temp/rtk/.claude/hooks/rtk-rewrite.sh +70 -0
- package/temp/rtk/.claude/hooks/rtk-suggest.sh +152 -0
- package/temp/rtk/.claude/rules/cli-testing.md +526 -0
- package/temp/rtk/.claude/skills/issue-triage/SKILL.md +348 -0
- package/temp/rtk/.claude/skills/issue-triage/templates/issue-comment.md +134 -0
- package/temp/rtk/.claude/skills/performance.md +435 -0
- package/temp/rtk/.claude/skills/pr-triage/SKILL.md +315 -0
- package/temp/rtk/.claude/skills/pr-triage/templates/review-comment.md +71 -0
- package/temp/rtk/.claude/skills/repo-recap.md +206 -0
- package/temp/rtk/.claude/skills/rtk-tdd/SKILL.md +78 -0
- package/temp/rtk/.claude/skills/rtk-tdd/references/testing-patterns.md +124 -0
- package/temp/rtk/.claude/skills/security-guardian.md +503 -0
- package/temp/rtk/.claude/skills/ship.md +404 -0
- package/temp/rtk/.github/workflows/benchmark.yml +34 -0
- package/temp/rtk/.github/workflows/dco-check.yaml +12 -0
- package/temp/rtk/.github/workflows/release-please.yml +51 -0
- package/temp/rtk/.github/workflows/release.yml +343 -0
- package/temp/rtk/.github/workflows/security-check.yml +135 -0
- package/temp/rtk/.github/workflows/validate-docs.yml +78 -0
- package/temp/rtk/.release-please-manifest.json +3 -0
- package/temp/rtk/ARCHITECTURE.md +1491 -0
- package/temp/rtk/CHANGELOG.md +640 -0
- package/temp/rtk/CLAUDE.md +605 -0
- package/temp/rtk/CONTRIBUTING.md +199 -0
- package/temp/rtk/Cargo.lock +1668 -0
- package/temp/rtk/Cargo.toml +64 -0
- package/temp/rtk/Formula/rtk.rb +43 -0
- package/temp/rtk/INSTALL.md +390 -0
- package/temp/rtk/LICENSE +21 -0
- package/temp/rtk/README.md +386 -0
- package/temp/rtk/README_es.md +159 -0
- package/temp/rtk/README_fr.md +197 -0
- package/temp/rtk/README_ja.md +159 -0
- package/temp/rtk/README_ko.md +159 -0
- package/temp/rtk/README_zh.md +167 -0
- package/temp/rtk/ROADMAP.md +15 -0
- package/temp/rtk/SECURITY.md +217 -0
- package/temp/rtk/TEST_EXEC_TIME.md +102 -0
- package/temp/rtk/build.rs +57 -0
- package/temp/rtk/docs/AUDIT_GUIDE.md +432 -0
- package/temp/rtk/docs/FEATURES.md +1410 -0
- package/temp/rtk/docs/TROUBLESHOOTING.md +309 -0
- package/temp/rtk/docs/filter-workflow.md +102 -0
- package/temp/rtk/docs/images/gain-dashboard.jpg +0 -0
- package/temp/rtk/docs/tracking.md +583 -0
- package/temp/rtk/hooks/opencode-rtk.ts +39 -0
- package/temp/rtk/hooks/rtk-awareness.md +29 -0
- package/temp/rtk/hooks/rtk-rewrite.sh +61 -0
- package/temp/rtk/hooks/test-rtk-rewrite.sh +442 -0
- package/temp/rtk/install.sh +124 -0
- package/temp/rtk/release-please-config.json +10 -0
- package/temp/rtk/scripts/benchmark.sh +592 -0
- package/temp/rtk/scripts/check-installation.sh +162 -0
- package/temp/rtk/scripts/install-local.sh +37 -0
- package/temp/rtk/scripts/rtk-economics.sh +137 -0
- package/temp/rtk/scripts/test-all.sh +561 -0
- package/temp/rtk/scripts/test-aristote.sh +227 -0
- package/temp/rtk/scripts/test-tracking.sh +79 -0
- package/temp/rtk/scripts/update-readme-metrics.sh +32 -0
- package/temp/rtk/scripts/validate-docs.sh +73 -0
- package/temp/rtk/src/aws_cmd.rs +880 -0
- package/temp/rtk/src/binlog.rs +1645 -0
- package/temp/rtk/src/cargo_cmd.rs +1727 -0
- package/temp/rtk/src/cc_economics.rs +1157 -0
- package/temp/rtk/src/ccusage.rs +340 -0
- package/temp/rtk/src/config.rs +187 -0
- package/temp/rtk/src/container.rs +855 -0
- package/temp/rtk/src/curl_cmd.rs +134 -0
- package/temp/rtk/src/deps.rs +268 -0
- package/temp/rtk/src/diff_cmd.rs +367 -0
- package/temp/rtk/src/discover/mod.rs +274 -0
- package/temp/rtk/src/discover/provider.rs +388 -0
- package/temp/rtk/src/discover/registry.rs +2022 -0
- package/temp/rtk/src/discover/report.rs +202 -0
- package/temp/rtk/src/discover/rules.rs +667 -0
- package/temp/rtk/src/display_helpers.rs +402 -0
- package/temp/rtk/src/dotnet_cmd.rs +1771 -0
- package/temp/rtk/src/dotnet_format_report.rs +133 -0
- package/temp/rtk/src/dotnet_trx.rs +593 -0
- package/temp/rtk/src/env_cmd.rs +204 -0
- package/temp/rtk/src/filter.rs +462 -0
- package/temp/rtk/src/filters/README.md +52 -0
- package/temp/rtk/src/filters/ansible-playbook.toml +34 -0
- package/temp/rtk/src/filters/basedpyright.toml +47 -0
- package/temp/rtk/src/filters/biome.toml +45 -0
- package/temp/rtk/src/filters/brew-install.toml +37 -0
- package/temp/rtk/src/filters/composer-install.toml +40 -0
- package/temp/rtk/src/filters/df.toml +16 -0
- package/temp/rtk/src/filters/dotnet-build.toml +64 -0
- package/temp/rtk/src/filters/du.toml +16 -0
- package/temp/rtk/src/filters/fail2ban-client.toml +15 -0
- package/temp/rtk/src/filters/gcc.toml +49 -0
- package/temp/rtk/src/filters/gcloud.toml +22 -0
- package/temp/rtk/src/filters/hadolint.toml +24 -0
- package/temp/rtk/src/filters/helm.toml +29 -0
- package/temp/rtk/src/filters/iptables.toml +27 -0
- package/temp/rtk/src/filters/jj.toml +28 -0
- package/temp/rtk/src/filters/jq.toml +24 -0
- package/temp/rtk/src/filters/make.toml +41 -0
- package/temp/rtk/src/filters/markdownlint.toml +24 -0
- package/temp/rtk/src/filters/mix-compile.toml +27 -0
- package/temp/rtk/src/filters/mix-format.toml +15 -0
- package/temp/rtk/src/filters/mvn-build.toml +44 -0
- package/temp/rtk/src/filters/oxlint.toml +43 -0
- package/temp/rtk/src/filters/ping.toml +63 -0
- package/temp/rtk/src/filters/pio-run.toml +40 -0
- package/temp/rtk/src/filters/poetry-install.toml +50 -0
- package/temp/rtk/src/filters/pre-commit.toml +35 -0
- package/temp/rtk/src/filters/ps.toml +16 -0
- package/temp/rtk/src/filters/quarto-render.toml +41 -0
- package/temp/rtk/src/filters/rsync.toml +48 -0
- package/temp/rtk/src/filters/shellcheck.toml +27 -0
- package/temp/rtk/src/filters/shopify-theme.toml +29 -0
- package/temp/rtk/src/filters/skopeo.toml +45 -0
- package/temp/rtk/src/filters/sops.toml +16 -0
- package/temp/rtk/src/filters/ssh.toml +44 -0
- package/temp/rtk/src/filters/stat.toml +34 -0
- package/temp/rtk/src/filters/swift-build.toml +41 -0
- package/temp/rtk/src/filters/systemctl-status.toml +33 -0
- package/temp/rtk/src/filters/terraform-plan.toml +35 -0
- package/temp/rtk/src/filters/tofu-fmt.toml +16 -0
- package/temp/rtk/src/filters/tofu-init.toml +38 -0
- package/temp/rtk/src/filters/tofu-plan.toml +35 -0
- package/temp/rtk/src/filters/tofu-validate.toml +17 -0
- package/temp/rtk/src/filters/trunk-build.toml +39 -0
- package/temp/rtk/src/filters/ty.toml +50 -0
- package/temp/rtk/src/filters/uv-sync.toml +37 -0
- package/temp/rtk/src/filters/xcodebuild.toml +99 -0
- package/temp/rtk/src/filters/yamllint.toml +25 -0
- package/temp/rtk/src/find_cmd.rs +598 -0
- package/temp/rtk/src/format_cmd.rs +386 -0
- package/temp/rtk/src/gain.rs +723 -0
- package/temp/rtk/src/gh_cmd.rs +1651 -0
- package/temp/rtk/src/git.rs +2012 -0
- package/temp/rtk/src/go_cmd.rs +592 -0
- package/temp/rtk/src/golangci_cmd.rs +254 -0
- package/temp/rtk/src/grep_cmd.rs +288 -0
- package/temp/rtk/src/gt_cmd.rs +810 -0
- package/temp/rtk/src/hook_audit_cmd.rs +283 -0
- package/temp/rtk/src/hook_check.rs +171 -0
- package/temp/rtk/src/init.rs +1859 -0
- package/temp/rtk/src/integrity.rs +537 -0
- package/temp/rtk/src/json_cmd.rs +231 -0
- package/temp/rtk/src/learn/detector.rs +628 -0
- package/temp/rtk/src/learn/mod.rs +119 -0
- package/temp/rtk/src/learn/report.rs +184 -0
- package/temp/rtk/src/lint_cmd.rs +694 -0
- package/temp/rtk/src/local_llm.rs +316 -0
- package/temp/rtk/src/log_cmd.rs +248 -0
- package/temp/rtk/src/ls.rs +324 -0
- package/temp/rtk/src/main.rs +2482 -0
- package/temp/rtk/src/mypy_cmd.rs +389 -0
- package/temp/rtk/src/next_cmd.rs +241 -0
- package/temp/rtk/src/npm_cmd.rs +236 -0
- package/temp/rtk/src/parser/README.md +267 -0
- package/temp/rtk/src/parser/error.rs +46 -0
- package/temp/rtk/src/parser/formatter.rs +336 -0
- package/temp/rtk/src/parser/mod.rs +311 -0
- package/temp/rtk/src/parser/types.rs +119 -0
- package/temp/rtk/src/pip_cmd.rs +302 -0
- package/temp/rtk/src/playwright_cmd.rs +479 -0
- package/temp/rtk/src/pnpm_cmd.rs +573 -0
- package/temp/rtk/src/prettier_cmd.rs +221 -0
- package/temp/rtk/src/prisma_cmd.rs +482 -0
- package/temp/rtk/src/psql_cmd.rs +382 -0
- package/temp/rtk/src/pytest_cmd.rs +384 -0
- package/temp/rtk/src/read.rs +217 -0
- package/temp/rtk/src/rewrite_cmd.rs +50 -0
- package/temp/rtk/src/ruff_cmd.rs +402 -0
- package/temp/rtk/src/runner.rs +271 -0
- package/temp/rtk/src/summary.rs +297 -0
- package/temp/rtk/src/tee.rs +405 -0
- package/temp/rtk/src/telemetry.rs +248 -0
- package/temp/rtk/src/toml_filter.rs +1655 -0
- package/temp/rtk/src/tracking.rs +1416 -0
- package/temp/rtk/src/tree.rs +209 -0
- package/temp/rtk/src/tsc_cmd.rs +259 -0
- package/temp/rtk/src/utils.rs +432 -0
- package/temp/rtk/src/verify_cmd.rs +47 -0
- package/temp/rtk/src/vitest_cmd.rs +385 -0
- package/temp/rtk/src/wc_cmd.rs +401 -0
- package/temp/rtk/src/wget_cmd.rs +260 -0
- package/temp/rtk/tests/fixtures/dotnet/build_failed.txt +11 -0
- package/temp/rtk/tests/fixtures/dotnet/format_changes.json +31 -0
- package/temp/rtk/tests/fixtures/dotnet/format_empty.json +1 -0
- package/temp/rtk/tests/fixtures/dotnet/format_success.json +12 -0
- package/temp/rtk/tests/fixtures/dotnet/test_failed.txt +18 -0
|
@@ -0,0 +1,1668 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"once_cell",
|
|
19
|
+
"version_check",
|
|
20
|
+
"zerocopy",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "aho-corasick"
|
|
25
|
+
version = "1.1.4"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"memchr",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "android_system_properties"
|
|
34
|
+
version = "0.1.5"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"libc",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstream"
|
|
43
|
+
version = "0.6.21"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"anstyle",
|
|
48
|
+
"anstyle-parse",
|
|
49
|
+
"anstyle-query",
|
|
50
|
+
"anstyle-wincon",
|
|
51
|
+
"colorchoice",
|
|
52
|
+
"is_terminal_polyfill",
|
|
53
|
+
"utf8parse",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle"
|
|
58
|
+
version = "1.0.13"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anstyle-parse"
|
|
64
|
+
version = "0.2.7"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"utf8parse",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "anstyle-query"
|
|
73
|
+
version = "1.1.5"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"windows-sys 0.61.2",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "anstyle-wincon"
|
|
82
|
+
version = "3.0.11"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
85
|
+
dependencies = [
|
|
86
|
+
"anstyle",
|
|
87
|
+
"once_cell_polyfill",
|
|
88
|
+
"windows-sys 0.61.2",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "anyhow"
|
|
93
|
+
version = "1.0.100"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "autocfg"
|
|
99
|
+
version = "1.5.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "base64"
|
|
105
|
+
version = "0.22.1"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "bitflags"
|
|
111
|
+
version = "2.10.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "block-buffer"
|
|
117
|
+
version = "0.10.4"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"generic-array",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bstr"
|
|
126
|
+
version = "1.12.1"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"memchr",
|
|
131
|
+
"serde",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "bumpalo"
|
|
136
|
+
version = "3.19.1"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "cc"
|
|
142
|
+
version = "1.2.54"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"find-msvc-tools",
|
|
147
|
+
"shlex",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "cfg-if"
|
|
152
|
+
version = "1.0.4"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "chrono"
|
|
158
|
+
version = "0.4.43"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"iana-time-zone",
|
|
163
|
+
"js-sys",
|
|
164
|
+
"num-traits",
|
|
165
|
+
"wasm-bindgen",
|
|
166
|
+
"windows-link",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "clap"
|
|
171
|
+
version = "4.5.54"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
174
|
+
dependencies = [
|
|
175
|
+
"clap_builder",
|
|
176
|
+
"clap_derive",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "clap_builder"
|
|
181
|
+
version = "4.5.54"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"anstream",
|
|
186
|
+
"anstyle",
|
|
187
|
+
"clap_lex",
|
|
188
|
+
"strsim",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "clap_derive"
|
|
193
|
+
version = "4.5.49"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"heck",
|
|
198
|
+
"proc-macro2",
|
|
199
|
+
"quote",
|
|
200
|
+
"syn",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "clap_lex"
|
|
205
|
+
version = "0.7.7"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "colorchoice"
|
|
211
|
+
version = "1.0.4"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "colored"
|
|
217
|
+
version = "2.2.0"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"lazy_static",
|
|
222
|
+
"windows-sys 0.59.0",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "core-foundation-sys"
|
|
227
|
+
version = "0.8.7"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "cpufeatures"
|
|
233
|
+
version = "0.2.17"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"libc",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "crc32fast"
|
|
242
|
+
version = "1.5.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"cfg-if",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "crossbeam-deque"
|
|
251
|
+
version = "0.8.6"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"crossbeam-epoch",
|
|
256
|
+
"crossbeam-utils",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "crossbeam-epoch"
|
|
261
|
+
version = "0.9.18"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"crossbeam-utils",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "crossbeam-utils"
|
|
270
|
+
version = "0.8.21"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "crypto-common"
|
|
276
|
+
version = "0.1.7"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"generic-array",
|
|
281
|
+
"typenum",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "digest"
|
|
286
|
+
version = "0.10.7"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"block-buffer",
|
|
291
|
+
"crypto-common",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "dirs"
|
|
296
|
+
version = "5.0.1"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"dirs-sys",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "dirs-sys"
|
|
305
|
+
version = "0.4.1"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"libc",
|
|
310
|
+
"option-ext",
|
|
311
|
+
"redox_users",
|
|
312
|
+
"windows-sys 0.48.0",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "displaydoc"
|
|
317
|
+
version = "0.2.5"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"proc-macro2",
|
|
322
|
+
"quote",
|
|
323
|
+
"syn",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "equivalent"
|
|
328
|
+
version = "1.0.2"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "errno"
|
|
334
|
+
version = "0.3.14"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"libc",
|
|
339
|
+
"windows-sys 0.61.2",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "fallible-iterator"
|
|
344
|
+
version = "0.3.0"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "fallible-streaming-iterator"
|
|
350
|
+
version = "0.1.9"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "fastrand"
|
|
356
|
+
version = "2.3.0"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "find-msvc-tools"
|
|
362
|
+
version = "0.1.8"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "flate2"
|
|
368
|
+
version = "1.1.9"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"crc32fast",
|
|
373
|
+
"miniz_oxide",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "form_urlencoded"
|
|
378
|
+
version = "1.2.2"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"percent-encoding",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "generic-array"
|
|
387
|
+
version = "0.14.7"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"typenum",
|
|
392
|
+
"version_check",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "getrandom"
|
|
397
|
+
version = "0.2.17"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"cfg-if",
|
|
402
|
+
"libc",
|
|
403
|
+
"wasi",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "getrandom"
|
|
408
|
+
version = "0.3.4"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"cfg-if",
|
|
413
|
+
"libc",
|
|
414
|
+
"r-efi",
|
|
415
|
+
"wasip2",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "globset"
|
|
420
|
+
version = "0.4.18"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"aho-corasick",
|
|
425
|
+
"bstr",
|
|
426
|
+
"log",
|
|
427
|
+
"regex-automata",
|
|
428
|
+
"regex-syntax",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "hashbrown"
|
|
433
|
+
version = "0.14.5"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"ahash",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "hashbrown"
|
|
442
|
+
version = "0.16.1"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "hashlink"
|
|
448
|
+
version = "0.9.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"hashbrown 0.14.5",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "heck"
|
|
457
|
+
version = "0.5.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "hostname"
|
|
463
|
+
version = "0.4.2"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"cfg-if",
|
|
468
|
+
"libc",
|
|
469
|
+
"windows-link",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "iana-time-zone"
|
|
474
|
+
version = "0.1.64"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"android_system_properties",
|
|
479
|
+
"core-foundation-sys",
|
|
480
|
+
"iana-time-zone-haiku",
|
|
481
|
+
"js-sys",
|
|
482
|
+
"log",
|
|
483
|
+
"wasm-bindgen",
|
|
484
|
+
"windows-core",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "iana-time-zone-haiku"
|
|
489
|
+
version = "0.1.2"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"cc",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "icu_collections"
|
|
498
|
+
version = "2.1.1"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"displaydoc",
|
|
503
|
+
"potential_utf",
|
|
504
|
+
"yoke",
|
|
505
|
+
"zerofrom",
|
|
506
|
+
"zerovec",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "icu_locale_core"
|
|
511
|
+
version = "2.1.1"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"displaydoc",
|
|
516
|
+
"litemap",
|
|
517
|
+
"tinystr",
|
|
518
|
+
"writeable",
|
|
519
|
+
"zerovec",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "icu_normalizer"
|
|
524
|
+
version = "2.1.1"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"icu_collections",
|
|
529
|
+
"icu_normalizer_data",
|
|
530
|
+
"icu_properties",
|
|
531
|
+
"icu_provider",
|
|
532
|
+
"smallvec",
|
|
533
|
+
"zerovec",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "icu_normalizer_data"
|
|
538
|
+
version = "2.1.1"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "icu_properties"
|
|
544
|
+
version = "2.1.2"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"icu_collections",
|
|
549
|
+
"icu_locale_core",
|
|
550
|
+
"icu_properties_data",
|
|
551
|
+
"icu_provider",
|
|
552
|
+
"zerotrie",
|
|
553
|
+
"zerovec",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "icu_properties_data"
|
|
558
|
+
version = "2.1.2"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "icu_provider"
|
|
564
|
+
version = "2.1.1"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"displaydoc",
|
|
569
|
+
"icu_locale_core",
|
|
570
|
+
"writeable",
|
|
571
|
+
"yoke",
|
|
572
|
+
"zerofrom",
|
|
573
|
+
"zerotrie",
|
|
574
|
+
"zerovec",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "idna"
|
|
579
|
+
version = "1.1.0"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"idna_adapter",
|
|
584
|
+
"smallvec",
|
|
585
|
+
"utf8_iter",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "idna_adapter"
|
|
590
|
+
version = "1.2.1"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"icu_normalizer",
|
|
595
|
+
"icu_properties",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "ignore"
|
|
600
|
+
version = "0.4.25"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"crossbeam-deque",
|
|
605
|
+
"globset",
|
|
606
|
+
"log",
|
|
607
|
+
"memchr",
|
|
608
|
+
"regex-automata",
|
|
609
|
+
"same-file",
|
|
610
|
+
"walkdir",
|
|
611
|
+
"winapi-util",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "indexmap"
|
|
616
|
+
version = "2.13.0"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"equivalent",
|
|
621
|
+
"hashbrown 0.16.1",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "is_terminal_polyfill"
|
|
626
|
+
version = "1.70.2"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "itoa"
|
|
632
|
+
version = "1.0.17"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "js-sys"
|
|
638
|
+
version = "0.3.85"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"once_cell",
|
|
643
|
+
"wasm-bindgen",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "lazy_static"
|
|
648
|
+
version = "1.5.0"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "libc"
|
|
654
|
+
version = "0.2.180"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "libredox"
|
|
660
|
+
version = "0.1.12"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"bitflags",
|
|
665
|
+
"libc",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "libsqlite3-sys"
|
|
670
|
+
version = "0.28.0"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"cc",
|
|
675
|
+
"pkg-config",
|
|
676
|
+
"vcpkg",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "linux-raw-sys"
|
|
681
|
+
version = "0.11.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "litemap"
|
|
687
|
+
version = "0.8.1"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "log"
|
|
693
|
+
version = "0.4.29"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "memchr"
|
|
699
|
+
version = "2.7.6"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "miniz_oxide"
|
|
705
|
+
version = "0.8.9"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"adler2",
|
|
710
|
+
"simd-adler32",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "num-traits"
|
|
715
|
+
version = "0.2.19"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"autocfg",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "once_cell"
|
|
724
|
+
version = "1.21.3"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "once_cell_polyfill"
|
|
730
|
+
version = "1.70.2"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "option-ext"
|
|
736
|
+
version = "0.2.0"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "percent-encoding"
|
|
742
|
+
version = "2.3.2"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "pkg-config"
|
|
748
|
+
version = "0.3.32"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "potential_utf"
|
|
754
|
+
version = "0.1.4"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"zerovec",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "proc-macro2"
|
|
763
|
+
version = "1.0.106"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"unicode-ident",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "quick-xml"
|
|
772
|
+
version = "0.37.5"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"memchr",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "quote"
|
|
781
|
+
version = "1.0.43"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"proc-macro2",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "r-efi"
|
|
790
|
+
version = "5.3.0"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "redox_users"
|
|
796
|
+
version = "0.4.6"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
799
|
+
dependencies = [
|
|
800
|
+
"getrandom 0.2.17",
|
|
801
|
+
"libredox",
|
|
802
|
+
"thiserror",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "regex"
|
|
807
|
+
version = "1.12.2"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"aho-corasick",
|
|
812
|
+
"memchr",
|
|
813
|
+
"regex-automata",
|
|
814
|
+
"regex-syntax",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "regex-automata"
|
|
819
|
+
version = "0.4.13"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"aho-corasick",
|
|
824
|
+
"memchr",
|
|
825
|
+
"regex-syntax",
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "regex-syntax"
|
|
830
|
+
version = "0.8.8"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "ring"
|
|
836
|
+
version = "0.17.14"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"cc",
|
|
841
|
+
"cfg-if",
|
|
842
|
+
"getrandom 0.2.17",
|
|
843
|
+
"libc",
|
|
844
|
+
"untrusted",
|
|
845
|
+
"windows-sys 0.52.0",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "rtk"
|
|
850
|
+
version = "0.29.0"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"anyhow",
|
|
853
|
+
"chrono",
|
|
854
|
+
"clap",
|
|
855
|
+
"colored",
|
|
856
|
+
"dirs",
|
|
857
|
+
"flate2",
|
|
858
|
+
"hostname",
|
|
859
|
+
"ignore",
|
|
860
|
+
"lazy_static",
|
|
861
|
+
"quick-xml",
|
|
862
|
+
"regex",
|
|
863
|
+
"rusqlite",
|
|
864
|
+
"serde",
|
|
865
|
+
"serde_json",
|
|
866
|
+
"sha2",
|
|
867
|
+
"tempfile",
|
|
868
|
+
"thiserror",
|
|
869
|
+
"toml",
|
|
870
|
+
"ureq",
|
|
871
|
+
"walkdir",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "rusqlite"
|
|
876
|
+
version = "0.31.0"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"bitflags",
|
|
881
|
+
"fallible-iterator",
|
|
882
|
+
"fallible-streaming-iterator",
|
|
883
|
+
"hashlink",
|
|
884
|
+
"libsqlite3-sys",
|
|
885
|
+
"smallvec",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "rustix"
|
|
890
|
+
version = "1.1.3"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"bitflags",
|
|
895
|
+
"errno",
|
|
896
|
+
"libc",
|
|
897
|
+
"linux-raw-sys",
|
|
898
|
+
"windows-sys 0.61.2",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "rustls"
|
|
903
|
+
version = "0.23.37"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"log",
|
|
908
|
+
"once_cell",
|
|
909
|
+
"ring",
|
|
910
|
+
"rustls-pki-types",
|
|
911
|
+
"rustls-webpki",
|
|
912
|
+
"subtle",
|
|
913
|
+
"zeroize",
|
|
914
|
+
]
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "rustls-pki-types"
|
|
918
|
+
version = "1.14.0"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"zeroize",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "rustls-webpki"
|
|
927
|
+
version = "0.103.9"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
930
|
+
dependencies = [
|
|
931
|
+
"ring",
|
|
932
|
+
"rustls-pki-types",
|
|
933
|
+
"untrusted",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "rustversion"
|
|
938
|
+
version = "1.0.22"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "same-file"
|
|
944
|
+
version = "1.0.6"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"winapi-util",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "serde"
|
|
953
|
+
version = "1.0.228"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"serde_core",
|
|
958
|
+
"serde_derive",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "serde_core"
|
|
963
|
+
version = "1.0.228"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"serde_derive",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "serde_derive"
|
|
972
|
+
version = "1.0.228"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"proc-macro2",
|
|
977
|
+
"quote",
|
|
978
|
+
"syn",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "serde_json"
|
|
983
|
+
version = "1.0.149"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"indexmap",
|
|
988
|
+
"itoa",
|
|
989
|
+
"memchr",
|
|
990
|
+
"serde",
|
|
991
|
+
"serde_core",
|
|
992
|
+
"zmij",
|
|
993
|
+
]
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "serde_spanned"
|
|
997
|
+
version = "0.6.9"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"serde",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "sha2"
|
|
1006
|
+
version = "0.10.9"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"cfg-if",
|
|
1011
|
+
"cpufeatures",
|
|
1012
|
+
"digest",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "shlex"
|
|
1017
|
+
version = "1.3.0"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "simd-adler32"
|
|
1023
|
+
version = "0.3.8"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "smallvec"
|
|
1029
|
+
version = "1.15.1"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "stable_deref_trait"
|
|
1035
|
+
version = "1.2.1"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "strsim"
|
|
1041
|
+
version = "0.11.1"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "subtle"
|
|
1047
|
+
version = "2.6.1"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "syn"
|
|
1053
|
+
version = "2.0.114"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"proc-macro2",
|
|
1058
|
+
"quote",
|
|
1059
|
+
"unicode-ident",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "synstructure"
|
|
1064
|
+
version = "0.13.2"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"proc-macro2",
|
|
1069
|
+
"quote",
|
|
1070
|
+
"syn",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "tempfile"
|
|
1075
|
+
version = "3.24.0"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"fastrand",
|
|
1080
|
+
"getrandom 0.3.4",
|
|
1081
|
+
"once_cell",
|
|
1082
|
+
"rustix",
|
|
1083
|
+
"windows-sys 0.61.2",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "thiserror"
|
|
1088
|
+
version = "1.0.69"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"thiserror-impl",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "thiserror-impl"
|
|
1097
|
+
version = "1.0.69"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"proc-macro2",
|
|
1102
|
+
"quote",
|
|
1103
|
+
"syn",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "tinystr"
|
|
1108
|
+
version = "0.8.2"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"displaydoc",
|
|
1113
|
+
"zerovec",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "toml"
|
|
1118
|
+
version = "0.8.23"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"serde",
|
|
1123
|
+
"serde_spanned",
|
|
1124
|
+
"toml_datetime",
|
|
1125
|
+
"toml_edit",
|
|
1126
|
+
]
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "toml_datetime"
|
|
1130
|
+
version = "0.6.11"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
1133
|
+
dependencies = [
|
|
1134
|
+
"serde",
|
|
1135
|
+
]
|
|
1136
|
+
|
|
1137
|
+
[[package]]
|
|
1138
|
+
name = "toml_edit"
|
|
1139
|
+
version = "0.22.27"
|
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
1142
|
+
dependencies = [
|
|
1143
|
+
"indexmap",
|
|
1144
|
+
"serde",
|
|
1145
|
+
"serde_spanned",
|
|
1146
|
+
"toml_datetime",
|
|
1147
|
+
"toml_write",
|
|
1148
|
+
"winnow",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "toml_write"
|
|
1153
|
+
version = "0.1.2"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "typenum"
|
|
1159
|
+
version = "1.19.0"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "unicode-ident"
|
|
1165
|
+
version = "1.0.22"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "untrusted"
|
|
1171
|
+
version = "0.9.0"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "ureq"
|
|
1177
|
+
version = "2.12.1"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"base64",
|
|
1182
|
+
"flate2",
|
|
1183
|
+
"log",
|
|
1184
|
+
"once_cell",
|
|
1185
|
+
"rustls",
|
|
1186
|
+
"rustls-pki-types",
|
|
1187
|
+
"url",
|
|
1188
|
+
"webpki-roots 0.26.11",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "url"
|
|
1193
|
+
version = "2.5.8"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"form_urlencoded",
|
|
1198
|
+
"idna",
|
|
1199
|
+
"percent-encoding",
|
|
1200
|
+
"serde",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "utf8_iter"
|
|
1205
|
+
version = "1.0.4"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "utf8parse"
|
|
1211
|
+
version = "0.2.2"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "vcpkg"
|
|
1217
|
+
version = "0.2.15"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "version_check"
|
|
1223
|
+
version = "0.9.5"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "walkdir"
|
|
1229
|
+
version = "2.5.0"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"same-file",
|
|
1234
|
+
"winapi-util",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "wasi"
|
|
1239
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "wasip2"
|
|
1245
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1248
|
+
dependencies = [
|
|
1249
|
+
"wit-bindgen",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "wasm-bindgen"
|
|
1254
|
+
version = "0.2.108"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"cfg-if",
|
|
1259
|
+
"once_cell",
|
|
1260
|
+
"rustversion",
|
|
1261
|
+
"wasm-bindgen-macro",
|
|
1262
|
+
"wasm-bindgen-shared",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "wasm-bindgen-macro"
|
|
1267
|
+
version = "0.2.108"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"quote",
|
|
1272
|
+
"wasm-bindgen-macro-support",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "wasm-bindgen-macro-support"
|
|
1277
|
+
version = "0.2.108"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
1280
|
+
dependencies = [
|
|
1281
|
+
"bumpalo",
|
|
1282
|
+
"proc-macro2",
|
|
1283
|
+
"quote",
|
|
1284
|
+
"syn",
|
|
1285
|
+
"wasm-bindgen-shared",
|
|
1286
|
+
]
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "wasm-bindgen-shared"
|
|
1290
|
+
version = "0.2.108"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
1293
|
+
dependencies = [
|
|
1294
|
+
"unicode-ident",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "webpki-roots"
|
|
1299
|
+
version = "0.26.11"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"webpki-roots 1.0.6",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "webpki-roots"
|
|
1308
|
+
version = "1.0.6"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"rustls-pki-types",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "winapi-util"
|
|
1317
|
+
version = "0.1.11"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"windows-sys 0.61.2",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "windows-core"
|
|
1326
|
+
version = "0.62.2"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"windows-implement",
|
|
1331
|
+
"windows-interface",
|
|
1332
|
+
"windows-link",
|
|
1333
|
+
"windows-result",
|
|
1334
|
+
"windows-strings",
|
|
1335
|
+
]
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "windows-implement"
|
|
1339
|
+
version = "0.60.2"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1342
|
+
dependencies = [
|
|
1343
|
+
"proc-macro2",
|
|
1344
|
+
"quote",
|
|
1345
|
+
"syn",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "windows-interface"
|
|
1350
|
+
version = "0.59.3"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"proc-macro2",
|
|
1355
|
+
"quote",
|
|
1356
|
+
"syn",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "windows-link"
|
|
1361
|
+
version = "0.2.1"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "windows-result"
|
|
1367
|
+
version = "0.4.1"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"windows-link",
|
|
1372
|
+
]
|
|
1373
|
+
|
|
1374
|
+
[[package]]
|
|
1375
|
+
name = "windows-strings"
|
|
1376
|
+
version = "0.5.1"
|
|
1377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1379
|
+
dependencies = [
|
|
1380
|
+
"windows-link",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "windows-sys"
|
|
1385
|
+
version = "0.48.0"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"windows-targets 0.48.5",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "windows-sys"
|
|
1394
|
+
version = "0.52.0"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"windows-targets 0.52.6",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "windows-sys"
|
|
1403
|
+
version = "0.59.0"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"windows-targets 0.52.6",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "windows-sys"
|
|
1412
|
+
version = "0.61.2"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"windows-link",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "windows-targets"
|
|
1421
|
+
version = "0.48.5"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
1426
|
+
"windows_aarch64_msvc 0.48.5",
|
|
1427
|
+
"windows_i686_gnu 0.48.5",
|
|
1428
|
+
"windows_i686_msvc 0.48.5",
|
|
1429
|
+
"windows_x86_64_gnu 0.48.5",
|
|
1430
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
1431
|
+
"windows_x86_64_msvc 0.48.5",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "windows-targets"
|
|
1436
|
+
version = "0.52.6"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1441
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1442
|
+
"windows_i686_gnu 0.52.6",
|
|
1443
|
+
"windows_i686_gnullvm",
|
|
1444
|
+
"windows_i686_msvc 0.52.6",
|
|
1445
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1446
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1447
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1448
|
+
]
|
|
1449
|
+
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "windows_aarch64_gnullvm"
|
|
1452
|
+
version = "0.48.5"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "windows_aarch64_gnullvm"
|
|
1458
|
+
version = "0.52.6"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "windows_aarch64_msvc"
|
|
1464
|
+
version = "0.48.5"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "windows_aarch64_msvc"
|
|
1470
|
+
version = "0.52.6"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "windows_i686_gnu"
|
|
1476
|
+
version = "0.48.5"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "windows_i686_gnu"
|
|
1482
|
+
version = "0.52.6"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "windows_i686_gnullvm"
|
|
1488
|
+
version = "0.52.6"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "windows_i686_msvc"
|
|
1494
|
+
version = "0.48.5"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "windows_i686_msvc"
|
|
1500
|
+
version = "0.52.6"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "windows_x86_64_gnu"
|
|
1506
|
+
version = "0.48.5"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "windows_x86_64_gnu"
|
|
1512
|
+
version = "0.52.6"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "windows_x86_64_gnullvm"
|
|
1518
|
+
version = "0.48.5"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "windows_x86_64_gnullvm"
|
|
1524
|
+
version = "0.52.6"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "windows_x86_64_msvc"
|
|
1530
|
+
version = "0.48.5"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1533
|
+
|
|
1534
|
+
[[package]]
|
|
1535
|
+
name = "windows_x86_64_msvc"
|
|
1536
|
+
version = "0.52.6"
|
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "winnow"
|
|
1542
|
+
version = "0.7.14"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"memchr",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "wit-bindgen"
|
|
1551
|
+
version = "0.51.0"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "writeable"
|
|
1557
|
+
version = "0.6.2"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "yoke"
|
|
1563
|
+
version = "0.8.1"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"stable_deref_trait",
|
|
1568
|
+
"yoke-derive",
|
|
1569
|
+
"zerofrom",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "yoke-derive"
|
|
1574
|
+
version = "0.8.1"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"proc-macro2",
|
|
1579
|
+
"quote",
|
|
1580
|
+
"syn",
|
|
1581
|
+
"synstructure",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "zerocopy"
|
|
1586
|
+
version = "0.8.33"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"zerocopy-derive",
|
|
1591
|
+
]
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "zerocopy-derive"
|
|
1595
|
+
version = "0.8.33"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
1598
|
+
dependencies = [
|
|
1599
|
+
"proc-macro2",
|
|
1600
|
+
"quote",
|
|
1601
|
+
"syn",
|
|
1602
|
+
]
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "zerofrom"
|
|
1606
|
+
version = "0.1.6"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1609
|
+
dependencies = [
|
|
1610
|
+
"zerofrom-derive",
|
|
1611
|
+
]
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "zerofrom-derive"
|
|
1615
|
+
version = "0.1.6"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"proc-macro2",
|
|
1620
|
+
"quote",
|
|
1621
|
+
"syn",
|
|
1622
|
+
"synstructure",
|
|
1623
|
+
]
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "zeroize"
|
|
1627
|
+
version = "1.8.2"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "zerotrie"
|
|
1633
|
+
version = "0.2.3"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"displaydoc",
|
|
1638
|
+
"yoke",
|
|
1639
|
+
"zerofrom",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "zerovec"
|
|
1644
|
+
version = "0.11.5"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"yoke",
|
|
1649
|
+
"zerofrom",
|
|
1650
|
+
"zerovec-derive",
|
|
1651
|
+
]
|
|
1652
|
+
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "zerovec-derive"
|
|
1655
|
+
version = "0.11.2"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
1658
|
+
dependencies = [
|
|
1659
|
+
"proc-macro2",
|
|
1660
|
+
"quote",
|
|
1661
|
+
"syn",
|
|
1662
|
+
]
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "zmij"
|
|
1666
|
+
version = "1.0.16"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "dfcd145825aace48cff44a8844de64bf75feec3080e0aa5cdbde72961ae51a65"
|