img-gen 0.1.0__tar.gz
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.
- img_gen-0.1.0/Cargo.lock +3420 -0
- img_gen-0.1.0/Cargo.toml +18 -0
- img_gen-0.1.0/LICENSE +21 -0
- img_gen-0.1.0/PKG-INFO +128 -0
- img_gen-0.1.0/README.md +112 -0
- img_gen-0.1.0/crates/img-gen/CHANGELOG.md +34 -0
- img_gen-0.1.0/crates/img-gen/Cargo.toml +43 -0
- img_gen-0.1.0/crates/img-gen/README.md +9 -0
- img_gen-0.1.0/crates/img-gen/src/lib.rs +24 -0
- img_gen-0.1.0/crates/img-gen/src/python_binding.rs +48 -0
- img_gen-0.1.0/crates/img-gen/tests/asset-webfont.svg +4 -0
- img_gen-0.1.0/crates/img-gen/tests/asset_tall.png +0 -0
- img_gen-0.1.0/crates/img-gen/tests/layouts/default.yml +47 -0
- img_gen-0.1.0/crates/img-gen/tests/message.png +0 -0
- img_gen-0.1.0/crates/img-gen/tests/message.svg +69 -0
- img_gen-0.1.0/crates/img-gen/tests/noto-sans-latin-400-normal.ttf +0 -0
- img_gen-0.1.0/crates/img-gen/tests/out/.gitignore +2 -0
- img_gen-0.1.0/crates/img-gen/tests/test_ellipse.py +82 -0
- img_gen-0.1.0/crates/img-gen/tests/test_gradients.py +114 -0
- img_gen-0.1.0/crates/img-gen/tests/test_images.py +83 -0
- img_gen-0.1.0/crates/img-gen/tests/test_mask.py +52 -0
- img_gen-0.1.0/crates/img-gen/tests/test_polygon.py +58 -0
- img_gen-0.1.0/crates/img-gen/tests/test_rectangle.py +52 -0
- img_gen-0.1.0/crates/img-gen/tests/test_typography.py +176 -0
- img_gen-0.1.0/crates/img-gen-renderer/CHANGELOG.md +33 -0
- img_gen-0.1.0/crates/img-gen-renderer/Cargo.toml +42 -0
- img_gen-0.1.0/crates/img-gen-renderer/README.md +47 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/error.rs +151 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/mod.rs +155 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/debug.rs +309 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/ellipse.rs +137 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/fonts.rs +138 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/images.rs +267 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/mask.rs +58 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/mod.rs +273 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/polygon.rs +76 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/rectangle.rs +69 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/generator/renderer/typography.rs +781 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/lib.rs +23 -0
- img_gen-0.1.0/crates/img-gen-renderer/src/python_binding.rs +61 -0
- img_gen-0.1.0/crates/img-gen-spec/CHANGELOG.md +29 -0
- img_gen-0.1.0/crates/img-gen-spec/Cargo.toml +28 -0
- img_gen-0.1.0/crates/img-gen-spec/README.md +72 -0
- img_gen-0.1.0/crates/img-gen-spec/src/error.rs +26 -0
- img_gen-0.1.0/crates/img-gen-spec/src/lib.rs +28 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/mod.rs +1 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/background.rs +23 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/colors/gradients/mod.rs +25 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/colors/gradients/types/conical.rs +40 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/colors/gradients/types/linear.rs +30 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/colors/gradients/types/mod.rs +3 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/colors/gradients/types/radial.rs +80 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/colors/mod.rs +89 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/colors/solid.rs +92 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/ellipse.rs +37 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/icon.rs +23 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/mod.rs +62 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/polygon.rs +109 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/rectangle.rs +45 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/size_offset.rs +89 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layers/typography.rs +111 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/layout.rs +145 -0
- img_gen-0.1.0/crates/img-gen-spec/src/python_binding/validators/mod.rs +2 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/background.rs +39 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/deserializing.rs +259 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/gradients/gradient_presets.rs +887 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/gradients/mod.rs +201 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/gradients/types/conical.rs +129 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/gradients/types/linear.rs +150 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/gradients/types/mod.rs +6 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/gradients/types/radial.rs +492 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/mod.rs +72 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/colors/solid.rs +163 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/ellipse.rs +57 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/icon.rs +39 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/mod.rs +119 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/polygon.rs +296 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/rectangle.rs +71 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/size_offset.rs +44 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/typography/font.rs +330 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/typography/line.rs +129 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layers/typography/mod.rs +101 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/layout.rs +308 -0
- img_gen-0.1.0/crates/img-gen-spec/src/validators/mod.rs +11 -0
- img_gen-0.1.0/pyproject.toml +52 -0
img_gen-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,3420 @@
|
|
|
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 = "aligned"
|
|
26
|
+
version = "0.4.3"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
|
|
29
|
+
dependencies = [
|
|
30
|
+
"as-slice",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "aligned-vec"
|
|
35
|
+
version = "0.6.4"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
38
|
+
dependencies = [
|
|
39
|
+
"equator",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "annotate-snippets"
|
|
44
|
+
version = "0.12.16"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "f211a51805bc641f3ad5b7664c77d2547af685cc33b4cd8d31964027a46f13f1"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"anstyle",
|
|
49
|
+
"memchr",
|
|
50
|
+
"unicode-width",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle"
|
|
55
|
+
version = "1.0.14"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anyhow"
|
|
61
|
+
version = "1.0.102"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "arbitrary"
|
|
67
|
+
version = "1.4.2"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "arg_enum_proc_macro"
|
|
73
|
+
version = "0.3.4"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"proc-macro2",
|
|
78
|
+
"quote",
|
|
79
|
+
"syn",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "arraydeque"
|
|
84
|
+
version = "0.5.1"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "arrayref"
|
|
90
|
+
version = "0.3.9"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "arrayvec"
|
|
96
|
+
version = "0.7.6"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "as-slice"
|
|
102
|
+
version = "0.2.1"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"stable_deref_trait",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "atomic-waker"
|
|
111
|
+
version = "1.1.2"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "autocfg"
|
|
117
|
+
version = "1.5.1"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "av-scenechange"
|
|
123
|
+
version = "0.14.1"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"aligned",
|
|
128
|
+
"anyhow",
|
|
129
|
+
"arg_enum_proc_macro",
|
|
130
|
+
"arrayvec",
|
|
131
|
+
"log",
|
|
132
|
+
"num-rational",
|
|
133
|
+
"num-traits",
|
|
134
|
+
"pastey",
|
|
135
|
+
"rayon",
|
|
136
|
+
"thiserror",
|
|
137
|
+
"v_frame",
|
|
138
|
+
"y4m",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "av1-grain"
|
|
143
|
+
version = "0.2.5"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"anyhow",
|
|
148
|
+
"arrayvec",
|
|
149
|
+
"log",
|
|
150
|
+
"nom",
|
|
151
|
+
"num-rational",
|
|
152
|
+
"v_frame",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "avif-serialize"
|
|
157
|
+
version = "0.8.9"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"arrayvec",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "aws-lc-rs"
|
|
166
|
+
version = "1.17.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"aws-lc-sys",
|
|
171
|
+
"zeroize",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "aws-lc-sys"
|
|
176
|
+
version = "0.41.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"cc",
|
|
181
|
+
"cmake",
|
|
182
|
+
"dunce",
|
|
183
|
+
"fs_extra",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "base64"
|
|
188
|
+
version = "0.22.1"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "bit_field"
|
|
194
|
+
version = "0.10.3"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "bitflags"
|
|
200
|
+
version = "2.11.1"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "bitstream-io"
|
|
206
|
+
version = "4.10.0"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"no_std_io2",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "block-buffer"
|
|
215
|
+
version = "0.12.0"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"hybrid-array",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "built"
|
|
224
|
+
version = "0.8.1"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "bumpalo"
|
|
230
|
+
version = "3.20.3"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "bytemuck"
|
|
236
|
+
version = "1.25.0"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"bytemuck_derive",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "bytemuck_derive"
|
|
245
|
+
version = "1.10.2"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"proc-macro2",
|
|
250
|
+
"quote",
|
|
251
|
+
"syn",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "byteorder-lite"
|
|
256
|
+
version = "0.1.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "bytes"
|
|
262
|
+
version = "1.11.1"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "cc"
|
|
268
|
+
version = "1.2.62"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"find-msvc-tools",
|
|
273
|
+
"jobserver",
|
|
274
|
+
"libc",
|
|
275
|
+
"shlex",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "cfg-if"
|
|
280
|
+
version = "1.0.4"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "cfg_aliases"
|
|
286
|
+
version = "0.2.1"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "cmake"
|
|
292
|
+
version = "0.1.58"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"cc",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "color_quant"
|
|
301
|
+
version = "1.1.0"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "colorgrad"
|
|
307
|
+
version = "0.8.0"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "aee94de557db6ddae3ca7b37b5fbe77ed6f159219f1815a8c2c1a9854c73087e"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"csscolorparser",
|
|
312
|
+
"libm",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "combine"
|
|
317
|
+
version = "4.6.7"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"bytes",
|
|
322
|
+
"memchr",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "const-oid"
|
|
327
|
+
version = "0.10.2"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "core-foundation"
|
|
333
|
+
version = "0.9.4"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"core-foundation-sys",
|
|
338
|
+
"libc",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "core-foundation"
|
|
343
|
+
version = "0.10.1"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"core-foundation-sys",
|
|
348
|
+
"libc",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "core-foundation-sys"
|
|
353
|
+
version = "0.8.7"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "core_maths"
|
|
359
|
+
version = "0.1.1"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"libm",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "cpufeatures"
|
|
368
|
+
version = "0.3.0"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"libc",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "crc32fast"
|
|
377
|
+
version = "1.5.0"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"cfg-if",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "crossbeam-deque"
|
|
386
|
+
version = "0.8.6"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"crossbeam-epoch",
|
|
391
|
+
"crossbeam-utils",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "crossbeam-epoch"
|
|
396
|
+
version = "0.9.18"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"crossbeam-utils",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "crossbeam-utils"
|
|
405
|
+
version = "0.8.21"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "crunchy"
|
|
411
|
+
version = "0.2.4"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "crypto-common"
|
|
417
|
+
version = "0.2.2"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"hybrid-array",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "csscolorparser"
|
|
426
|
+
version = "0.8.3"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "199f851bd3cb5004c09474252c7f74e7c047441ed0979bf3688a7106a13da952"
|
|
429
|
+
dependencies = [
|
|
430
|
+
"num-traits",
|
|
431
|
+
"phf",
|
|
432
|
+
"serde",
|
|
433
|
+
"uncased",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "data-url"
|
|
438
|
+
version = "0.3.2"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "digest"
|
|
444
|
+
version = "0.11.3"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"block-buffer",
|
|
449
|
+
"const-oid",
|
|
450
|
+
"crypto-common",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "directories"
|
|
455
|
+
version = "6.0.0"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"dirs-sys",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "dirs-sys"
|
|
464
|
+
version = "0.5.0"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"libc",
|
|
469
|
+
"option-ext",
|
|
470
|
+
"redox_users",
|
|
471
|
+
"windows-sys 0.61.2",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "displaydoc"
|
|
476
|
+
version = "0.2.6"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"proc-macro2",
|
|
481
|
+
"quote",
|
|
482
|
+
"syn",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "dunce"
|
|
487
|
+
version = "1.0.5"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "either"
|
|
493
|
+
version = "1.16.0"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "encoding_rs"
|
|
499
|
+
version = "0.8.35"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"cfg-if",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "encoding_rs_io"
|
|
508
|
+
version = "0.1.7"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"encoding_rs",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "equator"
|
|
517
|
+
version = "0.4.2"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"equator-macro",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "equator-macro"
|
|
526
|
+
version = "0.4.2"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"proc-macro2",
|
|
531
|
+
"quote",
|
|
532
|
+
"syn",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "equivalent"
|
|
537
|
+
version = "1.0.2"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "euclid"
|
|
543
|
+
version = "0.22.14"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"num-traits",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "exr"
|
|
552
|
+
version = "1.74.0"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"bit_field",
|
|
557
|
+
"half",
|
|
558
|
+
"lebe",
|
|
559
|
+
"miniz_oxide",
|
|
560
|
+
"rayon-core",
|
|
561
|
+
"smallvec",
|
|
562
|
+
"zune-inflate",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "fastrand"
|
|
567
|
+
version = "2.4.1"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "fax"
|
|
573
|
+
version = "0.2.7"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "fdeflate"
|
|
579
|
+
version = "0.3.7"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"simd-adler32",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "find-msvc-tools"
|
|
588
|
+
version = "0.1.9"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "flate2"
|
|
594
|
+
version = "1.1.9"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"crc32fast",
|
|
599
|
+
"miniz_oxide",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "float-cmp"
|
|
604
|
+
version = "0.9.0"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "fnv"
|
|
610
|
+
version = "1.0.7"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "foldhash"
|
|
616
|
+
version = "0.2.0"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "font-types"
|
|
622
|
+
version = "0.11.3"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "5b38ad915f6dadd993ced50848a8291a543bd41ca62bc10740d5e64e2ab4cfd7"
|
|
625
|
+
dependencies = [
|
|
626
|
+
"bytemuck",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "fontawesome-free-pack"
|
|
631
|
+
version = "7.2.0"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "731e90402ef577054c218cdfbc3a26c0226fec2f633ba4d859fdb3ece73af017"
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "fontdb"
|
|
637
|
+
version = "0.23.0"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"log",
|
|
642
|
+
"memmap2",
|
|
643
|
+
"slotmap",
|
|
644
|
+
"tinyvec",
|
|
645
|
+
"ttf-parser",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "fontique"
|
|
650
|
+
version = "0.9.0"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "7c20b425addb8661e97fe1d51c4d8bcec3ec29ed6ad0db983976a7521276b8f7"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"hashbrown",
|
|
655
|
+
"linebender_resource_handle",
|
|
656
|
+
"memmap2",
|
|
657
|
+
"parlance",
|
|
658
|
+
"read-fonts 0.39.2",
|
|
659
|
+
"smallvec",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "fontsource_downloader"
|
|
664
|
+
version = "0.3.1"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "2012461271e9bb87165c5151a28d5030bda807a8f63d8ab10ab4a7125143bcab"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"directories",
|
|
669
|
+
"log",
|
|
670
|
+
"reqwest",
|
|
671
|
+
"serde",
|
|
672
|
+
"serde_json",
|
|
673
|
+
"thiserror",
|
|
674
|
+
"tokio",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "form_urlencoded"
|
|
679
|
+
version = "1.2.2"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"percent-encoding",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "fs_extra"
|
|
688
|
+
version = "1.3.0"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "futures-channel"
|
|
694
|
+
version = "0.3.32"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"futures-core",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "futures-core"
|
|
703
|
+
version = "0.3.32"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "futures-macro"
|
|
709
|
+
version = "0.3.32"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"proc-macro2",
|
|
714
|
+
"quote",
|
|
715
|
+
"syn",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "futures-sink"
|
|
720
|
+
version = "0.3.32"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "futures-task"
|
|
726
|
+
version = "0.3.32"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "futures-util"
|
|
732
|
+
version = "0.3.32"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
735
|
+
dependencies = [
|
|
736
|
+
"futures-core",
|
|
737
|
+
"futures-macro",
|
|
738
|
+
"futures-task",
|
|
739
|
+
"pin-project-lite",
|
|
740
|
+
"slab",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "getrandom"
|
|
745
|
+
version = "0.2.17"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"cfg-if",
|
|
750
|
+
"js-sys",
|
|
751
|
+
"libc",
|
|
752
|
+
"wasi",
|
|
753
|
+
"wasm-bindgen",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "getrandom"
|
|
758
|
+
version = "0.3.4"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"cfg-if",
|
|
763
|
+
"js-sys",
|
|
764
|
+
"libc",
|
|
765
|
+
"r-efi",
|
|
766
|
+
"wasip2",
|
|
767
|
+
"wasm-bindgen",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "gif"
|
|
772
|
+
version = "0.14.2"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"color_quant",
|
|
777
|
+
"weezl",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "granit-parser"
|
|
782
|
+
version = "0.0.3"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "f50ba32164f9e098d5da618776a32afbb32270adcbe3d3d006107dae11e37c91"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"arraydeque",
|
|
787
|
+
"smallvec",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "h2"
|
|
792
|
+
version = "0.4.14"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"atomic-waker",
|
|
797
|
+
"bytes",
|
|
798
|
+
"fnv",
|
|
799
|
+
"futures-core",
|
|
800
|
+
"futures-sink",
|
|
801
|
+
"http",
|
|
802
|
+
"indexmap",
|
|
803
|
+
"slab",
|
|
804
|
+
"tokio",
|
|
805
|
+
"tokio-util",
|
|
806
|
+
"tracing",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "half"
|
|
811
|
+
version = "2.7.1"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"cfg-if",
|
|
816
|
+
"crunchy",
|
|
817
|
+
"zerocopy",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "harfrust"
|
|
822
|
+
version = "0.6.2"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "551ed25397e4b444e89686602877d5cf3a7f6e3d548dcac37a8357d1e195f4df"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"bitflags",
|
|
827
|
+
"bytemuck",
|
|
828
|
+
"core_maths",
|
|
829
|
+
"read-fonts 0.39.2",
|
|
830
|
+
"smallvec",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "hashbrown"
|
|
835
|
+
version = "0.17.1"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"foldhash",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "heck"
|
|
844
|
+
version = "0.5.0"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "http"
|
|
850
|
+
version = "1.4.1"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"bytes",
|
|
855
|
+
"itoa",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "http-body"
|
|
860
|
+
version = "1.0.1"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"bytes",
|
|
865
|
+
"http",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "http-body-util"
|
|
870
|
+
version = "0.1.3"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"bytes",
|
|
875
|
+
"futures-core",
|
|
876
|
+
"http",
|
|
877
|
+
"http-body",
|
|
878
|
+
"pin-project-lite",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "httparse"
|
|
883
|
+
version = "1.10.1"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
886
|
+
|
|
887
|
+
[[package]]
|
|
888
|
+
name = "hybrid-array"
|
|
889
|
+
version = "0.4.12"
|
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
891
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
892
|
+
dependencies = [
|
|
893
|
+
"typenum",
|
|
894
|
+
]
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "hyper"
|
|
898
|
+
version = "1.10.0"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "eb92f162bf56536459fc83c79b974bb12837acfed43d6bc370a7916d0ae15ecc"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"atomic-waker",
|
|
903
|
+
"bytes",
|
|
904
|
+
"futures-channel",
|
|
905
|
+
"futures-core",
|
|
906
|
+
"h2",
|
|
907
|
+
"http",
|
|
908
|
+
"http-body",
|
|
909
|
+
"httparse",
|
|
910
|
+
"itoa",
|
|
911
|
+
"pin-project-lite",
|
|
912
|
+
"smallvec",
|
|
913
|
+
"tokio",
|
|
914
|
+
"want",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "hyper-rustls"
|
|
919
|
+
version = "0.27.9"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"http",
|
|
924
|
+
"hyper",
|
|
925
|
+
"hyper-util",
|
|
926
|
+
"rustls",
|
|
927
|
+
"tokio",
|
|
928
|
+
"tokio-rustls",
|
|
929
|
+
"tower-service",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "hyper-util"
|
|
934
|
+
version = "0.1.20"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"base64",
|
|
939
|
+
"bytes",
|
|
940
|
+
"futures-channel",
|
|
941
|
+
"futures-util",
|
|
942
|
+
"http",
|
|
943
|
+
"http-body",
|
|
944
|
+
"hyper",
|
|
945
|
+
"ipnet",
|
|
946
|
+
"libc",
|
|
947
|
+
"percent-encoding",
|
|
948
|
+
"pin-project-lite",
|
|
949
|
+
"socket2",
|
|
950
|
+
"system-configuration",
|
|
951
|
+
"tokio",
|
|
952
|
+
"tower-service",
|
|
953
|
+
"tracing",
|
|
954
|
+
"windows-registry",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "icu_collections"
|
|
959
|
+
version = "2.2.0"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"displaydoc",
|
|
964
|
+
"potential_utf",
|
|
965
|
+
"utf8_iter",
|
|
966
|
+
"yoke",
|
|
967
|
+
"zerofrom",
|
|
968
|
+
"zerovec",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "icu_locale"
|
|
973
|
+
version = "2.2.0"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"icu_collections",
|
|
978
|
+
"icu_locale_core",
|
|
979
|
+
"icu_locale_data",
|
|
980
|
+
"icu_provider",
|
|
981
|
+
"potential_utf",
|
|
982
|
+
"tinystr",
|
|
983
|
+
"zerovec",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "icu_locale_core"
|
|
988
|
+
version = "2.2.0"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"displaydoc",
|
|
993
|
+
"litemap",
|
|
994
|
+
"serde",
|
|
995
|
+
"tinystr",
|
|
996
|
+
"writeable",
|
|
997
|
+
"zerovec",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "icu_locale_data"
|
|
1002
|
+
version = "2.2.0"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "icu_normalizer"
|
|
1008
|
+
version = "2.2.0"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"icu_collections",
|
|
1013
|
+
"icu_normalizer_data",
|
|
1014
|
+
"icu_properties",
|
|
1015
|
+
"icu_provider",
|
|
1016
|
+
"smallvec",
|
|
1017
|
+
"zerovec",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "icu_normalizer_data"
|
|
1022
|
+
version = "2.2.0"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "icu_properties"
|
|
1028
|
+
version = "2.2.0"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"icu_collections",
|
|
1033
|
+
"icu_locale_core",
|
|
1034
|
+
"icu_properties_data",
|
|
1035
|
+
"icu_provider",
|
|
1036
|
+
"zerotrie",
|
|
1037
|
+
"zerovec",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "icu_properties_data"
|
|
1042
|
+
version = "2.2.0"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "icu_provider"
|
|
1048
|
+
version = "2.2.0"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"displaydoc",
|
|
1053
|
+
"icu_locale_core",
|
|
1054
|
+
"serde",
|
|
1055
|
+
"stable_deref_trait",
|
|
1056
|
+
"writeable",
|
|
1057
|
+
"yoke",
|
|
1058
|
+
"zerofrom",
|
|
1059
|
+
"zerotrie",
|
|
1060
|
+
"zerovec",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "icu_segmenter"
|
|
1065
|
+
version = "2.2.0"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "5c0794db0b1a86193ac9c48768d0e6c52c54448e0870ad87907d456ee0dac964"
|
|
1068
|
+
dependencies = [
|
|
1069
|
+
"icu_collections",
|
|
1070
|
+
"icu_locale",
|
|
1071
|
+
"icu_provider",
|
|
1072
|
+
"icu_segmenter_data",
|
|
1073
|
+
"potential_utf",
|
|
1074
|
+
"utf8_iter",
|
|
1075
|
+
"zerovec",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "icu_segmenter_data"
|
|
1080
|
+
version = "2.2.0"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "e4a2c462a4d927d512f5f882a033ddd62f33a05bb9f230d98f736ac3dc85938f"
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "idna"
|
|
1086
|
+
version = "1.1.0"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"idna_adapter",
|
|
1091
|
+
"smallvec",
|
|
1092
|
+
"utf8_iter",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "idna_adapter"
|
|
1097
|
+
version = "1.2.2"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"icu_normalizer",
|
|
1102
|
+
"icu_properties",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "image"
|
|
1107
|
+
version = "0.25.10"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"bytemuck",
|
|
1112
|
+
"byteorder-lite",
|
|
1113
|
+
"color_quant",
|
|
1114
|
+
"exr",
|
|
1115
|
+
"gif",
|
|
1116
|
+
"image-webp",
|
|
1117
|
+
"moxcms",
|
|
1118
|
+
"num-traits",
|
|
1119
|
+
"png",
|
|
1120
|
+
"qoi",
|
|
1121
|
+
"ravif",
|
|
1122
|
+
"rayon",
|
|
1123
|
+
"rgb",
|
|
1124
|
+
"tiff",
|
|
1125
|
+
"zune-core",
|
|
1126
|
+
"zune-jpeg",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "image-webp"
|
|
1131
|
+
version = "0.2.4"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"byteorder-lite",
|
|
1136
|
+
"quick-error",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "imagesize"
|
|
1141
|
+
version = "0.14.0"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "09e54e57b4c48b40f7aec75635392b12b3421fa26fe8b4332e63138ed278459c"
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "img-gen"
|
|
1147
|
+
version = "0.1.0"
|
|
1148
|
+
dependencies = [
|
|
1149
|
+
"img-gen-renderer",
|
|
1150
|
+
"img-gen-spec",
|
|
1151
|
+
"pyo3",
|
|
1152
|
+
"reqwest",
|
|
1153
|
+
"serde-saphyr",
|
|
1154
|
+
"tokio",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "img-gen-renderer"
|
|
1159
|
+
version = "0.1.0"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"directories",
|
|
1162
|
+
"fontawesome-free-pack",
|
|
1163
|
+
"fontsource_downloader",
|
|
1164
|
+
"image",
|
|
1165
|
+
"img-gen-spec",
|
|
1166
|
+
"material-design-icons-pack",
|
|
1167
|
+
"octicons-pack",
|
|
1168
|
+
"parley",
|
|
1169
|
+
"pyo3",
|
|
1170
|
+
"pyo3-async-runtimes",
|
|
1171
|
+
"resvg",
|
|
1172
|
+
"sha2",
|
|
1173
|
+
"simple-icons-pack",
|
|
1174
|
+
"swash",
|
|
1175
|
+
"thiserror",
|
|
1176
|
+
"tokio",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "img-gen-spec"
|
|
1181
|
+
version = "0.1.0"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"colorgrad",
|
|
1184
|
+
"fontsource_downloader",
|
|
1185
|
+
"parley",
|
|
1186
|
+
"pyo3",
|
|
1187
|
+
"serde",
|
|
1188
|
+
"serde-saphyr",
|
|
1189
|
+
"serde_json",
|
|
1190
|
+
"thiserror",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "imgref"
|
|
1195
|
+
version = "1.12.1"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "40fac9d56ed6437b198fddba683305e8e2d651aa42647f00f5ae542e7f5c94a2"
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "indexmap"
|
|
1201
|
+
version = "2.14.0"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"equivalent",
|
|
1206
|
+
"hashbrown",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "interpolate_name"
|
|
1211
|
+
version = "0.2.4"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"proc-macro2",
|
|
1216
|
+
"quote",
|
|
1217
|
+
"syn",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "ipnet"
|
|
1222
|
+
version = "2.12.0"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "itertools"
|
|
1228
|
+
version = "0.14.0"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"either",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "itoa"
|
|
1237
|
+
version = "1.0.18"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "jni"
|
|
1243
|
+
version = "0.22.4"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"cfg-if",
|
|
1248
|
+
"combine",
|
|
1249
|
+
"jni-macros",
|
|
1250
|
+
"jni-sys",
|
|
1251
|
+
"log",
|
|
1252
|
+
"simd_cesu8",
|
|
1253
|
+
"thiserror",
|
|
1254
|
+
"walkdir",
|
|
1255
|
+
"windows-link",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "jni-macros"
|
|
1260
|
+
version = "0.22.4"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1263
|
+
dependencies = [
|
|
1264
|
+
"proc-macro2",
|
|
1265
|
+
"quote",
|
|
1266
|
+
"rustc_version",
|
|
1267
|
+
"simd_cesu8",
|
|
1268
|
+
"syn",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "jni-sys"
|
|
1273
|
+
version = "0.4.1"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"jni-sys-macros",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "jni-sys-macros"
|
|
1282
|
+
version = "0.4.1"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"quote",
|
|
1287
|
+
"syn",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "jobserver"
|
|
1292
|
+
version = "0.1.34"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"getrandom 0.3.4",
|
|
1297
|
+
"libc",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "js-sys"
|
|
1302
|
+
version = "0.3.99"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"cfg-if",
|
|
1307
|
+
"futures-util",
|
|
1308
|
+
"once_cell",
|
|
1309
|
+
"wasm-bindgen",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "kurbo"
|
|
1314
|
+
version = "0.13.1"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "4b60dfc32f652b926df6192e55525b16d186c69d47876c3ead4da5cc9f8450e2"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"arrayvec",
|
|
1319
|
+
"euclid",
|
|
1320
|
+
"polycool",
|
|
1321
|
+
"smallvec",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "lebe"
|
|
1326
|
+
version = "0.5.3"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "libc"
|
|
1332
|
+
version = "0.2.186"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "libfuzzer-sys"
|
|
1338
|
+
version = "0.4.12"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"arbitrary",
|
|
1343
|
+
"cc",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "libm"
|
|
1348
|
+
version = "0.2.16"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "libredox"
|
|
1354
|
+
version = "0.1.17"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"libc",
|
|
1359
|
+
]
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "linebender_resource_handle"
|
|
1363
|
+
version = "0.1.1"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "d4a5ff6bcca6c4867b1c4fd4ef63e4db7436ef363e0ad7531d1558856bae64f4"
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "litemap"
|
|
1369
|
+
version = "0.8.2"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "log"
|
|
1375
|
+
version = "0.4.30"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "loop9"
|
|
1381
|
+
version = "0.1.5"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"imgref",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "lru-slab"
|
|
1390
|
+
version = "0.1.2"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "material-design-icons-pack"
|
|
1396
|
+
version = "7.4.47"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "c3b6859e7550a46151bd4af1c3f487e4f2846532ccd65977d89f3b058fc61f08"
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "maybe-rayon"
|
|
1402
|
+
version = "0.1.1"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
1405
|
+
dependencies = [
|
|
1406
|
+
"cfg-if",
|
|
1407
|
+
"rayon",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "memchr"
|
|
1412
|
+
version = "2.8.1"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "memmap2"
|
|
1418
|
+
version = "0.9.10"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"libc",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "mime"
|
|
1427
|
+
version = "0.3.17"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "miniz_oxide"
|
|
1433
|
+
version = "0.8.9"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"adler2",
|
|
1438
|
+
"simd-adler32",
|
|
1439
|
+
]
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "mio"
|
|
1443
|
+
version = "1.2.1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"libc",
|
|
1448
|
+
"wasi",
|
|
1449
|
+
"windows-sys 0.61.2",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "moxcms"
|
|
1454
|
+
version = "0.8.1"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"num-traits",
|
|
1459
|
+
"pxfm",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "new_debug_unreachable"
|
|
1464
|
+
version = "1.0.6"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "no_std_io2"
|
|
1470
|
+
version = "0.9.4"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"memchr",
|
|
1475
|
+
]
|
|
1476
|
+
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "nohash-hasher"
|
|
1479
|
+
version = "0.2.0"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "nom"
|
|
1485
|
+
version = "8.0.0"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
1488
|
+
dependencies = [
|
|
1489
|
+
"memchr",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "noop_proc_macro"
|
|
1494
|
+
version = "0.3.0"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "num-bigint"
|
|
1500
|
+
version = "0.4.6"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"num-integer",
|
|
1505
|
+
"num-traits",
|
|
1506
|
+
]
|
|
1507
|
+
|
|
1508
|
+
[[package]]
|
|
1509
|
+
name = "num-derive"
|
|
1510
|
+
version = "0.4.2"
|
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1513
|
+
dependencies = [
|
|
1514
|
+
"proc-macro2",
|
|
1515
|
+
"quote",
|
|
1516
|
+
"syn",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "num-integer"
|
|
1521
|
+
version = "0.1.46"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"num-traits",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "num-rational"
|
|
1530
|
+
version = "0.4.2"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"num-bigint",
|
|
1535
|
+
"num-integer",
|
|
1536
|
+
"num-traits",
|
|
1537
|
+
]
|
|
1538
|
+
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "num-traits"
|
|
1541
|
+
version = "0.2.19"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1544
|
+
dependencies = [
|
|
1545
|
+
"autocfg",
|
|
1546
|
+
"libm",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "octicons-pack"
|
|
1551
|
+
version = "19.27.0"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "b519af53788f84861e75e4c2349adcf9f510c70198ef8b9acad3a793327fab08"
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "once_cell"
|
|
1557
|
+
version = "1.21.4"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "openssl-probe"
|
|
1563
|
+
version = "0.2.1"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "option-ext"
|
|
1569
|
+
version = "0.2.0"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1572
|
+
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "parlance"
|
|
1575
|
+
version = "0.1.0"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "4b6937eda350acc1a5d05872c3cbf99fe78619c269096e2be3d4a350058639d5"
|
|
1578
|
+
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "parley"
|
|
1581
|
+
version = "0.9.0"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "8fad031076f48f0d4d85ce1aea9b94b4e715a4d636a030a123038f8f5b5e4343"
|
|
1584
|
+
dependencies = [
|
|
1585
|
+
"fontique",
|
|
1586
|
+
"harfrust",
|
|
1587
|
+
"hashbrown",
|
|
1588
|
+
"icu_normalizer",
|
|
1589
|
+
"icu_properties",
|
|
1590
|
+
"icu_segmenter",
|
|
1591
|
+
"linebender_resource_handle",
|
|
1592
|
+
"parlance",
|
|
1593
|
+
"parley_data",
|
|
1594
|
+
"skrifa 0.42.1",
|
|
1595
|
+
]
|
|
1596
|
+
|
|
1597
|
+
[[package]]
|
|
1598
|
+
name = "parley_data"
|
|
1599
|
+
version = "0.9.0"
|
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
+
checksum = "19ab9ace3fad1b9ed603ddac5b595e69931fc50263d7e04e4055015b77b02da5"
|
|
1602
|
+
dependencies = [
|
|
1603
|
+
"icu_properties",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "paste"
|
|
1608
|
+
version = "1.0.15"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "pastey"
|
|
1614
|
+
version = "0.1.1"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "percent-encoding"
|
|
1620
|
+
version = "2.3.2"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "phf"
|
|
1626
|
+
version = "0.13.1"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
1629
|
+
dependencies = [
|
|
1630
|
+
"phf_macros",
|
|
1631
|
+
"phf_shared",
|
|
1632
|
+
"serde",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "phf_generator"
|
|
1637
|
+
version = "0.13.1"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
1640
|
+
dependencies = [
|
|
1641
|
+
"fastrand",
|
|
1642
|
+
"phf_shared",
|
|
1643
|
+
]
|
|
1644
|
+
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "phf_macros"
|
|
1647
|
+
version = "0.13.1"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"phf_generator",
|
|
1652
|
+
"phf_shared",
|
|
1653
|
+
"proc-macro2",
|
|
1654
|
+
"quote",
|
|
1655
|
+
"syn",
|
|
1656
|
+
"uncased",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "phf_shared"
|
|
1661
|
+
version = "0.13.1"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
1664
|
+
dependencies = [
|
|
1665
|
+
"siphasher",
|
|
1666
|
+
"uncased",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "pico-args"
|
|
1671
|
+
version = "0.5.0"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "pin-project-lite"
|
|
1677
|
+
version = "0.2.17"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "png"
|
|
1683
|
+
version = "0.18.1"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
1686
|
+
dependencies = [
|
|
1687
|
+
"bitflags",
|
|
1688
|
+
"crc32fast",
|
|
1689
|
+
"fdeflate",
|
|
1690
|
+
"flate2",
|
|
1691
|
+
"miniz_oxide",
|
|
1692
|
+
]
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "polycool"
|
|
1696
|
+
version = "0.4.0"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "50596ddc09eb5ad5f75cacd40209568e66df71baf86e1499a0e99c4cff12a5a6"
|
|
1699
|
+
dependencies = [
|
|
1700
|
+
"arrayvec",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "portable-atomic"
|
|
1705
|
+
version = "1.13.1"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "potential_utf"
|
|
1711
|
+
version = "0.1.5"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1714
|
+
dependencies = [
|
|
1715
|
+
"serde_core",
|
|
1716
|
+
"writeable",
|
|
1717
|
+
"zerovec",
|
|
1718
|
+
]
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "ppv-lite86"
|
|
1722
|
+
version = "0.2.21"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1725
|
+
dependencies = [
|
|
1726
|
+
"zerocopy",
|
|
1727
|
+
]
|
|
1728
|
+
|
|
1729
|
+
[[package]]
|
|
1730
|
+
name = "proc-macro2"
|
|
1731
|
+
version = "1.0.106"
|
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1734
|
+
dependencies = [
|
|
1735
|
+
"unicode-ident",
|
|
1736
|
+
]
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "profiling"
|
|
1740
|
+
version = "1.0.18"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
1743
|
+
dependencies = [
|
|
1744
|
+
"profiling-procmacros",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "profiling-procmacros"
|
|
1749
|
+
version = "1.0.18"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb"
|
|
1752
|
+
dependencies = [
|
|
1753
|
+
"quote",
|
|
1754
|
+
"syn",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "pxfm"
|
|
1759
|
+
version = "0.1.29"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "pyo3"
|
|
1765
|
+
version = "0.28.3"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
1768
|
+
dependencies = [
|
|
1769
|
+
"libc",
|
|
1770
|
+
"once_cell",
|
|
1771
|
+
"portable-atomic",
|
|
1772
|
+
"pyo3-build-config",
|
|
1773
|
+
"pyo3-ffi",
|
|
1774
|
+
"pyo3-macros",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "pyo3-async-runtimes"
|
|
1779
|
+
version = "0.28.0"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"futures-channel",
|
|
1784
|
+
"futures-util",
|
|
1785
|
+
"once_cell",
|
|
1786
|
+
"pin-project-lite",
|
|
1787
|
+
"pyo3",
|
|
1788
|
+
"tokio",
|
|
1789
|
+
]
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "pyo3-build-config"
|
|
1793
|
+
version = "0.28.3"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"target-lexicon",
|
|
1798
|
+
]
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "pyo3-ffi"
|
|
1802
|
+
version = "0.28.3"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"libc",
|
|
1807
|
+
"pyo3-build-config",
|
|
1808
|
+
]
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "pyo3-macros"
|
|
1812
|
+
version = "0.28.3"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
1815
|
+
dependencies = [
|
|
1816
|
+
"proc-macro2",
|
|
1817
|
+
"pyo3-macros-backend",
|
|
1818
|
+
"quote",
|
|
1819
|
+
"syn",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "pyo3-macros-backend"
|
|
1824
|
+
version = "0.28.3"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"heck",
|
|
1829
|
+
"proc-macro2",
|
|
1830
|
+
"pyo3-build-config",
|
|
1831
|
+
"quote",
|
|
1832
|
+
"syn",
|
|
1833
|
+
]
|
|
1834
|
+
|
|
1835
|
+
[[package]]
|
|
1836
|
+
name = "qoi"
|
|
1837
|
+
version = "0.4.1"
|
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
1840
|
+
dependencies = [
|
|
1841
|
+
"bytemuck",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "quick-error"
|
|
1846
|
+
version = "2.0.1"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "quinn"
|
|
1852
|
+
version = "0.11.9"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1855
|
+
dependencies = [
|
|
1856
|
+
"bytes",
|
|
1857
|
+
"cfg_aliases",
|
|
1858
|
+
"pin-project-lite",
|
|
1859
|
+
"quinn-proto",
|
|
1860
|
+
"quinn-udp",
|
|
1861
|
+
"rustc-hash",
|
|
1862
|
+
"rustls",
|
|
1863
|
+
"socket2",
|
|
1864
|
+
"thiserror",
|
|
1865
|
+
"tokio",
|
|
1866
|
+
"tracing",
|
|
1867
|
+
"web-time",
|
|
1868
|
+
]
|
|
1869
|
+
|
|
1870
|
+
[[package]]
|
|
1871
|
+
name = "quinn-proto"
|
|
1872
|
+
version = "0.11.14"
|
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1875
|
+
dependencies = [
|
|
1876
|
+
"aws-lc-rs",
|
|
1877
|
+
"bytes",
|
|
1878
|
+
"getrandom 0.3.4",
|
|
1879
|
+
"lru-slab",
|
|
1880
|
+
"rand",
|
|
1881
|
+
"ring",
|
|
1882
|
+
"rustc-hash",
|
|
1883
|
+
"rustls",
|
|
1884
|
+
"rustls-pki-types",
|
|
1885
|
+
"slab",
|
|
1886
|
+
"thiserror",
|
|
1887
|
+
"tinyvec",
|
|
1888
|
+
"tracing",
|
|
1889
|
+
"web-time",
|
|
1890
|
+
]
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "quinn-udp"
|
|
1894
|
+
version = "0.5.14"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1897
|
+
dependencies = [
|
|
1898
|
+
"cfg_aliases",
|
|
1899
|
+
"libc",
|
|
1900
|
+
"once_cell",
|
|
1901
|
+
"socket2",
|
|
1902
|
+
"tracing",
|
|
1903
|
+
"windows-sys 0.60.2",
|
|
1904
|
+
]
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "quote"
|
|
1908
|
+
version = "1.0.45"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1911
|
+
dependencies = [
|
|
1912
|
+
"proc-macro2",
|
|
1913
|
+
]
|
|
1914
|
+
|
|
1915
|
+
[[package]]
|
|
1916
|
+
name = "r-efi"
|
|
1917
|
+
version = "5.3.0"
|
|
1918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "rand"
|
|
1923
|
+
version = "0.9.4"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1926
|
+
dependencies = [
|
|
1927
|
+
"rand_chacha",
|
|
1928
|
+
"rand_core",
|
|
1929
|
+
]
|
|
1930
|
+
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "rand_chacha"
|
|
1933
|
+
version = "0.9.0"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1936
|
+
dependencies = [
|
|
1937
|
+
"ppv-lite86",
|
|
1938
|
+
"rand_core",
|
|
1939
|
+
]
|
|
1940
|
+
|
|
1941
|
+
[[package]]
|
|
1942
|
+
name = "rand_core"
|
|
1943
|
+
version = "0.9.5"
|
|
1944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1945
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1946
|
+
dependencies = [
|
|
1947
|
+
"getrandom 0.3.4",
|
|
1948
|
+
]
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "rav1e"
|
|
1952
|
+
version = "0.8.1"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
|
|
1955
|
+
dependencies = [
|
|
1956
|
+
"aligned-vec",
|
|
1957
|
+
"arbitrary",
|
|
1958
|
+
"arg_enum_proc_macro",
|
|
1959
|
+
"arrayvec",
|
|
1960
|
+
"av-scenechange",
|
|
1961
|
+
"av1-grain",
|
|
1962
|
+
"bitstream-io",
|
|
1963
|
+
"built",
|
|
1964
|
+
"cfg-if",
|
|
1965
|
+
"interpolate_name",
|
|
1966
|
+
"itertools",
|
|
1967
|
+
"libc",
|
|
1968
|
+
"libfuzzer-sys",
|
|
1969
|
+
"log",
|
|
1970
|
+
"maybe-rayon",
|
|
1971
|
+
"new_debug_unreachable",
|
|
1972
|
+
"noop_proc_macro",
|
|
1973
|
+
"num-derive",
|
|
1974
|
+
"num-traits",
|
|
1975
|
+
"paste",
|
|
1976
|
+
"profiling",
|
|
1977
|
+
"rand",
|
|
1978
|
+
"rand_chacha",
|
|
1979
|
+
"simd_helpers",
|
|
1980
|
+
"thiserror",
|
|
1981
|
+
"v_frame",
|
|
1982
|
+
"wasm-bindgen",
|
|
1983
|
+
]
|
|
1984
|
+
|
|
1985
|
+
[[package]]
|
|
1986
|
+
name = "ravif"
|
|
1987
|
+
version = "0.13.0"
|
|
1988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
+
checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
|
|
1990
|
+
dependencies = [
|
|
1991
|
+
"avif-serialize",
|
|
1992
|
+
"imgref",
|
|
1993
|
+
"loop9",
|
|
1994
|
+
"quick-error",
|
|
1995
|
+
"rav1e",
|
|
1996
|
+
"rayon",
|
|
1997
|
+
"rgb",
|
|
1998
|
+
]
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "rayon"
|
|
2002
|
+
version = "1.12.0"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2005
|
+
dependencies = [
|
|
2006
|
+
"either",
|
|
2007
|
+
"rayon-core",
|
|
2008
|
+
]
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "rayon-core"
|
|
2012
|
+
version = "1.13.0"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2015
|
+
dependencies = [
|
|
2016
|
+
"crossbeam-deque",
|
|
2017
|
+
"crossbeam-utils",
|
|
2018
|
+
]
|
|
2019
|
+
|
|
2020
|
+
[[package]]
|
|
2021
|
+
name = "read-fonts"
|
|
2022
|
+
version = "0.37.0"
|
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
+
checksum = "7b634fabf032fab15307ffd272149b622260f55974d9fad689292a5d33df02e5"
|
|
2025
|
+
dependencies = [
|
|
2026
|
+
"bytemuck",
|
|
2027
|
+
"font-types",
|
|
2028
|
+
]
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "read-fonts"
|
|
2032
|
+
version = "0.39.2"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "c4ed38b89c2c77ff968c524145ad65fb010f38af5c7a224b53b81d47ac2daa81"
|
|
2035
|
+
dependencies = [
|
|
2036
|
+
"bytemuck",
|
|
2037
|
+
"font-types",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "redox_users"
|
|
2042
|
+
version = "0.5.2"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"getrandom 0.2.17",
|
|
2047
|
+
"libredox",
|
|
2048
|
+
"thiserror",
|
|
2049
|
+
]
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "reqwest"
|
|
2053
|
+
version = "0.13.4"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
2056
|
+
dependencies = [
|
|
2057
|
+
"base64",
|
|
2058
|
+
"bytes",
|
|
2059
|
+
"encoding_rs",
|
|
2060
|
+
"futures-core",
|
|
2061
|
+
"h2",
|
|
2062
|
+
"http",
|
|
2063
|
+
"http-body",
|
|
2064
|
+
"http-body-util",
|
|
2065
|
+
"hyper",
|
|
2066
|
+
"hyper-rustls",
|
|
2067
|
+
"hyper-util",
|
|
2068
|
+
"js-sys",
|
|
2069
|
+
"log",
|
|
2070
|
+
"mime",
|
|
2071
|
+
"percent-encoding",
|
|
2072
|
+
"pin-project-lite",
|
|
2073
|
+
"quinn",
|
|
2074
|
+
"rustls",
|
|
2075
|
+
"rustls-pki-types",
|
|
2076
|
+
"rustls-platform-verifier",
|
|
2077
|
+
"sync_wrapper",
|
|
2078
|
+
"tokio",
|
|
2079
|
+
"tokio-rustls",
|
|
2080
|
+
"tower",
|
|
2081
|
+
"tower-http",
|
|
2082
|
+
"tower-service",
|
|
2083
|
+
"url",
|
|
2084
|
+
"wasm-bindgen",
|
|
2085
|
+
"wasm-bindgen-futures",
|
|
2086
|
+
"web-sys",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "resvg"
|
|
2091
|
+
version = "0.47.0"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "9be183ad6a216aa96f33e4c8033b0988b8b3ea6fd2359d19af5bac4643fd8e81"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"gif",
|
|
2096
|
+
"image-webp",
|
|
2097
|
+
"log",
|
|
2098
|
+
"pico-args",
|
|
2099
|
+
"rgb",
|
|
2100
|
+
"svgtypes",
|
|
2101
|
+
"tiny-skia",
|
|
2102
|
+
"usvg",
|
|
2103
|
+
"zune-jpeg",
|
|
2104
|
+
]
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "rgb"
|
|
2108
|
+
version = "0.8.53"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
2111
|
+
dependencies = [
|
|
2112
|
+
"bytemuck",
|
|
2113
|
+
]
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "ring"
|
|
2117
|
+
version = "0.17.14"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2120
|
+
dependencies = [
|
|
2121
|
+
"cc",
|
|
2122
|
+
"cfg-if",
|
|
2123
|
+
"getrandom 0.2.17",
|
|
2124
|
+
"libc",
|
|
2125
|
+
"untrusted",
|
|
2126
|
+
"windows-sys 0.52.0",
|
|
2127
|
+
]
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "roxmltree"
|
|
2131
|
+
version = "0.21.1"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"memchr",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "rustc-hash"
|
|
2140
|
+
version = "2.1.2"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2143
|
+
|
|
2144
|
+
[[package]]
|
|
2145
|
+
name = "rustc_version"
|
|
2146
|
+
version = "0.4.1"
|
|
2147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2149
|
+
dependencies = [
|
|
2150
|
+
"semver",
|
|
2151
|
+
]
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "rustls"
|
|
2155
|
+
version = "0.23.40"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"aws-lc-rs",
|
|
2160
|
+
"once_cell",
|
|
2161
|
+
"rustls-pki-types",
|
|
2162
|
+
"rustls-webpki",
|
|
2163
|
+
"subtle",
|
|
2164
|
+
"zeroize",
|
|
2165
|
+
]
|
|
2166
|
+
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "rustls-native-certs"
|
|
2169
|
+
version = "0.8.3"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2172
|
+
dependencies = [
|
|
2173
|
+
"openssl-probe",
|
|
2174
|
+
"rustls-pki-types",
|
|
2175
|
+
"schannel",
|
|
2176
|
+
"security-framework",
|
|
2177
|
+
]
|
|
2178
|
+
|
|
2179
|
+
[[package]]
|
|
2180
|
+
name = "rustls-pki-types"
|
|
2181
|
+
version = "1.14.1"
|
|
2182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2184
|
+
dependencies = [
|
|
2185
|
+
"web-time",
|
|
2186
|
+
"zeroize",
|
|
2187
|
+
]
|
|
2188
|
+
|
|
2189
|
+
[[package]]
|
|
2190
|
+
name = "rustls-platform-verifier"
|
|
2191
|
+
version = "0.7.0"
|
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
2194
|
+
dependencies = [
|
|
2195
|
+
"core-foundation 0.10.1",
|
|
2196
|
+
"core-foundation-sys",
|
|
2197
|
+
"jni",
|
|
2198
|
+
"log",
|
|
2199
|
+
"once_cell",
|
|
2200
|
+
"rustls",
|
|
2201
|
+
"rustls-native-certs",
|
|
2202
|
+
"rustls-platform-verifier-android",
|
|
2203
|
+
"rustls-webpki",
|
|
2204
|
+
"security-framework",
|
|
2205
|
+
"security-framework-sys",
|
|
2206
|
+
"webpki-root-certs",
|
|
2207
|
+
"windows-sys 0.61.2",
|
|
2208
|
+
]
|
|
2209
|
+
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "rustls-platform-verifier-android"
|
|
2212
|
+
version = "0.1.1"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
2215
|
+
|
|
2216
|
+
[[package]]
|
|
2217
|
+
name = "rustls-webpki"
|
|
2218
|
+
version = "0.103.13"
|
|
2219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2220
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2221
|
+
dependencies = [
|
|
2222
|
+
"aws-lc-rs",
|
|
2223
|
+
"ring",
|
|
2224
|
+
"rustls-pki-types",
|
|
2225
|
+
"untrusted",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "rustversion"
|
|
2230
|
+
version = "1.0.22"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "rustybuzz"
|
|
2236
|
+
version = "0.20.1"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
|
|
2239
|
+
dependencies = [
|
|
2240
|
+
"bitflags",
|
|
2241
|
+
"bytemuck",
|
|
2242
|
+
"core_maths",
|
|
2243
|
+
"log",
|
|
2244
|
+
"smallvec",
|
|
2245
|
+
"ttf-parser",
|
|
2246
|
+
"unicode-bidi-mirroring",
|
|
2247
|
+
"unicode-ccc",
|
|
2248
|
+
"unicode-properties",
|
|
2249
|
+
"unicode-script",
|
|
2250
|
+
]
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "same-file"
|
|
2254
|
+
version = "1.0.6"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"winapi-util",
|
|
2259
|
+
]
|
|
2260
|
+
|
|
2261
|
+
[[package]]
|
|
2262
|
+
name = "schannel"
|
|
2263
|
+
version = "0.1.29"
|
|
2264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2266
|
+
dependencies = [
|
|
2267
|
+
"windows-sys 0.61.2",
|
|
2268
|
+
]
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "security-framework"
|
|
2272
|
+
version = "3.7.0"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"bitflags",
|
|
2277
|
+
"core-foundation 0.10.1",
|
|
2278
|
+
"core-foundation-sys",
|
|
2279
|
+
"libc",
|
|
2280
|
+
"security-framework-sys",
|
|
2281
|
+
]
|
|
2282
|
+
|
|
2283
|
+
[[package]]
|
|
2284
|
+
name = "security-framework-sys"
|
|
2285
|
+
version = "2.17.0"
|
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2288
|
+
dependencies = [
|
|
2289
|
+
"core-foundation-sys",
|
|
2290
|
+
"libc",
|
|
2291
|
+
]
|
|
2292
|
+
|
|
2293
|
+
[[package]]
|
|
2294
|
+
name = "semver"
|
|
2295
|
+
version = "1.0.28"
|
|
2296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2298
|
+
|
|
2299
|
+
[[package]]
|
|
2300
|
+
name = "serde"
|
|
2301
|
+
version = "1.0.228"
|
|
2302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2304
|
+
dependencies = [
|
|
2305
|
+
"serde_core",
|
|
2306
|
+
"serde_derive",
|
|
2307
|
+
]
|
|
2308
|
+
|
|
2309
|
+
[[package]]
|
|
2310
|
+
name = "serde-saphyr"
|
|
2311
|
+
version = "0.0.27"
|
|
2312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
+
checksum = "5897b4c3faadadd35fdb6689f015641f3bc481d5adaaac56231ea15aeb243db3"
|
|
2314
|
+
dependencies = [
|
|
2315
|
+
"ahash",
|
|
2316
|
+
"annotate-snippets",
|
|
2317
|
+
"base64",
|
|
2318
|
+
"encoding_rs_io",
|
|
2319
|
+
"getrandom 0.3.4",
|
|
2320
|
+
"granit-parser",
|
|
2321
|
+
"nohash-hasher",
|
|
2322
|
+
"num-traits",
|
|
2323
|
+
"serde",
|
|
2324
|
+
"smallvec",
|
|
2325
|
+
"zmij",
|
|
2326
|
+
]
|
|
2327
|
+
|
|
2328
|
+
[[package]]
|
|
2329
|
+
name = "serde_core"
|
|
2330
|
+
version = "1.0.228"
|
|
2331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2333
|
+
dependencies = [
|
|
2334
|
+
"serde_derive",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "serde_derive"
|
|
2339
|
+
version = "1.0.228"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"proc-macro2",
|
|
2344
|
+
"quote",
|
|
2345
|
+
"syn",
|
|
2346
|
+
]
|
|
2347
|
+
|
|
2348
|
+
[[package]]
|
|
2349
|
+
name = "serde_json"
|
|
2350
|
+
version = "1.0.150"
|
|
2351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2352
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
2353
|
+
dependencies = [
|
|
2354
|
+
"itoa",
|
|
2355
|
+
"memchr",
|
|
2356
|
+
"serde",
|
|
2357
|
+
"serde_core",
|
|
2358
|
+
"zmij",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "sha2"
|
|
2363
|
+
version = "0.11.0"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"cfg-if",
|
|
2368
|
+
"cpufeatures",
|
|
2369
|
+
"digest",
|
|
2370
|
+
]
|
|
2371
|
+
|
|
2372
|
+
[[package]]
|
|
2373
|
+
name = "shlex"
|
|
2374
|
+
version = "1.3.0"
|
|
2375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "simd-adler32"
|
|
2380
|
+
version = "0.3.9"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
2383
|
+
|
|
2384
|
+
[[package]]
|
|
2385
|
+
name = "simd_cesu8"
|
|
2386
|
+
version = "1.1.1"
|
|
2387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
2389
|
+
dependencies = [
|
|
2390
|
+
"rustc_version",
|
|
2391
|
+
"simdutf8",
|
|
2392
|
+
]
|
|
2393
|
+
|
|
2394
|
+
[[package]]
|
|
2395
|
+
name = "simd_helpers"
|
|
2396
|
+
version = "0.1.0"
|
|
2397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
2399
|
+
dependencies = [
|
|
2400
|
+
"quote",
|
|
2401
|
+
]
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "simdutf8"
|
|
2405
|
+
version = "0.1.5"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
2408
|
+
|
|
2409
|
+
[[package]]
|
|
2410
|
+
name = "simple-icons-pack"
|
|
2411
|
+
version = "16.21.0"
|
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
+
checksum = "111023867ab285146edac2fdbdbef720f5bcc0a1ba42c908ae07f701951e5067"
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "simplecss"
|
|
2417
|
+
version = "0.2.2"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"log",
|
|
2422
|
+
]
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "siphasher"
|
|
2426
|
+
version = "1.0.3"
|
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
2429
|
+
|
|
2430
|
+
[[package]]
|
|
2431
|
+
name = "skrifa"
|
|
2432
|
+
version = "0.40.0"
|
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
+
checksum = "7fbdfe3d2475fbd7ddd1f3e5cf8288a30eb3e5f95832829570cd88115a7434ac"
|
|
2435
|
+
dependencies = [
|
|
2436
|
+
"bytemuck",
|
|
2437
|
+
"read-fonts 0.37.0",
|
|
2438
|
+
]
|
|
2439
|
+
|
|
2440
|
+
[[package]]
|
|
2441
|
+
name = "skrifa"
|
|
2442
|
+
version = "0.42.1"
|
|
2443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2444
|
+
checksum = "0c34617370ae968efb7161bb2beb517d9084659aae19e24b89e3db25b46e4564"
|
|
2445
|
+
dependencies = [
|
|
2446
|
+
"bytemuck",
|
|
2447
|
+
"read-fonts 0.39.2",
|
|
2448
|
+
]
|
|
2449
|
+
|
|
2450
|
+
[[package]]
|
|
2451
|
+
name = "slab"
|
|
2452
|
+
version = "0.4.12"
|
|
2453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2454
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2455
|
+
|
|
2456
|
+
[[package]]
|
|
2457
|
+
name = "slotmap"
|
|
2458
|
+
version = "1.1.1"
|
|
2459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2460
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
2461
|
+
dependencies = [
|
|
2462
|
+
"version_check",
|
|
2463
|
+
]
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "smallvec"
|
|
2467
|
+
version = "1.15.1"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2470
|
+
|
|
2471
|
+
[[package]]
|
|
2472
|
+
name = "socket2"
|
|
2473
|
+
version = "0.6.4"
|
|
2474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
2476
|
+
dependencies = [
|
|
2477
|
+
"libc",
|
|
2478
|
+
"windows-sys 0.61.2",
|
|
2479
|
+
]
|
|
2480
|
+
|
|
2481
|
+
[[package]]
|
|
2482
|
+
name = "stable_deref_trait"
|
|
2483
|
+
version = "1.2.1"
|
|
2484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "strict-num"
|
|
2489
|
+
version = "0.1.1"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
2492
|
+
dependencies = [
|
|
2493
|
+
"float-cmp",
|
|
2494
|
+
]
|
|
2495
|
+
|
|
2496
|
+
[[package]]
|
|
2497
|
+
name = "subtle"
|
|
2498
|
+
version = "2.6.1"
|
|
2499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2500
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "svgtypes"
|
|
2504
|
+
version = "0.16.1"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "695b5790b3131dafa99b3bbfd25a216edb3d216dad9ca208d4657bfb8f2abc3d"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"kurbo",
|
|
2509
|
+
"siphasher",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "swash"
|
|
2514
|
+
version = "0.2.7"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "842f3cd369c2ba38966204f983eaa5e54a8e84a7d7159ed36ade2b6c335aae64"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"skrifa 0.40.0",
|
|
2519
|
+
"yazi",
|
|
2520
|
+
"zeno",
|
|
2521
|
+
]
|
|
2522
|
+
|
|
2523
|
+
[[package]]
|
|
2524
|
+
name = "syn"
|
|
2525
|
+
version = "2.0.117"
|
|
2526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2527
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2528
|
+
dependencies = [
|
|
2529
|
+
"proc-macro2",
|
|
2530
|
+
"quote",
|
|
2531
|
+
"unicode-ident",
|
|
2532
|
+
]
|
|
2533
|
+
|
|
2534
|
+
[[package]]
|
|
2535
|
+
name = "sync_wrapper"
|
|
2536
|
+
version = "1.0.2"
|
|
2537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2538
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2539
|
+
dependencies = [
|
|
2540
|
+
"futures-core",
|
|
2541
|
+
]
|
|
2542
|
+
|
|
2543
|
+
[[package]]
|
|
2544
|
+
name = "synstructure"
|
|
2545
|
+
version = "0.13.2"
|
|
2546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2547
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2548
|
+
dependencies = [
|
|
2549
|
+
"proc-macro2",
|
|
2550
|
+
"quote",
|
|
2551
|
+
"syn",
|
|
2552
|
+
]
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "system-configuration"
|
|
2556
|
+
version = "0.7.0"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"bitflags",
|
|
2561
|
+
"core-foundation 0.9.4",
|
|
2562
|
+
"system-configuration-sys",
|
|
2563
|
+
]
|
|
2564
|
+
|
|
2565
|
+
[[package]]
|
|
2566
|
+
name = "system-configuration-sys"
|
|
2567
|
+
version = "0.6.0"
|
|
2568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
2570
|
+
dependencies = [
|
|
2571
|
+
"core-foundation-sys",
|
|
2572
|
+
"libc",
|
|
2573
|
+
]
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "target-lexicon"
|
|
2577
|
+
version = "0.13.5"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
2580
|
+
|
|
2581
|
+
[[package]]
|
|
2582
|
+
name = "thiserror"
|
|
2583
|
+
version = "2.0.18"
|
|
2584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2586
|
+
dependencies = [
|
|
2587
|
+
"thiserror-impl",
|
|
2588
|
+
]
|
|
2589
|
+
|
|
2590
|
+
[[package]]
|
|
2591
|
+
name = "thiserror-impl"
|
|
2592
|
+
version = "2.0.18"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2595
|
+
dependencies = [
|
|
2596
|
+
"proc-macro2",
|
|
2597
|
+
"quote",
|
|
2598
|
+
"syn",
|
|
2599
|
+
]
|
|
2600
|
+
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "tiff"
|
|
2603
|
+
version = "0.11.3"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
|
|
2606
|
+
dependencies = [
|
|
2607
|
+
"fax",
|
|
2608
|
+
"flate2",
|
|
2609
|
+
"half",
|
|
2610
|
+
"quick-error",
|
|
2611
|
+
"weezl",
|
|
2612
|
+
"zune-jpeg",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "tiny-skia"
|
|
2617
|
+
version = "0.12.0"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
|
|
2620
|
+
dependencies = [
|
|
2621
|
+
"arrayref",
|
|
2622
|
+
"arrayvec",
|
|
2623
|
+
"bytemuck",
|
|
2624
|
+
"cfg-if",
|
|
2625
|
+
"log",
|
|
2626
|
+
"png",
|
|
2627
|
+
"tiny-skia-path",
|
|
2628
|
+
]
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "tiny-skia-path"
|
|
2632
|
+
version = "0.12.0"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
|
|
2635
|
+
dependencies = [
|
|
2636
|
+
"arrayref",
|
|
2637
|
+
"bytemuck",
|
|
2638
|
+
"strict-num",
|
|
2639
|
+
]
|
|
2640
|
+
|
|
2641
|
+
[[package]]
|
|
2642
|
+
name = "tinystr"
|
|
2643
|
+
version = "0.8.3"
|
|
2644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2646
|
+
dependencies = [
|
|
2647
|
+
"displaydoc",
|
|
2648
|
+
"serde_core",
|
|
2649
|
+
"zerovec",
|
|
2650
|
+
]
|
|
2651
|
+
|
|
2652
|
+
[[package]]
|
|
2653
|
+
name = "tinyvec"
|
|
2654
|
+
version = "1.11.0"
|
|
2655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2656
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2657
|
+
dependencies = [
|
|
2658
|
+
"tinyvec_macros",
|
|
2659
|
+
]
|
|
2660
|
+
|
|
2661
|
+
[[package]]
|
|
2662
|
+
name = "tinyvec_macros"
|
|
2663
|
+
version = "0.1.1"
|
|
2664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2666
|
+
|
|
2667
|
+
[[package]]
|
|
2668
|
+
name = "tokio"
|
|
2669
|
+
version = "1.52.3"
|
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
2672
|
+
dependencies = [
|
|
2673
|
+
"bytes",
|
|
2674
|
+
"libc",
|
|
2675
|
+
"mio",
|
|
2676
|
+
"pin-project-lite",
|
|
2677
|
+
"socket2",
|
|
2678
|
+
"tokio-macros",
|
|
2679
|
+
"windows-sys 0.61.2",
|
|
2680
|
+
]
|
|
2681
|
+
|
|
2682
|
+
[[package]]
|
|
2683
|
+
name = "tokio-macros"
|
|
2684
|
+
version = "2.7.0"
|
|
2685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
2687
|
+
dependencies = [
|
|
2688
|
+
"proc-macro2",
|
|
2689
|
+
"quote",
|
|
2690
|
+
"syn",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "tokio-rustls"
|
|
2695
|
+
version = "0.26.4"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2698
|
+
dependencies = [
|
|
2699
|
+
"rustls",
|
|
2700
|
+
"tokio",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "tokio-util"
|
|
2705
|
+
version = "0.7.18"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2708
|
+
dependencies = [
|
|
2709
|
+
"bytes",
|
|
2710
|
+
"futures-core",
|
|
2711
|
+
"futures-sink",
|
|
2712
|
+
"pin-project-lite",
|
|
2713
|
+
"tokio",
|
|
2714
|
+
]
|
|
2715
|
+
|
|
2716
|
+
[[package]]
|
|
2717
|
+
name = "tower"
|
|
2718
|
+
version = "0.5.3"
|
|
2719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2721
|
+
dependencies = [
|
|
2722
|
+
"futures-core",
|
|
2723
|
+
"futures-util",
|
|
2724
|
+
"pin-project-lite",
|
|
2725
|
+
"sync_wrapper",
|
|
2726
|
+
"tokio",
|
|
2727
|
+
"tower-layer",
|
|
2728
|
+
"tower-service",
|
|
2729
|
+
]
|
|
2730
|
+
|
|
2731
|
+
[[package]]
|
|
2732
|
+
name = "tower-http"
|
|
2733
|
+
version = "0.6.11"
|
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
2736
|
+
dependencies = [
|
|
2737
|
+
"bitflags",
|
|
2738
|
+
"bytes",
|
|
2739
|
+
"futures-util",
|
|
2740
|
+
"http",
|
|
2741
|
+
"http-body",
|
|
2742
|
+
"pin-project-lite",
|
|
2743
|
+
"tower",
|
|
2744
|
+
"tower-layer",
|
|
2745
|
+
"tower-service",
|
|
2746
|
+
"url",
|
|
2747
|
+
]
|
|
2748
|
+
|
|
2749
|
+
[[package]]
|
|
2750
|
+
name = "tower-layer"
|
|
2751
|
+
version = "0.3.3"
|
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2753
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2754
|
+
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "tower-service"
|
|
2757
|
+
version = "0.3.3"
|
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2759
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2760
|
+
|
|
2761
|
+
[[package]]
|
|
2762
|
+
name = "tracing"
|
|
2763
|
+
version = "0.1.44"
|
|
2764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2765
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2766
|
+
dependencies = [
|
|
2767
|
+
"pin-project-lite",
|
|
2768
|
+
"tracing-core",
|
|
2769
|
+
]
|
|
2770
|
+
|
|
2771
|
+
[[package]]
|
|
2772
|
+
name = "tracing-core"
|
|
2773
|
+
version = "0.1.36"
|
|
2774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2775
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2776
|
+
dependencies = [
|
|
2777
|
+
"once_cell",
|
|
2778
|
+
]
|
|
2779
|
+
|
|
2780
|
+
[[package]]
|
|
2781
|
+
name = "try-lock"
|
|
2782
|
+
version = "0.2.5"
|
|
2783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2784
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2785
|
+
|
|
2786
|
+
[[package]]
|
|
2787
|
+
name = "ttf-parser"
|
|
2788
|
+
version = "0.25.1"
|
|
2789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2790
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
2791
|
+
dependencies = [
|
|
2792
|
+
"core_maths",
|
|
2793
|
+
]
|
|
2794
|
+
|
|
2795
|
+
[[package]]
|
|
2796
|
+
name = "typenum"
|
|
2797
|
+
version = "1.20.0"
|
|
2798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
2800
|
+
|
|
2801
|
+
[[package]]
|
|
2802
|
+
name = "uncased"
|
|
2803
|
+
version = "0.9.10"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"version_check",
|
|
2808
|
+
]
|
|
2809
|
+
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "unicode-bidi"
|
|
2812
|
+
version = "0.3.18"
|
|
2813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
2815
|
+
|
|
2816
|
+
[[package]]
|
|
2817
|
+
name = "unicode-bidi-mirroring"
|
|
2818
|
+
version = "0.4.0"
|
|
2819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
+
checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "unicode-ccc"
|
|
2824
|
+
version = "0.4.0"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
|
|
2827
|
+
|
|
2828
|
+
[[package]]
|
|
2829
|
+
name = "unicode-ident"
|
|
2830
|
+
version = "1.0.24"
|
|
2831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "unicode-properties"
|
|
2836
|
+
version = "0.1.4"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "unicode-script"
|
|
2842
|
+
version = "0.5.8"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
|
|
2845
|
+
|
|
2846
|
+
[[package]]
|
|
2847
|
+
name = "unicode-vo"
|
|
2848
|
+
version = "0.1.0"
|
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
+
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
|
|
2851
|
+
|
|
2852
|
+
[[package]]
|
|
2853
|
+
name = "unicode-width"
|
|
2854
|
+
version = "0.2.2"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2857
|
+
|
|
2858
|
+
[[package]]
|
|
2859
|
+
name = "untrusted"
|
|
2860
|
+
version = "0.9.0"
|
|
2861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2862
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2863
|
+
|
|
2864
|
+
[[package]]
|
|
2865
|
+
name = "url"
|
|
2866
|
+
version = "2.5.8"
|
|
2867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2869
|
+
dependencies = [
|
|
2870
|
+
"form_urlencoded",
|
|
2871
|
+
"idna",
|
|
2872
|
+
"percent-encoding",
|
|
2873
|
+
"serde",
|
|
2874
|
+
]
|
|
2875
|
+
|
|
2876
|
+
[[package]]
|
|
2877
|
+
name = "usvg"
|
|
2878
|
+
version = "0.47.0"
|
|
2879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
+
checksum = "d46cf96c5f498d36b7a9693bc6a7075c0bb9303189d61b2249b0dc3d309c07de"
|
|
2881
|
+
dependencies = [
|
|
2882
|
+
"base64",
|
|
2883
|
+
"data-url",
|
|
2884
|
+
"flate2",
|
|
2885
|
+
"fontdb",
|
|
2886
|
+
"imagesize",
|
|
2887
|
+
"kurbo",
|
|
2888
|
+
"log",
|
|
2889
|
+
"pico-args",
|
|
2890
|
+
"roxmltree",
|
|
2891
|
+
"rustybuzz",
|
|
2892
|
+
"simplecss",
|
|
2893
|
+
"siphasher",
|
|
2894
|
+
"strict-num",
|
|
2895
|
+
"svgtypes",
|
|
2896
|
+
"tiny-skia-path",
|
|
2897
|
+
"ttf-parser",
|
|
2898
|
+
"unicode-bidi",
|
|
2899
|
+
"unicode-script",
|
|
2900
|
+
"unicode-vo",
|
|
2901
|
+
"xmlwriter",
|
|
2902
|
+
]
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "utf8_iter"
|
|
2906
|
+
version = "1.0.4"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "v_frame"
|
|
2912
|
+
version = "0.3.9"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
|
|
2915
|
+
dependencies = [
|
|
2916
|
+
"aligned-vec",
|
|
2917
|
+
"num-traits",
|
|
2918
|
+
"wasm-bindgen",
|
|
2919
|
+
]
|
|
2920
|
+
|
|
2921
|
+
[[package]]
|
|
2922
|
+
name = "version_check"
|
|
2923
|
+
version = "0.9.5"
|
|
2924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2926
|
+
|
|
2927
|
+
[[package]]
|
|
2928
|
+
name = "walkdir"
|
|
2929
|
+
version = "2.5.0"
|
|
2930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2932
|
+
dependencies = [
|
|
2933
|
+
"same-file",
|
|
2934
|
+
"winapi-util",
|
|
2935
|
+
]
|
|
2936
|
+
|
|
2937
|
+
[[package]]
|
|
2938
|
+
name = "want"
|
|
2939
|
+
version = "0.3.1"
|
|
2940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2941
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2942
|
+
dependencies = [
|
|
2943
|
+
"try-lock",
|
|
2944
|
+
]
|
|
2945
|
+
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "wasi"
|
|
2948
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2951
|
+
|
|
2952
|
+
[[package]]
|
|
2953
|
+
name = "wasip2"
|
|
2954
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2956
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2957
|
+
dependencies = [
|
|
2958
|
+
"wit-bindgen",
|
|
2959
|
+
]
|
|
2960
|
+
|
|
2961
|
+
[[package]]
|
|
2962
|
+
name = "wasm-bindgen"
|
|
2963
|
+
version = "0.2.122"
|
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
2966
|
+
dependencies = [
|
|
2967
|
+
"cfg-if",
|
|
2968
|
+
"once_cell",
|
|
2969
|
+
"rustversion",
|
|
2970
|
+
"wasm-bindgen-macro",
|
|
2971
|
+
"wasm-bindgen-shared",
|
|
2972
|
+
]
|
|
2973
|
+
|
|
2974
|
+
[[package]]
|
|
2975
|
+
name = "wasm-bindgen-futures"
|
|
2976
|
+
version = "0.4.72"
|
|
2977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
2979
|
+
dependencies = [
|
|
2980
|
+
"js-sys",
|
|
2981
|
+
"wasm-bindgen",
|
|
2982
|
+
]
|
|
2983
|
+
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "wasm-bindgen-macro"
|
|
2986
|
+
version = "0.2.122"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
2989
|
+
dependencies = [
|
|
2990
|
+
"quote",
|
|
2991
|
+
"wasm-bindgen-macro-support",
|
|
2992
|
+
]
|
|
2993
|
+
|
|
2994
|
+
[[package]]
|
|
2995
|
+
name = "wasm-bindgen-macro-support"
|
|
2996
|
+
version = "0.2.122"
|
|
2997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
2999
|
+
dependencies = [
|
|
3000
|
+
"bumpalo",
|
|
3001
|
+
"proc-macro2",
|
|
3002
|
+
"quote",
|
|
3003
|
+
"syn",
|
|
3004
|
+
"wasm-bindgen-shared",
|
|
3005
|
+
]
|
|
3006
|
+
|
|
3007
|
+
[[package]]
|
|
3008
|
+
name = "wasm-bindgen-shared"
|
|
3009
|
+
version = "0.2.122"
|
|
3010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
3012
|
+
dependencies = [
|
|
3013
|
+
"unicode-ident",
|
|
3014
|
+
]
|
|
3015
|
+
|
|
3016
|
+
[[package]]
|
|
3017
|
+
name = "web-sys"
|
|
3018
|
+
version = "0.3.99"
|
|
3019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
3021
|
+
dependencies = [
|
|
3022
|
+
"js-sys",
|
|
3023
|
+
"wasm-bindgen",
|
|
3024
|
+
]
|
|
3025
|
+
|
|
3026
|
+
[[package]]
|
|
3027
|
+
name = "web-time"
|
|
3028
|
+
version = "1.1.0"
|
|
3029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3030
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3031
|
+
dependencies = [
|
|
3032
|
+
"js-sys",
|
|
3033
|
+
"wasm-bindgen",
|
|
3034
|
+
]
|
|
3035
|
+
|
|
3036
|
+
[[package]]
|
|
3037
|
+
name = "webpki-root-certs"
|
|
3038
|
+
version = "1.0.7"
|
|
3039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3040
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
3041
|
+
dependencies = [
|
|
3042
|
+
"rustls-pki-types",
|
|
3043
|
+
]
|
|
3044
|
+
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "weezl"
|
|
3047
|
+
version = "0.1.12"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
3050
|
+
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "winapi-util"
|
|
3053
|
+
version = "0.1.11"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3056
|
+
dependencies = [
|
|
3057
|
+
"windows-sys 0.61.2",
|
|
3058
|
+
]
|
|
3059
|
+
|
|
3060
|
+
[[package]]
|
|
3061
|
+
name = "windows-link"
|
|
3062
|
+
version = "0.2.1"
|
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3065
|
+
|
|
3066
|
+
[[package]]
|
|
3067
|
+
name = "windows-registry"
|
|
3068
|
+
version = "0.6.1"
|
|
3069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
3071
|
+
dependencies = [
|
|
3072
|
+
"windows-link",
|
|
3073
|
+
"windows-result",
|
|
3074
|
+
"windows-strings",
|
|
3075
|
+
]
|
|
3076
|
+
|
|
3077
|
+
[[package]]
|
|
3078
|
+
name = "windows-result"
|
|
3079
|
+
version = "0.4.1"
|
|
3080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3082
|
+
dependencies = [
|
|
3083
|
+
"windows-link",
|
|
3084
|
+
]
|
|
3085
|
+
|
|
3086
|
+
[[package]]
|
|
3087
|
+
name = "windows-strings"
|
|
3088
|
+
version = "0.5.1"
|
|
3089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3090
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3091
|
+
dependencies = [
|
|
3092
|
+
"windows-link",
|
|
3093
|
+
]
|
|
3094
|
+
|
|
3095
|
+
[[package]]
|
|
3096
|
+
name = "windows-sys"
|
|
3097
|
+
version = "0.52.0"
|
|
3098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3100
|
+
dependencies = [
|
|
3101
|
+
"windows-targets 0.52.6",
|
|
3102
|
+
]
|
|
3103
|
+
|
|
3104
|
+
[[package]]
|
|
3105
|
+
name = "windows-sys"
|
|
3106
|
+
version = "0.60.2"
|
|
3107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3108
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3109
|
+
dependencies = [
|
|
3110
|
+
"windows-targets 0.53.5",
|
|
3111
|
+
]
|
|
3112
|
+
|
|
3113
|
+
[[package]]
|
|
3114
|
+
name = "windows-sys"
|
|
3115
|
+
version = "0.61.2"
|
|
3116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3117
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3118
|
+
dependencies = [
|
|
3119
|
+
"windows-link",
|
|
3120
|
+
]
|
|
3121
|
+
|
|
3122
|
+
[[package]]
|
|
3123
|
+
name = "windows-targets"
|
|
3124
|
+
version = "0.52.6"
|
|
3125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3126
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3127
|
+
dependencies = [
|
|
3128
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3129
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3130
|
+
"windows_i686_gnu 0.52.6",
|
|
3131
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3132
|
+
"windows_i686_msvc 0.52.6",
|
|
3133
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3134
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3135
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3136
|
+
]
|
|
3137
|
+
|
|
3138
|
+
[[package]]
|
|
3139
|
+
name = "windows-targets"
|
|
3140
|
+
version = "0.53.5"
|
|
3141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3143
|
+
dependencies = [
|
|
3144
|
+
"windows-link",
|
|
3145
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3146
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3147
|
+
"windows_i686_gnu 0.53.1",
|
|
3148
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3149
|
+
"windows_i686_msvc 0.53.1",
|
|
3150
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3151
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3152
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3153
|
+
]
|
|
3154
|
+
|
|
3155
|
+
[[package]]
|
|
3156
|
+
name = "windows_aarch64_gnullvm"
|
|
3157
|
+
version = "0.52.6"
|
|
3158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3159
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3160
|
+
|
|
3161
|
+
[[package]]
|
|
3162
|
+
name = "windows_aarch64_gnullvm"
|
|
3163
|
+
version = "0.53.1"
|
|
3164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3165
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3166
|
+
|
|
3167
|
+
[[package]]
|
|
3168
|
+
name = "windows_aarch64_msvc"
|
|
3169
|
+
version = "0.52.6"
|
|
3170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3171
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3172
|
+
|
|
3173
|
+
[[package]]
|
|
3174
|
+
name = "windows_aarch64_msvc"
|
|
3175
|
+
version = "0.53.1"
|
|
3176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3178
|
+
|
|
3179
|
+
[[package]]
|
|
3180
|
+
name = "windows_i686_gnu"
|
|
3181
|
+
version = "0.52.6"
|
|
3182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3183
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3184
|
+
|
|
3185
|
+
[[package]]
|
|
3186
|
+
name = "windows_i686_gnu"
|
|
3187
|
+
version = "0.53.1"
|
|
3188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3190
|
+
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "windows_i686_gnullvm"
|
|
3193
|
+
version = "0.52.6"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3196
|
+
|
|
3197
|
+
[[package]]
|
|
3198
|
+
name = "windows_i686_gnullvm"
|
|
3199
|
+
version = "0.53.1"
|
|
3200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3201
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3202
|
+
|
|
3203
|
+
[[package]]
|
|
3204
|
+
name = "windows_i686_msvc"
|
|
3205
|
+
version = "0.52.6"
|
|
3206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3207
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3208
|
+
|
|
3209
|
+
[[package]]
|
|
3210
|
+
name = "windows_i686_msvc"
|
|
3211
|
+
version = "0.53.1"
|
|
3212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3213
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3214
|
+
|
|
3215
|
+
[[package]]
|
|
3216
|
+
name = "windows_x86_64_gnu"
|
|
3217
|
+
version = "0.52.6"
|
|
3218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3219
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3220
|
+
|
|
3221
|
+
[[package]]
|
|
3222
|
+
name = "windows_x86_64_gnu"
|
|
3223
|
+
version = "0.53.1"
|
|
3224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3226
|
+
|
|
3227
|
+
[[package]]
|
|
3228
|
+
name = "windows_x86_64_gnullvm"
|
|
3229
|
+
version = "0.52.6"
|
|
3230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3231
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3232
|
+
|
|
3233
|
+
[[package]]
|
|
3234
|
+
name = "windows_x86_64_gnullvm"
|
|
3235
|
+
version = "0.53.1"
|
|
3236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3237
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3238
|
+
|
|
3239
|
+
[[package]]
|
|
3240
|
+
name = "windows_x86_64_msvc"
|
|
3241
|
+
version = "0.52.6"
|
|
3242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3244
|
+
|
|
3245
|
+
[[package]]
|
|
3246
|
+
name = "windows_x86_64_msvc"
|
|
3247
|
+
version = "0.53.1"
|
|
3248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3249
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3250
|
+
|
|
3251
|
+
[[package]]
|
|
3252
|
+
name = "wit-bindgen"
|
|
3253
|
+
version = "0.57.1"
|
|
3254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3256
|
+
|
|
3257
|
+
[[package]]
|
|
3258
|
+
name = "writeable"
|
|
3259
|
+
version = "0.6.3"
|
|
3260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3261
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3262
|
+
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "xmlwriter"
|
|
3265
|
+
version = "0.1.0"
|
|
3266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
+
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
|
|
3268
|
+
|
|
3269
|
+
[[package]]
|
|
3270
|
+
name = "y4m"
|
|
3271
|
+
version = "0.8.0"
|
|
3272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3273
|
+
checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
|
|
3274
|
+
|
|
3275
|
+
[[package]]
|
|
3276
|
+
name = "yazi"
|
|
3277
|
+
version = "0.2.1"
|
|
3278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
+
checksum = "e01738255b5a16e78bbb83e7fbba0a1e7dd506905cfc53f4622d89015a03fbb5"
|
|
3280
|
+
|
|
3281
|
+
[[package]]
|
|
3282
|
+
name = "yoke"
|
|
3283
|
+
version = "0.8.2"
|
|
3284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3286
|
+
dependencies = [
|
|
3287
|
+
"stable_deref_trait",
|
|
3288
|
+
"yoke-derive",
|
|
3289
|
+
"zerofrom",
|
|
3290
|
+
]
|
|
3291
|
+
|
|
3292
|
+
[[package]]
|
|
3293
|
+
name = "yoke-derive"
|
|
3294
|
+
version = "0.8.2"
|
|
3295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3297
|
+
dependencies = [
|
|
3298
|
+
"proc-macro2",
|
|
3299
|
+
"quote",
|
|
3300
|
+
"syn",
|
|
3301
|
+
"synstructure",
|
|
3302
|
+
]
|
|
3303
|
+
|
|
3304
|
+
[[package]]
|
|
3305
|
+
name = "zeno"
|
|
3306
|
+
version = "0.3.3"
|
|
3307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3308
|
+
checksum = "6df3dc4292935e51816d896edcd52aa30bc297907c26167fec31e2b0c6a32524"
|
|
3309
|
+
|
|
3310
|
+
[[package]]
|
|
3311
|
+
name = "zerocopy"
|
|
3312
|
+
version = "0.8.49"
|
|
3313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
|
+
checksum = "bce33a6288fa3f072a8c2c7d0f2fdbb90e28298f0135c1f99b96c3db2efcc60b"
|
|
3315
|
+
dependencies = [
|
|
3316
|
+
"zerocopy-derive",
|
|
3317
|
+
]
|
|
3318
|
+
|
|
3319
|
+
[[package]]
|
|
3320
|
+
name = "zerocopy-derive"
|
|
3321
|
+
version = "0.8.49"
|
|
3322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
|
+
checksum = "8fd425244944f4ab65ccff928e7323354c5a018c75838362fdce749dfad2ee1e"
|
|
3324
|
+
dependencies = [
|
|
3325
|
+
"proc-macro2",
|
|
3326
|
+
"quote",
|
|
3327
|
+
"syn",
|
|
3328
|
+
]
|
|
3329
|
+
|
|
3330
|
+
[[package]]
|
|
3331
|
+
name = "zerofrom"
|
|
3332
|
+
version = "0.1.8"
|
|
3333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3334
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3335
|
+
dependencies = [
|
|
3336
|
+
"zerofrom-derive",
|
|
3337
|
+
]
|
|
3338
|
+
|
|
3339
|
+
[[package]]
|
|
3340
|
+
name = "zerofrom-derive"
|
|
3341
|
+
version = "0.1.7"
|
|
3342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3343
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3344
|
+
dependencies = [
|
|
3345
|
+
"proc-macro2",
|
|
3346
|
+
"quote",
|
|
3347
|
+
"syn",
|
|
3348
|
+
"synstructure",
|
|
3349
|
+
]
|
|
3350
|
+
|
|
3351
|
+
[[package]]
|
|
3352
|
+
name = "zeroize"
|
|
3353
|
+
version = "1.8.2"
|
|
3354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3355
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3356
|
+
|
|
3357
|
+
[[package]]
|
|
3358
|
+
name = "zerotrie"
|
|
3359
|
+
version = "0.2.4"
|
|
3360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3361
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3362
|
+
dependencies = [
|
|
3363
|
+
"displaydoc",
|
|
3364
|
+
"yoke",
|
|
3365
|
+
"zerofrom",
|
|
3366
|
+
"zerovec",
|
|
3367
|
+
]
|
|
3368
|
+
|
|
3369
|
+
[[package]]
|
|
3370
|
+
name = "zerovec"
|
|
3371
|
+
version = "0.11.6"
|
|
3372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3374
|
+
dependencies = [
|
|
3375
|
+
"serde",
|
|
3376
|
+
"yoke",
|
|
3377
|
+
"zerofrom",
|
|
3378
|
+
"zerovec-derive",
|
|
3379
|
+
]
|
|
3380
|
+
|
|
3381
|
+
[[package]]
|
|
3382
|
+
name = "zerovec-derive"
|
|
3383
|
+
version = "0.11.3"
|
|
3384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3385
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3386
|
+
dependencies = [
|
|
3387
|
+
"proc-macro2",
|
|
3388
|
+
"quote",
|
|
3389
|
+
"syn",
|
|
3390
|
+
]
|
|
3391
|
+
|
|
3392
|
+
[[package]]
|
|
3393
|
+
name = "zmij"
|
|
3394
|
+
version = "1.0.21"
|
|
3395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
3397
|
+
|
|
3398
|
+
[[package]]
|
|
3399
|
+
name = "zune-core"
|
|
3400
|
+
version = "0.5.1"
|
|
3401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3402
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
3403
|
+
|
|
3404
|
+
[[package]]
|
|
3405
|
+
name = "zune-inflate"
|
|
3406
|
+
version = "0.2.54"
|
|
3407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3408
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
3409
|
+
dependencies = [
|
|
3410
|
+
"simd-adler32",
|
|
3411
|
+
]
|
|
3412
|
+
|
|
3413
|
+
[[package]]
|
|
3414
|
+
name = "zune-jpeg"
|
|
3415
|
+
version = "0.5.15"
|
|
3416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
+
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
3418
|
+
dependencies = [
|
|
3419
|
+
"zune-core",
|
|
3420
|
+
]
|