pixelification 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.
- pixelification-0.1.0/.gitignore +2 -0
- pixelification-0.1.0/.python-version +1 -0
- pixelification-0.1.0/Cargo.lock +634 -0
- pixelification-0.1.0/Cargo.toml +27 -0
- pixelification-0.1.0/PKG-INFO +88 -0
- pixelification-0.1.0/README.md +78 -0
- pixelification-0.1.0/aster-browser-todo.md +408 -0
- pixelification-0.1.0/main.py +6 -0
- pixelification-0.1.0/pyproject.toml +18 -0
- pixelification-0.1.0/src/app/mod.rs +481 -0
- pixelification-0.1.0/src/config/mod.rs +0 -0
- pixelification-0.1.0/src/drag/mod.rs +0 -0
- pixelification-0.1.0/src/events/mod.rs +38 -0
- pixelification-0.1.0/src/main.rs +18 -0
- pixelification-0.1.0/src/pixelification/__init__.py +0 -0
- pixelification-0.1.0/src/pixelification/main.py +531 -0
- pixelification-0.1.0/src/state/mod.rs +199 -0
- pixelification-0.1.0/src/ui/animated.rs +54 -0
- pixelification-0.1.0/src/ui/bitmap.rs +31 -0
- pixelification-0.1.0/src/ui/brush.rs +24 -0
- pixelification-0.1.0/src/ui/color.rs +80 -0
- pixelification-0.1.0/src/ui/font.rs +49 -0
- pixelification-0.1.0/src/ui/mod.rs +6 -0
- pixelification-0.1.0/src/ui/render.rs +143 -0
- pixelification-0.1.0/src/webview/mod.rs +126 -0
- pixelification-0.1.0/src/win32.rs +208 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12
|
|
@@ -0,0 +1,634 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "aster-browser"
|
|
16
|
+
version = "0.1.0"
|
|
17
|
+
dependencies = [
|
|
18
|
+
"serde",
|
|
19
|
+
"serde_json",
|
|
20
|
+
"toml",
|
|
21
|
+
"tracing",
|
|
22
|
+
"tracing-subscriber",
|
|
23
|
+
"webview2-com",
|
|
24
|
+
"windows 0.60.0",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "cfg-if"
|
|
29
|
+
version = "1.0.4"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "equivalent"
|
|
35
|
+
version = "1.0.2"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "hashbrown"
|
|
41
|
+
version = "0.17.1"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "indexmap"
|
|
47
|
+
version = "2.14.0"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"equivalent",
|
|
52
|
+
"hashbrown",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "itoa"
|
|
57
|
+
version = "1.0.18"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "lazy_static"
|
|
63
|
+
version = "1.5.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "log"
|
|
69
|
+
version = "0.4.30"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "matchers"
|
|
75
|
+
version = "0.2.0"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"regex-automata",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "memchr"
|
|
84
|
+
version = "2.8.1"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "nu-ansi-term"
|
|
90
|
+
version = "0.50.3"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"windows-sys",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "once_cell"
|
|
99
|
+
version = "1.21.4"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "pin-project-lite"
|
|
105
|
+
version = "0.2.17"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "proc-macro2"
|
|
111
|
+
version = "1.0.106"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"unicode-ident",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "quote"
|
|
120
|
+
version = "1.0.45"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"proc-macro2",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "regex-automata"
|
|
129
|
+
version = "0.4.14"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"aho-corasick",
|
|
134
|
+
"memchr",
|
|
135
|
+
"regex-syntax",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "regex-syntax"
|
|
140
|
+
version = "0.8.10"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "serde"
|
|
146
|
+
version = "1.0.228"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"serde_core",
|
|
151
|
+
"serde_derive",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "serde_core"
|
|
156
|
+
version = "1.0.228"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"serde_derive",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "serde_derive"
|
|
165
|
+
version = "1.0.228"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"proc-macro2",
|
|
170
|
+
"quote",
|
|
171
|
+
"syn",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "serde_json"
|
|
176
|
+
version = "1.0.150"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"itoa",
|
|
181
|
+
"memchr",
|
|
182
|
+
"serde",
|
|
183
|
+
"serde_core",
|
|
184
|
+
"zmij",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "serde_spanned"
|
|
189
|
+
version = "0.6.9"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"serde",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "sharded-slab"
|
|
198
|
+
version = "0.1.7"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"lazy_static",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "smallvec"
|
|
207
|
+
version = "1.15.1"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "syn"
|
|
213
|
+
version = "2.0.117"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"proc-macro2",
|
|
218
|
+
"quote",
|
|
219
|
+
"unicode-ident",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "thiserror"
|
|
224
|
+
version = "2.0.18"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"thiserror-impl",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "thiserror-impl"
|
|
233
|
+
version = "2.0.18"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"proc-macro2",
|
|
238
|
+
"quote",
|
|
239
|
+
"syn",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "thread_local"
|
|
244
|
+
version = "1.1.9"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"cfg-if",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "toml"
|
|
253
|
+
version = "0.8.23"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"serde",
|
|
258
|
+
"serde_spanned",
|
|
259
|
+
"toml_datetime",
|
|
260
|
+
"toml_edit",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "toml_datetime"
|
|
265
|
+
version = "0.6.11"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"serde",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "toml_edit"
|
|
274
|
+
version = "0.22.27"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"indexmap",
|
|
279
|
+
"serde",
|
|
280
|
+
"serde_spanned",
|
|
281
|
+
"toml_datetime",
|
|
282
|
+
"toml_write",
|
|
283
|
+
"winnow",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "toml_write"
|
|
288
|
+
version = "0.1.2"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "tracing"
|
|
294
|
+
version = "0.1.44"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"pin-project-lite",
|
|
299
|
+
"tracing-attributes",
|
|
300
|
+
"tracing-core",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "tracing-attributes"
|
|
305
|
+
version = "0.1.31"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"proc-macro2",
|
|
310
|
+
"quote",
|
|
311
|
+
"syn",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "tracing-core"
|
|
316
|
+
version = "0.1.36"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"once_cell",
|
|
321
|
+
"valuable",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "tracing-log"
|
|
326
|
+
version = "0.2.0"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"log",
|
|
331
|
+
"once_cell",
|
|
332
|
+
"tracing-core",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "tracing-serde"
|
|
337
|
+
version = "0.2.0"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"serde",
|
|
342
|
+
"tracing-core",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "tracing-subscriber"
|
|
347
|
+
version = "0.3.23"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"matchers",
|
|
352
|
+
"nu-ansi-term",
|
|
353
|
+
"once_cell",
|
|
354
|
+
"regex-automata",
|
|
355
|
+
"serde",
|
|
356
|
+
"serde_json",
|
|
357
|
+
"sharded-slab",
|
|
358
|
+
"smallvec",
|
|
359
|
+
"thread_local",
|
|
360
|
+
"tracing",
|
|
361
|
+
"tracing-core",
|
|
362
|
+
"tracing-log",
|
|
363
|
+
"tracing-serde",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "unicode-ident"
|
|
368
|
+
version = "1.0.24"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "valuable"
|
|
374
|
+
version = "0.1.1"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "webview2-com"
|
|
380
|
+
version = "0.39.1"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "3f89fca7a704cee10dcb3654c1dbb8941d1783132f1917358af75bec37a7d7e6"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"webview2-com-macros",
|
|
385
|
+
"webview2-com-sys",
|
|
386
|
+
"windows 0.62.2",
|
|
387
|
+
"windows-core 0.62.2",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "webview2-com-macros"
|
|
392
|
+
version = "0.8.1"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"proc-macro2",
|
|
397
|
+
"quote",
|
|
398
|
+
"syn",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "webview2-com-sys"
|
|
403
|
+
version = "0.39.1"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "b3a07132775117d6065853d9d1178157b8c90e228de47129d6bce2c7edebedfb"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"thiserror",
|
|
408
|
+
"windows 0.62.2",
|
|
409
|
+
"windows-core 0.62.2",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "windows"
|
|
414
|
+
version = "0.60.0"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "ddf874e74c7a99773e62b1c671427abf01a425e77c3d3fb9fb1e4883ea934529"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"windows-collections 0.1.1",
|
|
419
|
+
"windows-core 0.60.1",
|
|
420
|
+
"windows-future 0.1.1",
|
|
421
|
+
"windows-link 0.1.3",
|
|
422
|
+
"windows-numerics 0.1.1",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "windows"
|
|
427
|
+
version = "0.62.2"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"windows-collections 0.3.2",
|
|
432
|
+
"windows-core 0.62.2",
|
|
433
|
+
"windows-future 0.3.2",
|
|
434
|
+
"windows-numerics 0.3.1",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "windows-collections"
|
|
439
|
+
version = "0.1.1"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "5467f79cc1ba3f52ebb2ed41dbb459b8e7db636cc3429458d9a852e15bc24dec"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"windows-core 0.60.1",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "windows-collections"
|
|
448
|
+
version = "0.3.2"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"windows-core 0.62.2",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "windows-core"
|
|
457
|
+
version = "0.60.1"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "ca21a92a9cae9bf4ccae5cf8368dce0837100ddf6e6d57936749e85f152f6247"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"windows-implement 0.59.0",
|
|
462
|
+
"windows-interface",
|
|
463
|
+
"windows-link 0.1.3",
|
|
464
|
+
"windows-result 0.3.4",
|
|
465
|
+
"windows-strings 0.3.1",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "windows-core"
|
|
470
|
+
version = "0.62.2"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"windows-implement 0.60.2",
|
|
475
|
+
"windows-interface",
|
|
476
|
+
"windows-link 0.2.1",
|
|
477
|
+
"windows-result 0.4.1",
|
|
478
|
+
"windows-strings 0.5.1",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "windows-future"
|
|
483
|
+
version = "0.1.1"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "a787db4595e7eb80239b74ce8babfb1363d8e343ab072f2ffe901400c03349f0"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"windows-core 0.60.1",
|
|
488
|
+
"windows-link 0.1.3",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "windows-future"
|
|
493
|
+
version = "0.3.2"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"windows-core 0.62.2",
|
|
498
|
+
"windows-link 0.2.1",
|
|
499
|
+
"windows-threading",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "windows-implement"
|
|
504
|
+
version = "0.59.0"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "83577b051e2f49a058c308f17f273b570a6a758386fc291b5f6a934dd84e48c1"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"proc-macro2",
|
|
509
|
+
"quote",
|
|
510
|
+
"syn",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "windows-implement"
|
|
515
|
+
version = "0.60.2"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"proc-macro2",
|
|
520
|
+
"quote",
|
|
521
|
+
"syn",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "windows-interface"
|
|
526
|
+
version = "0.59.3"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"proc-macro2",
|
|
531
|
+
"quote",
|
|
532
|
+
"syn",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "windows-link"
|
|
537
|
+
version = "0.1.3"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "windows-link"
|
|
543
|
+
version = "0.2.1"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "windows-numerics"
|
|
549
|
+
version = "0.1.1"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "005dea54e2f6499f2cee279b8f703b3cf3b5734a2d8d21867c8f44003182eeed"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"windows-core 0.60.1",
|
|
554
|
+
"windows-link 0.1.3",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "windows-numerics"
|
|
559
|
+
version = "0.3.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"windows-core 0.62.2",
|
|
564
|
+
"windows-link 0.2.1",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "windows-result"
|
|
569
|
+
version = "0.3.4"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"windows-link 0.1.3",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "windows-result"
|
|
578
|
+
version = "0.4.1"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"windows-link 0.2.1",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "windows-strings"
|
|
587
|
+
version = "0.3.1"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"windows-link 0.1.3",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "windows-strings"
|
|
596
|
+
version = "0.5.1"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"windows-link 0.2.1",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "windows-sys"
|
|
605
|
+
version = "0.61.2"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"windows-link 0.2.1",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "windows-threading"
|
|
614
|
+
version = "0.2.1"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"windows-link 0.2.1",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "winnow"
|
|
623
|
+
version = "0.7.15"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"memchr",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "zmij"
|
|
632
|
+
version = "1.0.21"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "aster-browser"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
edition = "2024"
|
|
5
|
+
|
|
6
|
+
[dependencies]
|
|
7
|
+
windows = { version = "0.60", features = [
|
|
8
|
+
"Win32_Foundation",
|
|
9
|
+
"Win32_UI_WindowsAndMessaging",
|
|
10
|
+
"Win32_Graphics_Gdi",
|
|
11
|
+
"Win32_System_LibraryLoader",
|
|
12
|
+
"Win32_System_Com",
|
|
13
|
+
"Win32_System_Threading",
|
|
14
|
+
"Win32_UI_Shell",
|
|
15
|
+
"Win32_UI_HiDpi",
|
|
16
|
+
"Win32_UI_Input_KeyboardAndMouse",
|
|
17
|
+
"Win32_UI_Input_KeyboardAndMouse",
|
|
18
|
+
"Win32_System_Power",
|
|
19
|
+
"Win32_Storage_FileSystem",
|
|
20
|
+
"Win32_Networking_WinSock",
|
|
21
|
+
] }
|
|
22
|
+
serde = { version = "1", features = ["derive"] }
|
|
23
|
+
serde_json = "1"
|
|
24
|
+
toml = "0.8"
|
|
25
|
+
tracing = "0.1"
|
|
26
|
+
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
|
|
27
|
+
webview2-com = "0.39"
|