• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "bitflags"
7version = "1.2.1"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
10
11[[package]]
12name = "cc"
13version = "1.0.67"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
16
17[[package]]
18name = "cfg-if"
19version = "0.1.10"
20source = "registry+https://github.com/rust-lang/crates.io-index"
21checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
22
23[[package]]
24name = "cfg-if"
25version = "1.0.0"
26source = "registry+https://github.com/rust-lang/crates.io-index"
27checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
28
29[[package]]
30name = "dlib"
31version = "0.4.2"
32source = "registry+https://github.com/rust-lang/crates.io-index"
33checksum = "b11f15d1e3268f140f68d390637d5e76d849782d971ae7063e0da69fe9709a76"
34dependencies = [
35 "libloading 0.6.7",
36]
37
38[[package]]
39name = "downcast-rs"
40version = "1.2.0"
41source = "registry+https://github.com/rust-lang/crates.io-index"
42checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
43
44[[package]]
45name = "gl"
46version = "0.14.0"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "a94edab108827d67608095e269cf862e60d920f144a5026d3dbcfd8b877fb404"
49dependencies = [
50 "gl_generator",
51]
52
53[[package]]
54name = "gl_generator"
55version = "0.14.0"
56source = "registry+https://github.com/rust-lang/crates.io-index"
57checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
58dependencies = [
59 "khronos_api",
60 "log",
61 "xml-rs",
62]
63
64[[package]]
65name = "khronos-egl"
66version = "6.0.0"
67dependencies = [
68 "gl",
69 "libc",
70 "libloading 0.8.0",
71 "pkg-config",
72 "wayland-client",
73 "wayland-egl",
74 "wayland-protocols",
75]
76
77[[package]]
78name = "khronos_api"
79version = "3.1.0"
80source = "registry+https://github.com/rust-lang/crates.io-index"
81checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
82
83[[package]]
84name = "libc"
85version = "0.2.86"
86source = "registry+https://github.com/rust-lang/crates.io-index"
87checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
88
89[[package]]
90name = "libloading"
91version = "0.6.7"
92source = "registry+https://github.com/rust-lang/crates.io-index"
93checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883"
94dependencies = [
95 "cfg-if 1.0.0",
96 "winapi",
97]
98
99[[package]]
100name = "libloading"
101version = "0.8.0"
102source = "registry+https://github.com/rust-lang/crates.io-index"
103checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb"
104dependencies = [
105 "cfg-if 1.0.0",
106 "windows-sys",
107]
108
109[[package]]
110name = "log"
111version = "0.4.14"
112source = "registry+https://github.com/rust-lang/crates.io-index"
113checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
114dependencies = [
115 "cfg-if 1.0.0",
116]
117
118[[package]]
119name = "nix"
120version = "0.18.0"
121source = "registry+https://github.com/rust-lang/crates.io-index"
122checksum = "83450fe6a6142ddd95fb064b746083fc4ef1705fe81f64a64e1d4b39f54a1055"
123dependencies = [
124 "bitflags",
125 "cc",
126 "cfg-if 0.1.10",
127 "libc",
128]
129
130[[package]]
131name = "once_cell"
132version = "1.6.0"
133source = "registry+https://github.com/rust-lang/crates.io-index"
134checksum = "4ad167a2f54e832b82dbe003a046280dceffe5227b5f79e08e363a29638cfddd"
135
136[[package]]
137name = "pkg-config"
138version = "0.3.19"
139source = "registry+https://github.com/rust-lang/crates.io-index"
140checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
141
142[[package]]
143name = "proc-macro2"
144version = "1.0.24"
145source = "registry+https://github.com/rust-lang/crates.io-index"
146checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
147dependencies = [
148 "unicode-xid",
149]
150
151[[package]]
152name = "quote"
153version = "1.0.9"
154source = "registry+https://github.com/rust-lang/crates.io-index"
155checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
156dependencies = [
157 "proc-macro2",
158]
159
160[[package]]
161name = "scoped-tls"
162version = "1.0.0"
163source = "registry+https://github.com/rust-lang/crates.io-index"
164checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
165
166[[package]]
167name = "smallvec"
168version = "1.6.1"
169source = "registry+https://github.com/rust-lang/crates.io-index"
170checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
171
172[[package]]
173name = "unicode-xid"
174version = "0.2.1"
175source = "registry+https://github.com/rust-lang/crates.io-index"
176checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
177
178[[package]]
179name = "wayland-client"
180version = "0.28.3"
181source = "registry+https://github.com/rust-lang/crates.io-index"
182checksum = "bdbdbe01d03b2267809f3ed99495b37395387fde789e0f2ebb78e8b43f75b6d7"
183dependencies = [
184 "bitflags",
185 "downcast-rs",
186 "libc",
187 "nix",
188 "scoped-tls",
189 "wayland-commons",
190 "wayland-scanner",
191 "wayland-sys",
192]
193
194[[package]]
195name = "wayland-commons"
196version = "0.28.3"
197source = "registry+https://github.com/rust-lang/crates.io-index"
198checksum = "480450f76717edd64ad04a4426280d737fc3d10a236b982df7b1aee19f0e2d56"
199dependencies = [
200 "nix",
201 "once_cell",
202 "smallvec",
203 "wayland-sys",
204]
205
206[[package]]
207name = "wayland-egl"
208version = "0.28.3"
209source = "registry+https://github.com/rust-lang/crates.io-index"
210checksum = "c653507447113c967a1aeee413699acb42d96d6302ec967c6d51930eae8aa7f5"
211dependencies = [
212 "wayland-client",
213 "wayland-sys",
214]
215
216[[package]]
217name = "wayland-protocols"
218version = "0.28.3"
219source = "registry+https://github.com/rust-lang/crates.io-index"
220checksum = "319a82b4d3054dd25acc32d9aee0f84fa95b63bc983fffe4703b6b8d47e01a30"
221dependencies = [
222 "bitflags",
223 "wayland-client",
224 "wayland-commons",
225 "wayland-scanner",
226]
227
228[[package]]
229name = "wayland-scanner"
230version = "0.28.3"
231source = "registry+https://github.com/rust-lang/crates.io-index"
232checksum = "7010ba5767b3fcd350decc59055390b4ebe6bd1b9279a9feb1f1888987f1133d"
233dependencies = [
234 "proc-macro2",
235 "quote",
236 "xml-rs",
237]
238
239[[package]]
240name = "wayland-sys"
241version = "0.28.3"
242source = "registry+https://github.com/rust-lang/crates.io-index"
243checksum = "6793834e0c35d11fd96a97297abe03d37be627e1847da52e17d7e0e3b51cc099"
244dependencies = [
245 "dlib",
246 "pkg-config",
247]
248
249[[package]]
250name = "winapi"
251version = "0.3.9"
252source = "registry+https://github.com/rust-lang/crates.io-index"
253checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
254dependencies = [
255 "winapi-i686-pc-windows-gnu",
256 "winapi-x86_64-pc-windows-gnu",
257]
258
259[[package]]
260name = "winapi-i686-pc-windows-gnu"
261version = "0.4.0"
262source = "registry+https://github.com/rust-lang/crates.io-index"
263checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
264
265[[package]]
266name = "winapi-x86_64-pc-windows-gnu"
267version = "0.4.0"
268source = "registry+https://github.com/rust-lang/crates.io-index"
269checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
270
271[[package]]
272name = "windows-sys"
273version = "0.48.0"
274source = "registry+https://github.com/rust-lang/crates.io-index"
275checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
276dependencies = [
277 "windows-targets",
278]
279
280[[package]]
281name = "windows-targets"
282version = "0.48.0"
283source = "registry+https://github.com/rust-lang/crates.io-index"
284checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
285dependencies = [
286 "windows_aarch64_gnullvm",
287 "windows_aarch64_msvc",
288 "windows_i686_gnu",
289 "windows_i686_msvc",
290 "windows_x86_64_gnu",
291 "windows_x86_64_gnullvm",
292 "windows_x86_64_msvc",
293]
294
295[[package]]
296name = "windows_aarch64_gnullvm"
297version = "0.48.0"
298source = "registry+https://github.com/rust-lang/crates.io-index"
299checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
300
301[[package]]
302name = "windows_aarch64_msvc"
303version = "0.48.0"
304source = "registry+https://github.com/rust-lang/crates.io-index"
305checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
306
307[[package]]
308name = "windows_i686_gnu"
309version = "0.48.0"
310source = "registry+https://github.com/rust-lang/crates.io-index"
311checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
312
313[[package]]
314name = "windows_i686_msvc"
315version = "0.48.0"
316source = "registry+https://github.com/rust-lang/crates.io-index"
317checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
318
319[[package]]
320name = "windows_x86_64_gnu"
321version = "0.48.0"
322source = "registry+https://github.com/rust-lang/crates.io-index"
323checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
324
325[[package]]
326name = "windows_x86_64_gnullvm"
327version = "0.48.0"
328source = "registry+https://github.com/rust-lang/crates.io-index"
329checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
330
331[[package]]
332name = "windows_x86_64_msvc"
333version = "0.48.0"
334source = "registry+https://github.com/rust-lang/crates.io-index"
335checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
336
337[[package]]
338name = "xml-rs"
339version = "0.8.3"
340source = "registry+https://github.com/rust-lang/crates.io-index"
341checksum = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a"
342