pyxclip 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.
- pyxclip-0.1.0/Cargo.lock +972 -0
- pyxclip-0.1.0/Cargo.toml +28 -0
- pyxclip-0.1.0/PKG-INFO +26 -0
- pyxclip-0.1.0/README.md +141 -0
- pyxclip-0.1.0/pyproject.toml +42 -0
- pyxclip-0.1.0/python/pyxclip/__init__.py +23 -0
- pyxclip-0.1.0/python/pyxclip/_core.pyi +9 -0
- pyxclip-0.1.0/python/pyxclip/py.typed +0 -0
- pyxclip-0.1.0/src/lib.rs +171 -0
pyxclip-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,972 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
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 = "arboard"
|
|
13
|
+
version = "3.6.1"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"clipboard-win",
|
|
18
|
+
"image",
|
|
19
|
+
"log",
|
|
20
|
+
"objc2",
|
|
21
|
+
"objc2-app-kit",
|
|
22
|
+
"objc2-core-foundation",
|
|
23
|
+
"objc2-core-graphics",
|
|
24
|
+
"objc2-foundation",
|
|
25
|
+
"parking_lot",
|
|
26
|
+
"percent-encoding",
|
|
27
|
+
"windows-sys 0.60.2",
|
|
28
|
+
"wl-clipboard-rs",
|
|
29
|
+
"x11rb",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "autocfg"
|
|
34
|
+
version = "1.5.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bitflags"
|
|
40
|
+
version = "2.11.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "bytemuck"
|
|
46
|
+
version = "1.24.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "byteorder-lite"
|
|
52
|
+
version = "0.1.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "cc"
|
|
58
|
+
version = "1.2.57"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"find-msvc-tools",
|
|
63
|
+
"shlex",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "cfg-if"
|
|
68
|
+
version = "1.0.4"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "clipboard-win"
|
|
74
|
+
version = "5.4.1"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"error-code",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "crc32fast"
|
|
83
|
+
version = "1.5.0"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"cfg-if",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "crunchy"
|
|
92
|
+
version = "0.2.4"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "dispatch2"
|
|
98
|
+
version = "0.3.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"bitflags",
|
|
103
|
+
"objc2",
|
|
104
|
+
]
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "downcast-rs"
|
|
108
|
+
version = "1.2.1"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "equivalent"
|
|
114
|
+
version = "1.0.2"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "errno"
|
|
120
|
+
version = "0.3.14"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"libc",
|
|
125
|
+
"windows-sys 0.61.2",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "error-code"
|
|
130
|
+
version = "3.3.2"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "fax"
|
|
136
|
+
version = "0.2.6"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"fax_derive",
|
|
141
|
+
]
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "fax_derive"
|
|
145
|
+
version = "0.2.0"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"proc-macro2",
|
|
150
|
+
"quote",
|
|
151
|
+
"syn",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "fdeflate"
|
|
156
|
+
version = "0.3.7"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"simd-adler32",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "find-msvc-tools"
|
|
165
|
+
version = "0.1.9"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "fixedbitset"
|
|
171
|
+
version = "0.5.7"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "flate2"
|
|
177
|
+
version = "1.1.8"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
|
|
180
|
+
dependencies = [
|
|
181
|
+
"crc32fast",
|
|
182
|
+
"miniz_oxide",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "foldhash"
|
|
187
|
+
version = "0.1.5"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "gethostname"
|
|
193
|
+
version = "1.1.0"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"rustix",
|
|
198
|
+
"windows-link",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "half"
|
|
203
|
+
version = "2.7.1"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"cfg-if",
|
|
208
|
+
"crunchy",
|
|
209
|
+
"zerocopy",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "hashbrown"
|
|
214
|
+
version = "0.15.5"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"foldhash",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "hashbrown"
|
|
223
|
+
version = "0.16.1"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "heck"
|
|
229
|
+
version = "0.5.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "image"
|
|
235
|
+
version = "0.25.9"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"bytemuck",
|
|
240
|
+
"byteorder-lite",
|
|
241
|
+
"moxcms",
|
|
242
|
+
"num-traits",
|
|
243
|
+
"png",
|
|
244
|
+
"tiff",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "indexmap"
|
|
249
|
+
version = "2.13.0"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"equivalent",
|
|
254
|
+
"hashbrown 0.16.1",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "indoc"
|
|
259
|
+
version = "2.0.7"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"rustversion",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "libc"
|
|
268
|
+
version = "0.2.183"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "linux-raw-sys"
|
|
274
|
+
version = "0.12.1"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "lock_api"
|
|
280
|
+
version = "0.4.14"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"scopeguard",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "log"
|
|
289
|
+
version = "0.4.29"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "memchr"
|
|
295
|
+
version = "2.8.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "memoffset"
|
|
301
|
+
version = "0.9.1"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"autocfg",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "miniz_oxide"
|
|
310
|
+
version = "0.8.9"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"adler2",
|
|
315
|
+
"simd-adler32",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "moxcms"
|
|
320
|
+
version = "0.7.11"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"num-traits",
|
|
325
|
+
"pxfm",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "nom"
|
|
330
|
+
version = "8.0.0"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"memchr",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "num-traits"
|
|
339
|
+
version = "0.2.19"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"autocfg",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "objc2"
|
|
348
|
+
version = "0.6.4"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"objc2-encode",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "objc2-app-kit"
|
|
357
|
+
version = "0.3.2"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"bitflags",
|
|
362
|
+
"objc2",
|
|
363
|
+
"objc2-core-graphics",
|
|
364
|
+
"objc2-foundation",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "objc2-core-foundation"
|
|
369
|
+
version = "0.3.2"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"bitflags",
|
|
374
|
+
"dispatch2",
|
|
375
|
+
"objc2",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "objc2-core-graphics"
|
|
380
|
+
version = "0.3.2"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"bitflags",
|
|
385
|
+
"dispatch2",
|
|
386
|
+
"objc2",
|
|
387
|
+
"objc2-core-foundation",
|
|
388
|
+
"objc2-io-surface",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "objc2-encode"
|
|
393
|
+
version = "4.1.0"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "objc2-foundation"
|
|
399
|
+
version = "0.3.2"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"bitflags",
|
|
404
|
+
"objc2",
|
|
405
|
+
"objc2-core-foundation",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "objc2-io-surface"
|
|
410
|
+
version = "0.3.2"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"bitflags",
|
|
415
|
+
"objc2",
|
|
416
|
+
"objc2-core-foundation",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "once_cell"
|
|
421
|
+
version = "1.21.4"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "os_pipe"
|
|
427
|
+
version = "1.2.3"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"libc",
|
|
432
|
+
"windows-sys 0.61.2",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "parking_lot"
|
|
437
|
+
version = "0.12.5"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"lock_api",
|
|
442
|
+
"parking_lot_core",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "parking_lot_core"
|
|
447
|
+
version = "0.9.12"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"cfg-if",
|
|
452
|
+
"libc",
|
|
453
|
+
"redox_syscall",
|
|
454
|
+
"smallvec",
|
|
455
|
+
"windows-link",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "percent-encoding"
|
|
460
|
+
version = "2.3.2"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "petgraph"
|
|
466
|
+
version = "0.8.3"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"fixedbitset",
|
|
471
|
+
"hashbrown 0.15.5",
|
|
472
|
+
"indexmap",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "pkg-config"
|
|
477
|
+
version = "0.3.32"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "png"
|
|
483
|
+
version = "0.18.0"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"bitflags",
|
|
488
|
+
"crc32fast",
|
|
489
|
+
"fdeflate",
|
|
490
|
+
"flate2",
|
|
491
|
+
"miniz_oxide",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "portable-atomic"
|
|
496
|
+
version = "1.13.1"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "proc-macro2"
|
|
502
|
+
version = "1.0.106"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"unicode-ident",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "pxfm"
|
|
511
|
+
version = "0.1.27"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"num-traits",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "pyo3"
|
|
520
|
+
version = "0.23.5"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"cfg-if",
|
|
525
|
+
"indoc",
|
|
526
|
+
"libc",
|
|
527
|
+
"memoffset",
|
|
528
|
+
"once_cell",
|
|
529
|
+
"portable-atomic",
|
|
530
|
+
"pyo3-build-config",
|
|
531
|
+
"pyo3-ffi",
|
|
532
|
+
"pyo3-macros",
|
|
533
|
+
"unindent",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "pyo3-build-config"
|
|
538
|
+
version = "0.23.5"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"once_cell",
|
|
543
|
+
"target-lexicon",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "pyo3-ffi"
|
|
548
|
+
version = "0.23.5"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"libc",
|
|
553
|
+
"pyo3-build-config",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "pyo3-macros"
|
|
558
|
+
version = "0.23.5"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"proc-macro2",
|
|
563
|
+
"pyo3-macros-backend",
|
|
564
|
+
"quote",
|
|
565
|
+
"syn",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "pyo3-macros-backend"
|
|
570
|
+
version = "0.23.5"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"heck",
|
|
575
|
+
"proc-macro2",
|
|
576
|
+
"pyo3-build-config",
|
|
577
|
+
"quote",
|
|
578
|
+
"syn",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "pyxclip"
|
|
583
|
+
version = "0.1.0"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"arboard",
|
|
586
|
+
"pyo3",
|
|
587
|
+
]
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "quick-error"
|
|
591
|
+
version = "2.0.1"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "quick-xml"
|
|
597
|
+
version = "0.39.2"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"memchr",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "quote"
|
|
606
|
+
version = "1.0.45"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"proc-macro2",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "redox_syscall"
|
|
615
|
+
version = "0.5.18"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"bitflags",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "rustix"
|
|
624
|
+
version = "1.1.4"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"bitflags",
|
|
629
|
+
"errno",
|
|
630
|
+
"libc",
|
|
631
|
+
"linux-raw-sys",
|
|
632
|
+
"windows-sys 0.61.2",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "rustversion"
|
|
637
|
+
version = "1.0.22"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "scopeguard"
|
|
643
|
+
version = "1.2.0"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "shlex"
|
|
649
|
+
version = "1.3.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "simd-adler32"
|
|
655
|
+
version = "0.3.8"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "smallvec"
|
|
661
|
+
version = "1.15.1"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "syn"
|
|
667
|
+
version = "2.0.117"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"proc-macro2",
|
|
672
|
+
"quote",
|
|
673
|
+
"unicode-ident",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "target-lexicon"
|
|
678
|
+
version = "0.12.16"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "thiserror"
|
|
684
|
+
version = "2.0.18"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"thiserror-impl",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "thiserror-impl"
|
|
693
|
+
version = "2.0.18"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"proc-macro2",
|
|
698
|
+
"quote",
|
|
699
|
+
"syn",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "tiff"
|
|
704
|
+
version = "0.10.3"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"fax",
|
|
709
|
+
"flate2",
|
|
710
|
+
"half",
|
|
711
|
+
"quick-error",
|
|
712
|
+
"weezl",
|
|
713
|
+
"zune-jpeg",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "tree_magic_mini"
|
|
718
|
+
version = "3.2.2"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "b8765b90061cba6c22b5831f675da109ae5561588290f9fa2317adab2714d5a6"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"memchr",
|
|
723
|
+
"nom",
|
|
724
|
+
"petgraph",
|
|
725
|
+
]
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "unicode-ident"
|
|
729
|
+
version = "1.0.24"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "unindent"
|
|
735
|
+
version = "0.2.4"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "wayland-backend"
|
|
741
|
+
version = "0.3.14"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "aa75f400b7f719bcd68b3f47cd939ba654cedeef690f486db71331eec4c6a406"
|
|
744
|
+
dependencies = [
|
|
745
|
+
"cc",
|
|
746
|
+
"downcast-rs",
|
|
747
|
+
"rustix",
|
|
748
|
+
"smallvec",
|
|
749
|
+
"wayland-sys",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "wayland-client"
|
|
754
|
+
version = "0.31.13"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "ab51d9f7c071abeee76007e2b742499e535148035bb835f97aaed1338cf516c3"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"bitflags",
|
|
759
|
+
"rustix",
|
|
760
|
+
"wayland-backend",
|
|
761
|
+
"wayland-scanner",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "wayland-protocols"
|
|
766
|
+
version = "0.32.11"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "b23b5df31ceff1328f06ac607591d5ba360cf58f90c8fad4ac8d3a55a3c4aec7"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"bitflags",
|
|
771
|
+
"wayland-backend",
|
|
772
|
+
"wayland-client",
|
|
773
|
+
"wayland-scanner",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "wayland-protocols-wlr"
|
|
778
|
+
version = "0.3.11"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "78248e4cc0eff8163370ba5c158630dcae1f3497a586b826eca2ef5f348d6235"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"bitflags",
|
|
783
|
+
"wayland-backend",
|
|
784
|
+
"wayland-client",
|
|
785
|
+
"wayland-protocols",
|
|
786
|
+
"wayland-scanner",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "wayland-scanner"
|
|
791
|
+
version = "0.31.9"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "c86287151a309799b821ca709b7345a048a2956af05957c89cb824ab919fa4e3"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"proc-macro2",
|
|
796
|
+
"quick-xml",
|
|
797
|
+
"quote",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "wayland-sys"
|
|
802
|
+
version = "0.31.10"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "374f6b70e8e0d6bf9461a32988fd553b59ff630964924dad6e4a4eb6bd538d17"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"pkg-config",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "weezl"
|
|
811
|
+
version = "0.1.12"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "windows-link"
|
|
817
|
+
version = "0.2.1"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "windows-sys"
|
|
823
|
+
version = "0.60.2"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"windows-targets",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "windows-sys"
|
|
832
|
+
version = "0.61.2"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"windows-link",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "windows-targets"
|
|
841
|
+
version = "0.53.5"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"windows-link",
|
|
846
|
+
"windows_aarch64_gnullvm",
|
|
847
|
+
"windows_aarch64_msvc",
|
|
848
|
+
"windows_i686_gnu",
|
|
849
|
+
"windows_i686_gnullvm",
|
|
850
|
+
"windows_i686_msvc",
|
|
851
|
+
"windows_x86_64_gnu",
|
|
852
|
+
"windows_x86_64_gnullvm",
|
|
853
|
+
"windows_x86_64_msvc",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "windows_aarch64_gnullvm"
|
|
858
|
+
version = "0.53.1"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "windows_aarch64_msvc"
|
|
864
|
+
version = "0.53.1"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "windows_i686_gnu"
|
|
870
|
+
version = "0.53.1"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "windows_i686_gnullvm"
|
|
876
|
+
version = "0.53.1"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "windows_i686_msvc"
|
|
882
|
+
version = "0.53.1"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "windows_x86_64_gnu"
|
|
888
|
+
version = "0.53.1"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "windows_x86_64_gnullvm"
|
|
894
|
+
version = "0.53.1"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "windows_x86_64_msvc"
|
|
900
|
+
version = "0.53.1"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "wl-clipboard-rs"
|
|
906
|
+
version = "0.9.3"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "e9651471a32e87d96ef3a127715382b2d11cc7c8bb9822ded8a7cc94072eb0a3"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"libc",
|
|
911
|
+
"log",
|
|
912
|
+
"os_pipe",
|
|
913
|
+
"rustix",
|
|
914
|
+
"thiserror",
|
|
915
|
+
"tree_magic_mini",
|
|
916
|
+
"wayland-backend",
|
|
917
|
+
"wayland-client",
|
|
918
|
+
"wayland-protocols",
|
|
919
|
+
"wayland-protocols-wlr",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "x11rb"
|
|
924
|
+
version = "0.13.2"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"gethostname",
|
|
929
|
+
"rustix",
|
|
930
|
+
"x11rb-protocol",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "x11rb-protocol"
|
|
935
|
+
version = "0.13.2"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "zerocopy"
|
|
941
|
+
version = "0.8.34"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "71ddd76bcebeed25db614f82bf31a9f4222d3fbba300e6fb6c00afa26cbd4d9d"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"zerocopy-derive",
|
|
946
|
+
]
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "zerocopy-derive"
|
|
950
|
+
version = "0.8.34"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "d8187381b52e32220d50b255276aa16a084ec0a9017a0ca2152a1f55c539758d"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"proc-macro2",
|
|
955
|
+
"quote",
|
|
956
|
+
"syn",
|
|
957
|
+
]
|
|
958
|
+
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "zune-core"
|
|
961
|
+
version = "0.4.12"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "zune-jpeg"
|
|
967
|
+
version = "0.4.21"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"zune-core",
|
|
972
|
+
]
|