@hraness/kb 0.17.1
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/DISCLOSURE +43 -0
- package/LICENSE +21 -0
- package/README.md +545 -0
- package/dist/agent-context.js +35 -0
- package/dist/agent-guide-audit.js +18 -0
- package/dist/attachments.js +19 -0
- package/dist/authoring.js +33 -0
- package/dist/benchmark.js +19 -0
- package/dist/capture.js +49 -0
- package/dist/cli.js +3646 -0
- package/dist/clip/acquire.js +57 -0
- package/dist/clip/args.js +21 -0
- package/dist/clip/bounded-byte-buffer.js +9 -0
- package/dist/clip/browser-profiles.js +17 -0
- package/dist/clip/bundle-reader.js +11 -0
- package/dist/clip/cli.js +27 -0
- package/dist/clip/cookies.js +21 -0
- package/dist/clip/defuddle-worker.js +84 -0
- package/dist/clip/doctor.js +32 -0
- package/dist/clip/jobs.js +784 -0
- package/dist/clip/network-proxy.js +9 -0
- package/dist/clip/network.js +28 -0
- package/dist/clip/persist.js +30 -0
- package/dist/clip/refresh.js +11 -0
- package/dist/clip/terminal.js +11 -0
- package/dist/evaluation-builder.js +12238 -0
- package/dist/evaluation-kb.js +26 -0
- package/dist/evaluation.js +35 -0
- package/dist/git.js +39 -0
- package/dist/graph.js +39 -0
- package/dist/index-01jj6rbv.js +1103 -0
- package/dist/index-06c9ctr6.js +738 -0
- package/dist/index-0kavxzqj.js +2480 -0
- package/dist/index-1gwbassd.js +743 -0
- package/dist/index-1n418kb9.js +827 -0
- package/dist/index-1vrd1rmn.js +56 -0
- package/dist/index-1xxnjn0d.js +171 -0
- package/dist/index-3rm7cz6h.js +373 -0
- package/dist/index-3v2z4f0q.js +328 -0
- package/dist/index-48pz4jpc.js +392 -0
- package/dist/index-4j3tt0c3.js +234 -0
- package/dist/index-5n05se68.js +307 -0
- package/dist/index-5vwpzb5a.js +764 -0
- package/dist/index-6g2pv9d2.js +370 -0
- package/dist/index-7fzc32gf.js +712 -0
- package/dist/index-84x0vjjp.js +432 -0
- package/dist/index-adx6khj5.js +488 -0
- package/dist/index-b88v3vtm.js +805 -0
- package/dist/index-cv6fh7z5.js +462 -0
- package/dist/index-cxfrakt7.js +1067 -0
- package/dist/index-d13v9ckt.js +150 -0
- package/dist/index-dycjbhw2.js +1943 -0
- package/dist/index-dyqwejk5.js +531 -0
- package/dist/index-e5fbsywq.js +658 -0
- package/dist/index-f984hw45.js +927 -0
- package/dist/index-gh719d91.js +63 -0
- package/dist/index-hgve9rh2.js +2046 -0
- package/dist/index-hya40gb2.js +474 -0
- package/dist/index-j4zgmzjr.js +152 -0
- package/dist/index-jsmvyyvf.js +1166 -0
- package/dist/index-kh0pwvdd.js +1974 -0
- package/dist/index-mqx4nd6v.js +119 -0
- package/dist/index-mxxxytys.js +1254 -0
- package/dist/index-n5dd7r0v.js +711 -0
- package/dist/index-npg9z1a4.js +431 -0
- package/dist/index-pj501bh1.js +140 -0
- package/dist/index-qry4vhxk.js +1041 -0
- package/dist/index-s2gw5aw9.js +199 -0
- package/dist/index-vvdj6kca.js +70 -0
- package/dist/index-w2zc0vwa.js +571 -0
- package/dist/index-x3fthpsc.js +585 -0
- package/dist/index-zr53sf63.js +44 -0
- package/dist/index-zxdy5pby.js +2728 -0
- package/dist/index-zzhgcwyt.js +966 -0
- package/dist/index.js +453 -0
- package/dist/navigation.js +13 -0
- package/dist/pdf.js +85 -0
- package/dist/percolate.js +24 -0
- package/dist/portfolio.js +77 -0
- package/dist/query.js +29 -0
- package/dist/repository-memory.js +60 -0
- package/dist/sdk.js +36 -0
- package/dist/search-rules.js +34 -0
- package/dist/search.js +22 -0
- package/dist/semantic.js +39 -0
- package/dist/source-inbox.js +17 -0
- package/dist/untrusted-content.js +32 -0
- package/dist/url-intelligence.js +74 -0
- package/dist/workflow.js +23 -0
- package/dist/workflows/decision-context.js +20 -0
- package/dist/workflows/explain-change.js +8 -0
- package/dist/workflows/index.js +28 -0
- package/dist/workflows/plan-radar.js +10 -0
- package/package.json +409 -0
- package/skills/kb/AGENTS.md +19 -0
- package/skills/kb/SKILL.md +82 -0
- package/skills/kb/agents/openai.yaml +4 -0
- package/skills/kb/references/pdf-review.md +51 -0
- package/skills/kb/references/percolate.md +144 -0
- package/skills/kb/references/plan-structure.md +105 -0
- package/skills/kb/references/plan.md +115 -0
- package/skills/kb/references/query.md +231 -0
- package/skills/kb/references/refresh.md +133 -0
- package/skills/kb/references/save-pdf.md +125 -0
- package/skills/kb/references/save-url.md +178 -0
- package/skills/kb/references/url-authentication.md +75 -0
- package/skills/kb/references/url-platforms.md +25 -0
- package/src/agent-context.ts +1241 -0
- package/src/agent-guide-audit.ts +750 -0
- package/src/attachments.ts +723 -0
- package/src/authoring.ts +1725 -0
- package/src/benchmark.ts +362 -0
- package/src/capture.ts +68 -0
- package/src/cli.ts +3660 -0
- package/src/clip/acquire.ts +1273 -0
- package/src/clip/archive-today.ts +402 -0
- package/src/clip/args.ts +423 -0
- package/src/clip/assets.ts +262 -0
- package/src/clip/bounded-byte-buffer.ts +75 -0
- package/src/clip/browser-profiles.ts +372 -0
- package/src/clip/bundle-reader.ts +608 -0
- package/src/clip/capture.ts +1054 -0
- package/src/clip/cli.ts +181 -0
- package/src/clip/cookies.ts +512 -0
- package/src/clip/doctor.ts +1110 -0
- package/src/clip/extract.ts +868 -0
- package/src/clip/jobs.ts +959 -0
- package/src/clip/lib.ts +861 -0
- package/src/clip/media.ts +1474 -0
- package/src/clip/metadata-search-tool/Cargo.lock +2498 -0
- package/src/clip/metadata-search-tool/Cargo.toml +18 -0
- package/src/clip/metadata-search-tool/runner.ts +685 -0
- package/src/clip/metadata-search-tool/src/main.rs +389 -0
- package/src/clip/metadata-search.ts +687 -0
- package/src/clip/network-proxy.ts +627 -0
- package/src/clip/network.ts +950 -0
- package/src/clip/package-root.ts +54 -0
- package/src/clip/persist.ts +1472 -0
- package/src/clip/platforms.ts +1824 -0
- package/src/clip/refresh.ts +197 -0
- package/src/clip/structured.ts +432 -0
- package/src/clip/terminal.ts +197 -0
- package/src/clip/url-intelligence.ts +581 -0
- package/src/clip/url-metadata-backfill.ts +616 -0
- package/src/clip/url-metadata-cli.ts +251 -0
- package/src/clip/url-metadata.ts +1397 -0
- package/src/evaluation-analysis-v2.ts +1440 -0
- package/src/evaluation-builder.ts +2539 -0
- package/src/evaluation-corpus-authoring.ts +2052 -0
- package/src/evaluation-evidence.ts +1147 -0
- package/src/evaluation-execution-v2.ts +426 -0
- package/src/evaluation-implementation.ts +131 -0
- package/src/evaluation-kb-closure.ts +1430 -0
- package/src/evaluation-kb-runner-v2.ts +735 -0
- package/src/evaluation-kb-v2.ts +2567 -0
- package/src/evaluation-kb.ts +1018 -0
- package/src/evaluation-measurement-v2.ts +1462 -0
- package/src/evaluation-packing-v2.ts +452 -0
- package/src/evaluation-redaction.ts +28 -0
- package/src/evaluation-v2.ts +3857 -0
- package/src/evaluation.ts +1220 -0
- package/src/git.ts +1276 -0
- package/src/graph.ts +1487 -0
- package/src/index.ts +20 -0
- package/src/init.ts +123 -0
- package/src/navigation.ts +277 -0
- package/src/note-lock.ts +529 -0
- package/src/pdf/args.ts +202 -0
- package/src/pdf/capture.ts +298 -0
- package/src/pdf/cli.ts +159 -0
- package/src/pdf/extract.ts +303 -0
- package/src/pdf/layout.ts +618 -0
- package/src/pdf/markdown.ts +154 -0
- package/src/pdf/model.ts +234 -0
- package/src/pdf/ocr.ts +190 -0
- package/src/pdf/persist.ts +314 -0
- package/src/pdf/source.ts +135 -0
- package/src/pdf/tools.ts +146 -0
- package/src/pdf.ts +92 -0
- package/src/percolate.ts +877 -0
- package/src/portfolio-audit.ts +574 -0
- package/src/portfolio-identity.ts +162 -0
- package/src/portfolio-registry.ts +473 -0
- package/src/portfolio.ts +765 -0
- package/src/query.ts +646 -0
- package/src/repository-memory.ts +1150 -0
- package/src/sdk.ts +1452 -0
- package/src/search-rules.ts +712 -0
- package/src/search.ts +710 -0
- package/src/semantic-runtime.ts +1139 -0
- package/src/semantic.ts +2480 -0
- package/src/source-inbox.ts +232 -0
- package/src/untrusted-content.ts +401 -0
- package/src/url-intelligence.ts +104 -0
- package/src/vault.ts +636 -0
- package/src/workflow.ts +653 -0
- package/src/workflows/decision-context.ts +81 -0
- package/src/workflows/explain-change.ts +73 -0
- package/src/workflows/index.ts +3 -0
- package/src/workflows/plan-radar.ts +101 -0
|
@@ -0,0 +1,2498 @@
|
|
|
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
|
+
"getrandom 0.3.4",
|
|
19
|
+
"once_cell",
|
|
20
|
+
"version_check",
|
|
21
|
+
"zerocopy",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "aho-corasick"
|
|
26
|
+
version = "1.1.5"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
29
|
+
dependencies = [
|
|
30
|
+
"memchr",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "alloc-no-stdlib"
|
|
35
|
+
version = "2.0.4"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "alloc-stdlib"
|
|
41
|
+
version = "0.2.4"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
|
|
44
|
+
dependencies = [
|
|
45
|
+
"alloc-no-stdlib",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "anyhow"
|
|
50
|
+
version = "1.0.104"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "async-compression"
|
|
56
|
+
version = "0.4.43"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "3976abdc8fe7d1133d43d304afd42abdf5bc3e1319d263d223bde07b5efc4be8"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"compression-codecs",
|
|
61
|
+
"compression-core",
|
|
62
|
+
"pin-project-lite",
|
|
63
|
+
"tokio",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "async-trait"
|
|
68
|
+
version = "0.1.91"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"proc-macro2",
|
|
73
|
+
"quote",
|
|
74
|
+
"syn 3.0.3",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "atomic-waker"
|
|
79
|
+
version = "1.1.2"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "axum"
|
|
85
|
+
version = "0.7.9"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"async-trait",
|
|
90
|
+
"axum-core",
|
|
91
|
+
"bytes",
|
|
92
|
+
"futures-util",
|
|
93
|
+
"http",
|
|
94
|
+
"http-body",
|
|
95
|
+
"http-body-util",
|
|
96
|
+
"hyper",
|
|
97
|
+
"hyper-util",
|
|
98
|
+
"itoa",
|
|
99
|
+
"matchit",
|
|
100
|
+
"memchr",
|
|
101
|
+
"mime",
|
|
102
|
+
"percent-encoding",
|
|
103
|
+
"pin-project-lite",
|
|
104
|
+
"rustversion",
|
|
105
|
+
"serde",
|
|
106
|
+
"serde_json",
|
|
107
|
+
"serde_path_to_error",
|
|
108
|
+
"serde_urlencoded",
|
|
109
|
+
"sync_wrapper",
|
|
110
|
+
"tokio",
|
|
111
|
+
"tower",
|
|
112
|
+
"tower-layer",
|
|
113
|
+
"tower-service",
|
|
114
|
+
"tracing",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "axum-core"
|
|
119
|
+
version = "0.4.5"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"async-trait",
|
|
124
|
+
"bytes",
|
|
125
|
+
"futures-util",
|
|
126
|
+
"http",
|
|
127
|
+
"http-body",
|
|
128
|
+
"http-body-util",
|
|
129
|
+
"mime",
|
|
130
|
+
"pin-project-lite",
|
|
131
|
+
"rustversion",
|
|
132
|
+
"sync_wrapper",
|
|
133
|
+
"tower-layer",
|
|
134
|
+
"tower-service",
|
|
135
|
+
"tracing",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "base64"
|
|
140
|
+
version = "0.22.1"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "bitflags"
|
|
146
|
+
version = "2.13.1"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "brotli"
|
|
152
|
+
version = "8.0.4"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"alloc-no-stdlib",
|
|
157
|
+
"alloc-stdlib",
|
|
158
|
+
"brotli-decompressor",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "brotli-decompressor"
|
|
163
|
+
version = "5.0.3"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"alloc-no-stdlib",
|
|
168
|
+
"alloc-stdlib",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "bumpalo"
|
|
173
|
+
version = "3.20.3"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "byteorder"
|
|
179
|
+
version = "1.5.0"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "bytes"
|
|
185
|
+
version = "1.12.1"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "cc"
|
|
191
|
+
version = "1.4.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"find-msvc-tools",
|
|
196
|
+
"shlex",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "cfg-if"
|
|
201
|
+
version = "1.0.4"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "compression-codecs"
|
|
207
|
+
version = "0.4.38"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"brotli",
|
|
212
|
+
"compression-core",
|
|
213
|
+
"flate2",
|
|
214
|
+
"memchr",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "compression-core"
|
|
219
|
+
version = "0.4.32"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "cookie"
|
|
225
|
+
version = "0.18.1"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"percent-encoding",
|
|
230
|
+
"time",
|
|
231
|
+
"version_check",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "cookie_store"
|
|
236
|
+
version = "0.22.1"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"cookie",
|
|
241
|
+
"document-features",
|
|
242
|
+
"idna",
|
|
243
|
+
"log",
|
|
244
|
+
"publicsuffix",
|
|
245
|
+
"serde",
|
|
246
|
+
"serde_derive",
|
|
247
|
+
"serde_json",
|
|
248
|
+
"time",
|
|
249
|
+
"url",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "core-foundation"
|
|
254
|
+
version = "0.9.4"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"core-foundation-sys",
|
|
259
|
+
"libc",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "core-foundation"
|
|
264
|
+
version = "0.10.1"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"core-foundation-sys",
|
|
269
|
+
"libc",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "core-foundation-sys"
|
|
274
|
+
version = "0.8.7"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "crc32fast"
|
|
280
|
+
version = "1.5.0"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"cfg-if",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "cssparser"
|
|
289
|
+
version = "0.31.2"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"cssparser-macros",
|
|
294
|
+
"dtoa-short",
|
|
295
|
+
"itoa",
|
|
296
|
+
"phf 0.11.3",
|
|
297
|
+
"smallvec",
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "cssparser-macros"
|
|
302
|
+
version = "0.6.1"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"quote",
|
|
307
|
+
"syn 2.0.119",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "deranged"
|
|
312
|
+
version = "0.5.8"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "derive_more"
|
|
318
|
+
version = "0.99.20"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"proc-macro2",
|
|
323
|
+
"quote",
|
|
324
|
+
"syn 2.0.119",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "displaydoc"
|
|
329
|
+
version = "0.2.7"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"proc-macro2",
|
|
334
|
+
"quote",
|
|
335
|
+
"syn 3.0.3",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "document-features"
|
|
340
|
+
version = "0.2.12"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"litrs",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "dtoa"
|
|
349
|
+
version = "1.0.11"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "dtoa-short"
|
|
355
|
+
version = "0.3.5"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"dtoa",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "ego-tree"
|
|
364
|
+
version = "0.6.3"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "12a0bb14ac04a9fcf170d0bbbef949b44cc492f4452bd20c095636956f653642"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "encoding_rs"
|
|
370
|
+
version = "0.8.35"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"cfg-if",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "equivalent"
|
|
379
|
+
version = "1.0.2"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "errno"
|
|
385
|
+
version = "0.3.14"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"libc",
|
|
390
|
+
"windows-sys 0.61.2",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "fastrand"
|
|
395
|
+
version = "2.5.0"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "find-msvc-tools"
|
|
401
|
+
version = "0.1.9"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "flate2"
|
|
407
|
+
version = "1.1.9"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"crc32fast",
|
|
412
|
+
"miniz_oxide",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "fnv"
|
|
417
|
+
version = "1.0.7"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "foreign-types"
|
|
423
|
+
version = "0.3.2"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"foreign-types-shared",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "foreign-types-shared"
|
|
432
|
+
version = "0.1.1"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "form_urlencoded"
|
|
438
|
+
version = "1.2.2"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"percent-encoding",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "futf"
|
|
447
|
+
version = "0.1.5"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"mac",
|
|
452
|
+
"new_debug_unreachable",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "futures"
|
|
457
|
+
version = "0.3.33"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"futures-channel",
|
|
462
|
+
"futures-core",
|
|
463
|
+
"futures-executor",
|
|
464
|
+
"futures-io",
|
|
465
|
+
"futures-sink",
|
|
466
|
+
"futures-task",
|
|
467
|
+
"futures-util",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "futures-channel"
|
|
472
|
+
version = "0.3.33"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"futures-core",
|
|
477
|
+
"futures-sink",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "futures-core"
|
|
482
|
+
version = "0.3.33"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "futures-executor"
|
|
488
|
+
version = "0.3.33"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"futures-core",
|
|
493
|
+
"futures-task",
|
|
494
|
+
"futures-util",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "futures-io"
|
|
499
|
+
version = "0.3.33"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "futures-macro"
|
|
505
|
+
version = "0.3.33"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"proc-macro2",
|
|
510
|
+
"quote",
|
|
511
|
+
"syn 2.0.119",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "futures-sink"
|
|
516
|
+
version = "0.3.33"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "futures-task"
|
|
522
|
+
version = "0.3.33"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "futures-util"
|
|
528
|
+
version = "0.3.33"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"futures-channel",
|
|
533
|
+
"futures-core",
|
|
534
|
+
"futures-io",
|
|
535
|
+
"futures-macro",
|
|
536
|
+
"futures-sink",
|
|
537
|
+
"futures-task",
|
|
538
|
+
"memchr",
|
|
539
|
+
"pin-project-lite",
|
|
540
|
+
"slab",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "fxhash"
|
|
545
|
+
version = "0.2.1"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"byteorder",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "getopts"
|
|
554
|
+
version = "0.2.24"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"unicode-width",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "getrandom"
|
|
563
|
+
version = "0.2.17"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"cfg-if",
|
|
568
|
+
"libc",
|
|
569
|
+
"wasi",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "getrandom"
|
|
574
|
+
version = "0.3.4"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"cfg-if",
|
|
579
|
+
"libc",
|
|
580
|
+
"r-efi 5.3.0",
|
|
581
|
+
"wasip2",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "getrandom"
|
|
586
|
+
version = "0.4.3"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"cfg-if",
|
|
591
|
+
"libc",
|
|
592
|
+
"r-efi 6.0.0",
|
|
593
|
+
]
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "h2"
|
|
597
|
+
version = "0.4.15"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"atomic-waker",
|
|
602
|
+
"bytes",
|
|
603
|
+
"fnv",
|
|
604
|
+
"futures-core",
|
|
605
|
+
"futures-sink",
|
|
606
|
+
"http",
|
|
607
|
+
"indexmap",
|
|
608
|
+
"slab",
|
|
609
|
+
"tokio",
|
|
610
|
+
"tokio-util",
|
|
611
|
+
"tracing",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "hashbrown"
|
|
616
|
+
version = "0.17.1"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "html5ever"
|
|
622
|
+
version = "0.27.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"log",
|
|
627
|
+
"mac",
|
|
628
|
+
"markup5ever",
|
|
629
|
+
"proc-macro2",
|
|
630
|
+
"quote",
|
|
631
|
+
"syn 2.0.119",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "http"
|
|
636
|
+
version = "1.5.0"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"bytes",
|
|
641
|
+
"itoa",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "http-body"
|
|
646
|
+
version = "1.1.0"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"bytes",
|
|
651
|
+
"http",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "http-body-util"
|
|
656
|
+
version = "0.1.4"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"bytes",
|
|
661
|
+
"futures-core",
|
|
662
|
+
"http",
|
|
663
|
+
"http-body",
|
|
664
|
+
"pin-project-lite",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "httparse"
|
|
669
|
+
version = "1.10.1"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "httpdate"
|
|
675
|
+
version = "1.0.3"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "hyper"
|
|
681
|
+
version = "1.11.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"atomic-waker",
|
|
686
|
+
"bytes",
|
|
687
|
+
"futures-channel",
|
|
688
|
+
"futures-core",
|
|
689
|
+
"h2",
|
|
690
|
+
"http",
|
|
691
|
+
"http-body",
|
|
692
|
+
"httparse",
|
|
693
|
+
"httpdate",
|
|
694
|
+
"itoa",
|
|
695
|
+
"pin-project-lite",
|
|
696
|
+
"smallvec",
|
|
697
|
+
"tokio",
|
|
698
|
+
"want",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "hyper-rustls"
|
|
703
|
+
version = "0.27.9"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"http",
|
|
708
|
+
"hyper",
|
|
709
|
+
"hyper-util",
|
|
710
|
+
"rustls",
|
|
711
|
+
"tokio",
|
|
712
|
+
"tokio-rustls",
|
|
713
|
+
"tower-service",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "hyper-tls"
|
|
718
|
+
version = "0.6.0"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"bytes",
|
|
723
|
+
"http-body-util",
|
|
724
|
+
"hyper",
|
|
725
|
+
"hyper-util",
|
|
726
|
+
"native-tls",
|
|
727
|
+
"tokio",
|
|
728
|
+
"tokio-native-tls",
|
|
729
|
+
"tower-service",
|
|
730
|
+
]
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "hyper-util"
|
|
734
|
+
version = "0.1.20"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"base64",
|
|
739
|
+
"bytes",
|
|
740
|
+
"futures-channel",
|
|
741
|
+
"futures-util",
|
|
742
|
+
"http",
|
|
743
|
+
"http-body",
|
|
744
|
+
"hyper",
|
|
745
|
+
"ipnet",
|
|
746
|
+
"libc",
|
|
747
|
+
"percent-encoding",
|
|
748
|
+
"pin-project-lite",
|
|
749
|
+
"socket2",
|
|
750
|
+
"system-configuration",
|
|
751
|
+
"tokio",
|
|
752
|
+
"tower-service",
|
|
753
|
+
"tracing",
|
|
754
|
+
"windows-registry",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "icu_collections"
|
|
759
|
+
version = "2.2.0"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"displaydoc",
|
|
764
|
+
"potential_utf",
|
|
765
|
+
"utf8_iter",
|
|
766
|
+
"yoke",
|
|
767
|
+
"zerofrom",
|
|
768
|
+
"zerovec",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "icu_locale_core"
|
|
773
|
+
version = "2.2.0"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"displaydoc",
|
|
778
|
+
"litemap",
|
|
779
|
+
"tinystr",
|
|
780
|
+
"writeable",
|
|
781
|
+
"zerovec",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "icu_normalizer"
|
|
786
|
+
version = "2.2.0"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"icu_collections",
|
|
791
|
+
"icu_normalizer_data",
|
|
792
|
+
"icu_properties",
|
|
793
|
+
"icu_provider",
|
|
794
|
+
"smallvec",
|
|
795
|
+
"zerovec",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "icu_normalizer_data"
|
|
800
|
+
version = "2.2.0"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "icu_properties"
|
|
806
|
+
version = "2.2.0"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"icu_collections",
|
|
811
|
+
"icu_locale_core",
|
|
812
|
+
"icu_properties_data",
|
|
813
|
+
"icu_provider",
|
|
814
|
+
"zerotrie",
|
|
815
|
+
"zerovec",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "icu_properties_data"
|
|
820
|
+
version = "2.2.0"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "icu_provider"
|
|
826
|
+
version = "2.2.0"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"displaydoc",
|
|
831
|
+
"icu_locale_core",
|
|
832
|
+
"writeable",
|
|
833
|
+
"yoke",
|
|
834
|
+
"zerofrom",
|
|
835
|
+
"zerotrie",
|
|
836
|
+
"zerovec",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "idna"
|
|
841
|
+
version = "1.1.0"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"idna_adapter",
|
|
846
|
+
"smallvec",
|
|
847
|
+
"utf8_iter",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "idna_adapter"
|
|
852
|
+
version = "1.2.2"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"icu_normalizer",
|
|
857
|
+
"icu_properties",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "indexmap"
|
|
862
|
+
version = "2.14.0"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"equivalent",
|
|
867
|
+
"hashbrown",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "ipnet"
|
|
872
|
+
version = "2.12.1"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "itoa"
|
|
878
|
+
version = "1.0.18"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "js-sys"
|
|
884
|
+
version = "0.3.103"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"cfg-if",
|
|
889
|
+
"futures-util",
|
|
890
|
+
"wasm-bindgen",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "kb-url-metadata-search"
|
|
895
|
+
version = "0.1.0"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"libc",
|
|
898
|
+
"metadata-search-engine-rs",
|
|
899
|
+
"reqwest",
|
|
900
|
+
"serde",
|
|
901
|
+
"serde_json",
|
|
902
|
+
"tokio",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "lazy_static"
|
|
907
|
+
version = "1.5.0"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "libc"
|
|
913
|
+
version = "0.2.189"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "linux-raw-sys"
|
|
919
|
+
version = "0.12.1"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "litemap"
|
|
925
|
+
version = "0.8.2"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "litrs"
|
|
931
|
+
version = "1.0.0"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "lock_api"
|
|
937
|
+
version = "0.4.14"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"scopeguard",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "log"
|
|
946
|
+
version = "0.4.33"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "mac"
|
|
952
|
+
version = "0.1.1"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "markup5ever"
|
|
958
|
+
version = "0.12.1"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"log",
|
|
963
|
+
"phf 0.11.3",
|
|
964
|
+
"phf_codegen 0.11.3",
|
|
965
|
+
"string_cache",
|
|
966
|
+
"string_cache_codegen",
|
|
967
|
+
"tendril",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "matchers"
|
|
972
|
+
version = "0.2.0"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"regex-automata",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "matchit"
|
|
981
|
+
version = "0.7.3"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "memchr"
|
|
987
|
+
version = "2.8.3"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "metadata-search-engine-rs"
|
|
993
|
+
version = "0.1.3"
|
|
994
|
+
source = "git+https://github.com/MikeLuu99/searxng-rust?rev=f40a00ea67a857ee996e1caba1ebab3ee7a14a47#f40a00ea67a857ee996e1caba1ebab3ee7a14a47"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"anyhow",
|
|
997
|
+
"axum",
|
|
998
|
+
"futures",
|
|
999
|
+
"reqwest",
|
|
1000
|
+
"scraper",
|
|
1001
|
+
"serde",
|
|
1002
|
+
"serde_json",
|
|
1003
|
+
"thiserror",
|
|
1004
|
+
"tokio",
|
|
1005
|
+
"tower-http 0.5.2",
|
|
1006
|
+
"tracing",
|
|
1007
|
+
"tracing-subscriber",
|
|
1008
|
+
"url",
|
|
1009
|
+
"urlencoding",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "mime"
|
|
1014
|
+
version = "0.3.17"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "miniz_oxide"
|
|
1020
|
+
version = "0.8.9"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"adler2",
|
|
1025
|
+
"simd-adler32",
|
|
1026
|
+
]
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "mio"
|
|
1030
|
+
version = "1.2.2"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
1033
|
+
dependencies = [
|
|
1034
|
+
"libc",
|
|
1035
|
+
"wasi",
|
|
1036
|
+
"windows-sys 0.61.2",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "native-tls"
|
|
1041
|
+
version = "0.2.18"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"libc",
|
|
1046
|
+
"log",
|
|
1047
|
+
"openssl",
|
|
1048
|
+
"openssl-probe",
|
|
1049
|
+
"openssl-sys",
|
|
1050
|
+
"schannel",
|
|
1051
|
+
"security-framework",
|
|
1052
|
+
"security-framework-sys",
|
|
1053
|
+
"tempfile",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "new_debug_unreachable"
|
|
1058
|
+
version = "1.0.6"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "nu-ansi-term"
|
|
1064
|
+
version = "0.50.3"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"windows-sys 0.61.2",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "num-conv"
|
|
1073
|
+
version = "0.2.2"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "once_cell"
|
|
1079
|
+
version = "1.21.4"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "openssl"
|
|
1085
|
+
version = "0.10.81"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"bitflags",
|
|
1090
|
+
"cfg-if",
|
|
1091
|
+
"foreign-types",
|
|
1092
|
+
"libc",
|
|
1093
|
+
"openssl-macros",
|
|
1094
|
+
"openssl-sys",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "openssl-macros"
|
|
1099
|
+
version = "0.1.1"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"proc-macro2",
|
|
1104
|
+
"quote",
|
|
1105
|
+
"syn 2.0.119",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "openssl-probe"
|
|
1110
|
+
version = "0.2.1"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "openssl-sys"
|
|
1116
|
+
version = "0.9.117"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"cc",
|
|
1121
|
+
"libc",
|
|
1122
|
+
"pkg-config",
|
|
1123
|
+
"vcpkg",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "parking_lot"
|
|
1128
|
+
version = "0.12.5"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"lock_api",
|
|
1133
|
+
"parking_lot_core",
|
|
1134
|
+
]
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "parking_lot_core"
|
|
1138
|
+
version = "0.9.12"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"cfg-if",
|
|
1143
|
+
"libc",
|
|
1144
|
+
"redox_syscall",
|
|
1145
|
+
"smallvec",
|
|
1146
|
+
"windows-link",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "percent-encoding"
|
|
1151
|
+
version = "2.3.2"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "phf"
|
|
1157
|
+
version = "0.10.1"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"phf_shared 0.10.0",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "phf"
|
|
1166
|
+
version = "0.11.3"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"phf_macros",
|
|
1171
|
+
"phf_shared 0.11.3",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "phf_codegen"
|
|
1176
|
+
version = "0.10.0"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"phf_generator 0.10.0",
|
|
1181
|
+
"phf_shared 0.10.0",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "phf_codegen"
|
|
1186
|
+
version = "0.11.3"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"phf_generator 0.11.3",
|
|
1191
|
+
"phf_shared 0.11.3",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "phf_generator"
|
|
1196
|
+
version = "0.10.0"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"phf_shared 0.10.0",
|
|
1201
|
+
"rand",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "phf_generator"
|
|
1206
|
+
version = "0.11.3"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"phf_shared 0.11.3",
|
|
1211
|
+
"rand",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "phf_macros"
|
|
1216
|
+
version = "0.11.3"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"phf_generator 0.11.3",
|
|
1221
|
+
"phf_shared 0.11.3",
|
|
1222
|
+
"proc-macro2",
|
|
1223
|
+
"quote",
|
|
1224
|
+
"syn 2.0.119",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "phf_shared"
|
|
1229
|
+
version = "0.10.0"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"siphasher 0.3.11",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "phf_shared"
|
|
1238
|
+
version = "0.11.3"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1241
|
+
dependencies = [
|
|
1242
|
+
"siphasher 1.0.3",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "pin-project-lite"
|
|
1247
|
+
version = "0.2.17"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "pkg-config"
|
|
1253
|
+
version = "0.3.33"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "potential_utf"
|
|
1259
|
+
version = "0.1.5"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"zerovec",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "powerfmt"
|
|
1268
|
+
version = "0.2.0"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "ppv-lite86"
|
|
1274
|
+
version = "0.2.21"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"zerocopy",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "precomputed-hash"
|
|
1283
|
+
version = "0.1.1"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "proc-macro2"
|
|
1289
|
+
version = "1.0.107"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"unicode-ident",
|
|
1294
|
+
]
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "psl-types"
|
|
1298
|
+
version = "2.0.11"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "publicsuffix"
|
|
1304
|
+
version = "2.3.0"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"idna",
|
|
1309
|
+
"psl-types",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "quote"
|
|
1314
|
+
version = "1.0.47"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"proc-macro2",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "r-efi"
|
|
1323
|
+
version = "5.3.0"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "r-efi"
|
|
1329
|
+
version = "6.0.0"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "rand"
|
|
1335
|
+
version = "0.8.7"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"libc",
|
|
1340
|
+
"rand_chacha",
|
|
1341
|
+
"rand_core",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "rand_chacha"
|
|
1346
|
+
version = "0.3.1"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1349
|
+
dependencies = [
|
|
1350
|
+
"ppv-lite86",
|
|
1351
|
+
"rand_core",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "rand_core"
|
|
1356
|
+
version = "0.6.4"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"getrandom 0.2.17",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "redox_syscall"
|
|
1365
|
+
version = "0.5.18"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"bitflags",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "regex-automata"
|
|
1374
|
+
version = "0.4.18"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"aho-corasick",
|
|
1379
|
+
"memchr",
|
|
1380
|
+
"regex-syntax",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "regex-syntax"
|
|
1385
|
+
version = "0.8.11"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "reqwest"
|
|
1391
|
+
version = "0.12.28"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"base64",
|
|
1396
|
+
"bytes",
|
|
1397
|
+
"cookie",
|
|
1398
|
+
"cookie_store",
|
|
1399
|
+
"encoding_rs",
|
|
1400
|
+
"futures-core",
|
|
1401
|
+
"h2",
|
|
1402
|
+
"http",
|
|
1403
|
+
"http-body",
|
|
1404
|
+
"http-body-util",
|
|
1405
|
+
"hyper",
|
|
1406
|
+
"hyper-rustls",
|
|
1407
|
+
"hyper-tls",
|
|
1408
|
+
"hyper-util",
|
|
1409
|
+
"js-sys",
|
|
1410
|
+
"log",
|
|
1411
|
+
"mime",
|
|
1412
|
+
"native-tls",
|
|
1413
|
+
"percent-encoding",
|
|
1414
|
+
"pin-project-lite",
|
|
1415
|
+
"rustls-pki-types",
|
|
1416
|
+
"serde",
|
|
1417
|
+
"serde_json",
|
|
1418
|
+
"serde_urlencoded",
|
|
1419
|
+
"sync_wrapper",
|
|
1420
|
+
"tokio",
|
|
1421
|
+
"tokio-native-tls",
|
|
1422
|
+
"tower",
|
|
1423
|
+
"tower-http 0.6.11",
|
|
1424
|
+
"tower-service",
|
|
1425
|
+
"url",
|
|
1426
|
+
"wasm-bindgen",
|
|
1427
|
+
"wasm-bindgen-futures",
|
|
1428
|
+
"web-sys",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "ring"
|
|
1433
|
+
version = "0.17.14"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"cc",
|
|
1438
|
+
"cfg-if",
|
|
1439
|
+
"getrandom 0.2.17",
|
|
1440
|
+
"libc",
|
|
1441
|
+
"untrusted",
|
|
1442
|
+
"windows-sys 0.52.0",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "rustix"
|
|
1447
|
+
version = "1.1.4"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"bitflags",
|
|
1452
|
+
"errno",
|
|
1453
|
+
"libc",
|
|
1454
|
+
"linux-raw-sys",
|
|
1455
|
+
"windows-sys 0.61.2",
|
|
1456
|
+
]
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "rustls"
|
|
1460
|
+
version = "0.23.43"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"once_cell",
|
|
1465
|
+
"rustls-pki-types",
|
|
1466
|
+
"rustls-webpki",
|
|
1467
|
+
"subtle",
|
|
1468
|
+
"zeroize",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "rustls-pki-types"
|
|
1473
|
+
version = "1.15.1"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
1476
|
+
dependencies = [
|
|
1477
|
+
"zeroize",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "rustls-webpki"
|
|
1482
|
+
version = "0.103.13"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"ring",
|
|
1487
|
+
"rustls-pki-types",
|
|
1488
|
+
"untrusted",
|
|
1489
|
+
]
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "rustversion"
|
|
1493
|
+
version = "1.0.23"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "ryu"
|
|
1499
|
+
version = "1.0.23"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "schannel"
|
|
1505
|
+
version = "0.1.29"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"windows-sys 0.61.2",
|
|
1510
|
+
]
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "scopeguard"
|
|
1514
|
+
version = "1.2.0"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "scraper"
|
|
1520
|
+
version = "0.20.0"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "b90460b31bfe1fc07be8262e42c665ad97118d4585869de9345a84d501a9eaf0"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"ahash",
|
|
1525
|
+
"cssparser",
|
|
1526
|
+
"ego-tree",
|
|
1527
|
+
"getopts",
|
|
1528
|
+
"html5ever",
|
|
1529
|
+
"once_cell",
|
|
1530
|
+
"selectors",
|
|
1531
|
+
"tendril",
|
|
1532
|
+
]
|
|
1533
|
+
|
|
1534
|
+
[[package]]
|
|
1535
|
+
name = "security-framework"
|
|
1536
|
+
version = "3.7.0"
|
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1539
|
+
dependencies = [
|
|
1540
|
+
"bitflags",
|
|
1541
|
+
"core-foundation 0.10.1",
|
|
1542
|
+
"core-foundation-sys",
|
|
1543
|
+
"libc",
|
|
1544
|
+
"security-framework-sys",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "security-framework-sys"
|
|
1549
|
+
version = "2.17.0"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"core-foundation-sys",
|
|
1554
|
+
"libc",
|
|
1555
|
+
]
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "selectors"
|
|
1559
|
+
version = "0.25.0"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"bitflags",
|
|
1564
|
+
"cssparser",
|
|
1565
|
+
"derive_more",
|
|
1566
|
+
"fxhash",
|
|
1567
|
+
"log",
|
|
1568
|
+
"new_debug_unreachable",
|
|
1569
|
+
"phf 0.10.1",
|
|
1570
|
+
"phf_codegen 0.10.0",
|
|
1571
|
+
"precomputed-hash",
|
|
1572
|
+
"servo_arc",
|
|
1573
|
+
"smallvec",
|
|
1574
|
+
]
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "serde"
|
|
1578
|
+
version = "1.0.229"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"serde_core",
|
|
1583
|
+
"serde_derive",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "serde_core"
|
|
1588
|
+
version = "1.0.229"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"serde_derive",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "serde_derive"
|
|
1597
|
+
version = "1.0.229"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"proc-macro2",
|
|
1602
|
+
"quote",
|
|
1603
|
+
"syn 3.0.3",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "serde_json"
|
|
1608
|
+
version = "1.0.151"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"itoa",
|
|
1613
|
+
"memchr",
|
|
1614
|
+
"serde",
|
|
1615
|
+
"serde_core",
|
|
1616
|
+
"zmij",
|
|
1617
|
+
]
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "serde_path_to_error"
|
|
1621
|
+
version = "0.1.20"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1624
|
+
dependencies = [
|
|
1625
|
+
"itoa",
|
|
1626
|
+
"serde",
|
|
1627
|
+
"serde_core",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "serde_urlencoded"
|
|
1632
|
+
version = "0.7.1"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"form_urlencoded",
|
|
1637
|
+
"itoa",
|
|
1638
|
+
"ryu",
|
|
1639
|
+
"serde",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "servo_arc"
|
|
1644
|
+
version = "0.3.0"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"stable_deref_trait",
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1651
|
+
[[package]]
|
|
1652
|
+
name = "sharded-slab"
|
|
1653
|
+
version = "0.1.7"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1656
|
+
dependencies = [
|
|
1657
|
+
"lazy_static",
|
|
1658
|
+
]
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "shlex"
|
|
1662
|
+
version = "2.0.1"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "signal-hook-registry"
|
|
1668
|
+
version = "1.4.8"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1671
|
+
dependencies = [
|
|
1672
|
+
"errno",
|
|
1673
|
+
"libc",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "simd-adler32"
|
|
1678
|
+
version = "0.3.10"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "siphasher"
|
|
1684
|
+
version = "0.3.11"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "siphasher"
|
|
1690
|
+
version = "1.0.3"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "slab"
|
|
1696
|
+
version = "0.4.12"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "smallvec"
|
|
1702
|
+
version = "1.15.2"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "socket2"
|
|
1708
|
+
version = "0.6.5"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"libc",
|
|
1713
|
+
"windows-sys 0.61.2",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "stable_deref_trait"
|
|
1718
|
+
version = "1.2.1"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "string_cache"
|
|
1724
|
+
version = "0.8.9"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"new_debug_unreachable",
|
|
1729
|
+
"parking_lot",
|
|
1730
|
+
"phf_shared 0.11.3",
|
|
1731
|
+
"precomputed-hash",
|
|
1732
|
+
"serde",
|
|
1733
|
+
]
|
|
1734
|
+
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "string_cache_codegen"
|
|
1737
|
+
version = "0.5.4"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
|
|
1740
|
+
dependencies = [
|
|
1741
|
+
"phf_generator 0.11.3",
|
|
1742
|
+
"phf_shared 0.11.3",
|
|
1743
|
+
"proc-macro2",
|
|
1744
|
+
"quote",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "subtle"
|
|
1749
|
+
version = "2.6.1"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "syn"
|
|
1755
|
+
version = "2.0.119"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"proc-macro2",
|
|
1760
|
+
"quote",
|
|
1761
|
+
"unicode-ident",
|
|
1762
|
+
]
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "syn"
|
|
1766
|
+
version = "3.0.3"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
1769
|
+
dependencies = [
|
|
1770
|
+
"proc-macro2",
|
|
1771
|
+
"quote",
|
|
1772
|
+
"unicode-ident",
|
|
1773
|
+
]
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "sync_wrapper"
|
|
1777
|
+
version = "1.0.2"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1780
|
+
dependencies = [
|
|
1781
|
+
"futures-core",
|
|
1782
|
+
]
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "synstructure"
|
|
1786
|
+
version = "0.13.2"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1789
|
+
dependencies = [
|
|
1790
|
+
"proc-macro2",
|
|
1791
|
+
"quote",
|
|
1792
|
+
"syn 2.0.119",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "system-configuration"
|
|
1797
|
+
version = "0.7.0"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"bitflags",
|
|
1802
|
+
"core-foundation 0.9.4",
|
|
1803
|
+
"system-configuration-sys",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "system-configuration-sys"
|
|
1808
|
+
version = "0.6.0"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"core-foundation-sys",
|
|
1813
|
+
"libc",
|
|
1814
|
+
]
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "tempfile"
|
|
1818
|
+
version = "3.27.0"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1821
|
+
dependencies = [
|
|
1822
|
+
"fastrand",
|
|
1823
|
+
"getrandom 0.4.3",
|
|
1824
|
+
"once_cell",
|
|
1825
|
+
"rustix",
|
|
1826
|
+
"windows-sys 0.61.2",
|
|
1827
|
+
]
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "tendril"
|
|
1831
|
+
version = "0.4.3"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"futf",
|
|
1836
|
+
"mac",
|
|
1837
|
+
"utf-8",
|
|
1838
|
+
]
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "thiserror"
|
|
1842
|
+
version = "1.0.69"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1845
|
+
dependencies = [
|
|
1846
|
+
"thiserror-impl",
|
|
1847
|
+
]
|
|
1848
|
+
|
|
1849
|
+
[[package]]
|
|
1850
|
+
name = "thiserror-impl"
|
|
1851
|
+
version = "1.0.69"
|
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1854
|
+
dependencies = [
|
|
1855
|
+
"proc-macro2",
|
|
1856
|
+
"quote",
|
|
1857
|
+
"syn 2.0.119",
|
|
1858
|
+
]
|
|
1859
|
+
|
|
1860
|
+
[[package]]
|
|
1861
|
+
name = "thread_local"
|
|
1862
|
+
version = "1.1.10"
|
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
+
checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
|
|
1865
|
+
dependencies = [
|
|
1866
|
+
"cfg-if",
|
|
1867
|
+
]
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "time"
|
|
1871
|
+
version = "0.3.55"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"deranged",
|
|
1876
|
+
"num-conv",
|
|
1877
|
+
"powerfmt",
|
|
1878
|
+
"serde_core",
|
|
1879
|
+
"time-core",
|
|
1880
|
+
"time-macros",
|
|
1881
|
+
]
|
|
1882
|
+
|
|
1883
|
+
[[package]]
|
|
1884
|
+
name = "time-core"
|
|
1885
|
+
version = "0.1.9"
|
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "time-macros"
|
|
1891
|
+
version = "0.2.32"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"num-conv",
|
|
1896
|
+
"time-core",
|
|
1897
|
+
]
|
|
1898
|
+
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "tinystr"
|
|
1901
|
+
version = "0.8.3"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1904
|
+
dependencies = [
|
|
1905
|
+
"displaydoc",
|
|
1906
|
+
"zerovec",
|
|
1907
|
+
]
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "tokio"
|
|
1911
|
+
version = "1.53.1"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
1914
|
+
dependencies = [
|
|
1915
|
+
"bytes",
|
|
1916
|
+
"libc",
|
|
1917
|
+
"mio",
|
|
1918
|
+
"parking_lot",
|
|
1919
|
+
"pin-project-lite",
|
|
1920
|
+
"signal-hook-registry",
|
|
1921
|
+
"socket2",
|
|
1922
|
+
"tokio-macros",
|
|
1923
|
+
"windows-sys 0.61.2",
|
|
1924
|
+
]
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "tokio-macros"
|
|
1928
|
+
version = "2.7.2"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"proc-macro2",
|
|
1933
|
+
"quote",
|
|
1934
|
+
"syn 3.0.3",
|
|
1935
|
+
]
|
|
1936
|
+
|
|
1937
|
+
[[package]]
|
|
1938
|
+
name = "tokio-native-tls"
|
|
1939
|
+
version = "0.3.1"
|
|
1940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
1942
|
+
dependencies = [
|
|
1943
|
+
"native-tls",
|
|
1944
|
+
"tokio",
|
|
1945
|
+
]
|
|
1946
|
+
|
|
1947
|
+
[[package]]
|
|
1948
|
+
name = "tokio-rustls"
|
|
1949
|
+
version = "0.26.4"
|
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1952
|
+
dependencies = [
|
|
1953
|
+
"rustls",
|
|
1954
|
+
"tokio",
|
|
1955
|
+
]
|
|
1956
|
+
|
|
1957
|
+
[[package]]
|
|
1958
|
+
name = "tokio-util"
|
|
1959
|
+
version = "0.7.19"
|
|
1960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
1962
|
+
dependencies = [
|
|
1963
|
+
"bytes",
|
|
1964
|
+
"futures-core",
|
|
1965
|
+
"futures-sink",
|
|
1966
|
+
"libc",
|
|
1967
|
+
"pin-project-lite",
|
|
1968
|
+
"tokio",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "tower"
|
|
1973
|
+
version = "0.5.3"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1976
|
+
dependencies = [
|
|
1977
|
+
"futures-core",
|
|
1978
|
+
"futures-util",
|
|
1979
|
+
"pin-project-lite",
|
|
1980
|
+
"sync_wrapper",
|
|
1981
|
+
"tokio",
|
|
1982
|
+
"tower-layer",
|
|
1983
|
+
"tower-service",
|
|
1984
|
+
"tracing",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "tower-http"
|
|
1989
|
+
version = "0.5.2"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
|
|
1992
|
+
dependencies = [
|
|
1993
|
+
"bitflags",
|
|
1994
|
+
"bytes",
|
|
1995
|
+
"http",
|
|
1996
|
+
"http-body",
|
|
1997
|
+
"http-body-util",
|
|
1998
|
+
"pin-project-lite",
|
|
1999
|
+
"tower-layer",
|
|
2000
|
+
"tower-service",
|
|
2001
|
+
"tracing",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "tower-http"
|
|
2006
|
+
version = "0.6.11"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
2009
|
+
dependencies = [
|
|
2010
|
+
"async-compression",
|
|
2011
|
+
"bitflags",
|
|
2012
|
+
"bytes",
|
|
2013
|
+
"futures-core",
|
|
2014
|
+
"futures-util",
|
|
2015
|
+
"http",
|
|
2016
|
+
"http-body",
|
|
2017
|
+
"http-body-util",
|
|
2018
|
+
"pin-project-lite",
|
|
2019
|
+
"tokio",
|
|
2020
|
+
"tokio-util",
|
|
2021
|
+
"tower",
|
|
2022
|
+
"tower-layer",
|
|
2023
|
+
"tower-service",
|
|
2024
|
+
"url",
|
|
2025
|
+
]
|
|
2026
|
+
|
|
2027
|
+
[[package]]
|
|
2028
|
+
name = "tower-layer"
|
|
2029
|
+
version = "0.3.3"
|
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2032
|
+
|
|
2033
|
+
[[package]]
|
|
2034
|
+
name = "tower-service"
|
|
2035
|
+
version = "0.3.3"
|
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "tracing"
|
|
2041
|
+
version = "0.1.44"
|
|
2042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2044
|
+
dependencies = [
|
|
2045
|
+
"log",
|
|
2046
|
+
"pin-project-lite",
|
|
2047
|
+
"tracing-attributes",
|
|
2048
|
+
"tracing-core",
|
|
2049
|
+
]
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "tracing-attributes"
|
|
2053
|
+
version = "0.1.31"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2056
|
+
dependencies = [
|
|
2057
|
+
"proc-macro2",
|
|
2058
|
+
"quote",
|
|
2059
|
+
"syn 2.0.119",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "tracing-core"
|
|
2064
|
+
version = "0.1.36"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"once_cell",
|
|
2069
|
+
"valuable",
|
|
2070
|
+
]
|
|
2071
|
+
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "tracing-log"
|
|
2074
|
+
version = "0.2.0"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2077
|
+
dependencies = [
|
|
2078
|
+
"log",
|
|
2079
|
+
"once_cell",
|
|
2080
|
+
"tracing-core",
|
|
2081
|
+
]
|
|
2082
|
+
|
|
2083
|
+
[[package]]
|
|
2084
|
+
name = "tracing-subscriber"
|
|
2085
|
+
version = "0.3.23"
|
|
2086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2087
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
2088
|
+
dependencies = [
|
|
2089
|
+
"matchers",
|
|
2090
|
+
"nu-ansi-term",
|
|
2091
|
+
"once_cell",
|
|
2092
|
+
"regex-automata",
|
|
2093
|
+
"sharded-slab",
|
|
2094
|
+
"smallvec",
|
|
2095
|
+
"thread_local",
|
|
2096
|
+
"tracing",
|
|
2097
|
+
"tracing-core",
|
|
2098
|
+
"tracing-log",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "try-lock"
|
|
2103
|
+
version = "0.2.5"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "unicode-ident"
|
|
2109
|
+
version = "1.0.24"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "unicode-width"
|
|
2115
|
+
version = "0.2.2"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2118
|
+
|
|
2119
|
+
[[package]]
|
|
2120
|
+
name = "untrusted"
|
|
2121
|
+
version = "0.9.0"
|
|
2122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2124
|
+
|
|
2125
|
+
[[package]]
|
|
2126
|
+
name = "url"
|
|
2127
|
+
version = "2.5.8"
|
|
2128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2130
|
+
dependencies = [
|
|
2131
|
+
"form_urlencoded",
|
|
2132
|
+
"idna",
|
|
2133
|
+
"percent-encoding",
|
|
2134
|
+
"serde",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "urlencoding"
|
|
2139
|
+
version = "2.1.3"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
2142
|
+
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "utf-8"
|
|
2145
|
+
version = "0.7.6"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2148
|
+
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "utf8_iter"
|
|
2151
|
+
version = "1.0.4"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "valuable"
|
|
2157
|
+
version = "0.1.1"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2160
|
+
|
|
2161
|
+
[[package]]
|
|
2162
|
+
name = "vcpkg"
|
|
2163
|
+
version = "0.2.15"
|
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2166
|
+
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "version_check"
|
|
2169
|
+
version = "0.9.5"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "want"
|
|
2175
|
+
version = "0.3.1"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"try-lock",
|
|
2180
|
+
]
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "wasi"
|
|
2184
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "wasip2"
|
|
2190
|
+
version = "1.0.4+wasi-0.2.12"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
2193
|
+
dependencies = [
|
|
2194
|
+
"wit-bindgen",
|
|
2195
|
+
]
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "wasm-bindgen"
|
|
2199
|
+
version = "0.2.126"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
2202
|
+
dependencies = [
|
|
2203
|
+
"cfg-if",
|
|
2204
|
+
"once_cell",
|
|
2205
|
+
"rustversion",
|
|
2206
|
+
"wasm-bindgen-macro",
|
|
2207
|
+
"wasm-bindgen-shared",
|
|
2208
|
+
]
|
|
2209
|
+
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "wasm-bindgen-futures"
|
|
2212
|
+
version = "0.4.76"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
2215
|
+
dependencies = [
|
|
2216
|
+
"js-sys",
|
|
2217
|
+
"wasm-bindgen",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "wasm-bindgen-macro"
|
|
2222
|
+
version = "0.2.126"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"quote",
|
|
2227
|
+
"wasm-bindgen-macro-support",
|
|
2228
|
+
]
|
|
2229
|
+
|
|
2230
|
+
[[package]]
|
|
2231
|
+
name = "wasm-bindgen-macro-support"
|
|
2232
|
+
version = "0.2.126"
|
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
2235
|
+
dependencies = [
|
|
2236
|
+
"bumpalo",
|
|
2237
|
+
"proc-macro2",
|
|
2238
|
+
"quote",
|
|
2239
|
+
"syn 2.0.119",
|
|
2240
|
+
"wasm-bindgen-shared",
|
|
2241
|
+
]
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "wasm-bindgen-shared"
|
|
2245
|
+
version = "0.2.126"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"unicode-ident",
|
|
2250
|
+
]
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "web-sys"
|
|
2254
|
+
version = "0.3.103"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"js-sys",
|
|
2259
|
+
"wasm-bindgen",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "windows-link"
|
|
2264
|
+
version = "0.2.1"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "windows-registry"
|
|
2270
|
+
version = "0.6.1"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"windows-link",
|
|
2275
|
+
"windows-result",
|
|
2276
|
+
"windows-strings",
|
|
2277
|
+
]
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "windows-result"
|
|
2281
|
+
version = "0.4.1"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2284
|
+
dependencies = [
|
|
2285
|
+
"windows-link",
|
|
2286
|
+
]
|
|
2287
|
+
|
|
2288
|
+
[[package]]
|
|
2289
|
+
name = "windows-strings"
|
|
2290
|
+
version = "0.5.1"
|
|
2291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2293
|
+
dependencies = [
|
|
2294
|
+
"windows-link",
|
|
2295
|
+
]
|
|
2296
|
+
|
|
2297
|
+
[[package]]
|
|
2298
|
+
name = "windows-sys"
|
|
2299
|
+
version = "0.52.0"
|
|
2300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2302
|
+
dependencies = [
|
|
2303
|
+
"windows-targets",
|
|
2304
|
+
]
|
|
2305
|
+
|
|
2306
|
+
[[package]]
|
|
2307
|
+
name = "windows-sys"
|
|
2308
|
+
version = "0.61.2"
|
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2311
|
+
dependencies = [
|
|
2312
|
+
"windows-link",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "windows-targets"
|
|
2317
|
+
version = "0.52.6"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2320
|
+
dependencies = [
|
|
2321
|
+
"windows_aarch64_gnullvm",
|
|
2322
|
+
"windows_aarch64_msvc",
|
|
2323
|
+
"windows_i686_gnu",
|
|
2324
|
+
"windows_i686_gnullvm",
|
|
2325
|
+
"windows_i686_msvc",
|
|
2326
|
+
"windows_x86_64_gnu",
|
|
2327
|
+
"windows_x86_64_gnullvm",
|
|
2328
|
+
"windows_x86_64_msvc",
|
|
2329
|
+
]
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "windows_aarch64_gnullvm"
|
|
2333
|
+
version = "0.52.6"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "windows_aarch64_msvc"
|
|
2339
|
+
version = "0.52.6"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2342
|
+
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "windows_i686_gnu"
|
|
2345
|
+
version = "0.52.6"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2348
|
+
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "windows_i686_gnullvm"
|
|
2351
|
+
version = "0.52.6"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2354
|
+
|
|
2355
|
+
[[package]]
|
|
2356
|
+
name = "windows_i686_msvc"
|
|
2357
|
+
version = "0.52.6"
|
|
2358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2359
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "windows_x86_64_gnu"
|
|
2363
|
+
version = "0.52.6"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "windows_x86_64_gnullvm"
|
|
2369
|
+
version = "0.52.6"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2372
|
+
|
|
2373
|
+
[[package]]
|
|
2374
|
+
name = "windows_x86_64_msvc"
|
|
2375
|
+
version = "0.52.6"
|
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2378
|
+
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "wit-bindgen"
|
|
2381
|
+
version = "0.57.1"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2384
|
+
|
|
2385
|
+
[[package]]
|
|
2386
|
+
name = "writeable"
|
|
2387
|
+
version = "0.6.3"
|
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "yoke"
|
|
2393
|
+
version = "0.8.3"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2396
|
+
dependencies = [
|
|
2397
|
+
"stable_deref_trait",
|
|
2398
|
+
"yoke-derive",
|
|
2399
|
+
"zerofrom",
|
|
2400
|
+
]
|
|
2401
|
+
|
|
2402
|
+
[[package]]
|
|
2403
|
+
name = "yoke-derive"
|
|
2404
|
+
version = "0.8.2"
|
|
2405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2406
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2407
|
+
dependencies = [
|
|
2408
|
+
"proc-macro2",
|
|
2409
|
+
"quote",
|
|
2410
|
+
"syn 2.0.119",
|
|
2411
|
+
"synstructure",
|
|
2412
|
+
]
|
|
2413
|
+
|
|
2414
|
+
[[package]]
|
|
2415
|
+
name = "zerocopy"
|
|
2416
|
+
version = "0.8.55"
|
|
2417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
+
checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
|
|
2419
|
+
dependencies = [
|
|
2420
|
+
"zerocopy-derive",
|
|
2421
|
+
]
|
|
2422
|
+
|
|
2423
|
+
[[package]]
|
|
2424
|
+
name = "zerocopy-derive"
|
|
2425
|
+
version = "0.8.55"
|
|
2426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2427
|
+
checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
|
|
2428
|
+
dependencies = [
|
|
2429
|
+
"proc-macro2",
|
|
2430
|
+
"quote",
|
|
2431
|
+
"syn 2.0.119",
|
|
2432
|
+
]
|
|
2433
|
+
|
|
2434
|
+
[[package]]
|
|
2435
|
+
name = "zerofrom"
|
|
2436
|
+
version = "0.1.8"
|
|
2437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2439
|
+
dependencies = [
|
|
2440
|
+
"zerofrom-derive",
|
|
2441
|
+
]
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "zerofrom-derive"
|
|
2445
|
+
version = "0.1.7"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"proc-macro2",
|
|
2450
|
+
"quote",
|
|
2451
|
+
"syn 2.0.119",
|
|
2452
|
+
"synstructure",
|
|
2453
|
+
]
|
|
2454
|
+
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "zeroize"
|
|
2457
|
+
version = "1.9.0"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "zerotrie"
|
|
2463
|
+
version = "0.2.4"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"displaydoc",
|
|
2468
|
+
"yoke",
|
|
2469
|
+
"zerofrom",
|
|
2470
|
+
]
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "zerovec"
|
|
2474
|
+
version = "0.11.6"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"yoke",
|
|
2479
|
+
"zerofrom",
|
|
2480
|
+
"zerovec-derive",
|
|
2481
|
+
]
|
|
2482
|
+
|
|
2483
|
+
[[package]]
|
|
2484
|
+
name = "zerovec-derive"
|
|
2485
|
+
version = "0.11.3"
|
|
2486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2488
|
+
dependencies = [
|
|
2489
|
+
"proc-macro2",
|
|
2490
|
+
"quote",
|
|
2491
|
+
"syn 2.0.119",
|
|
2492
|
+
]
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "zmij"
|
|
2496
|
+
version = "1.0.23"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|