Built an app builder and other minor things
[kaka/rust-sdl-test.git] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 [[package]]
4 name = "autocfg"
5 version = "0.1.7"
6 source = "registry+https://github.com/rust-lang/crates.io-index"
7 checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
8
9 [[package]]
10 name = "autocfg"
11 version = "1.0.1"
12 source = "registry+https://github.com/rust-lang/crates.io-index"
13 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
14
15 [[package]]
16 name = "bitflags"
17 version = "1.2.1"
18 source = "registry+https://github.com/rust-lang/crates.io-index"
19 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
20
21 [[package]]
22 name = "c_vec"
23 version = "1.3.3"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
25 checksum = "f8a318911dce53b5f1ca6539c44f5342c632269f0fa7ea3e35f32458c27a7c30"
26
27 [[package]]
28 name = "cfg-if"
29 version = "0.1.10"
30 source = "registry+https://github.com/rust-lang/crates.io-index"
31 checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
32
33 [[package]]
34 name = "cloudabi"
35 version = "0.0.3"
36 source = "registry+https://github.com/rust-lang/crates.io-index"
37 checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
38 dependencies = [
39  "bitflags",
40 ]
41
42 [[package]]
43 name = "fuchsia-cprng"
44 version = "0.1.1"
45 source = "registry+https://github.com/rust-lang/crates.io-index"
46 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
47
48 [[package]]
49 name = "lazy_static"
50 version = "1.4.0"
51 source = "registry+https://github.com/rust-lang/crates.io-index"
52 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
53
54 [[package]]
55 name = "libc"
56 version = "0.2.81"
57 source = "registry+https://github.com/rust-lang/crates.io-index"
58 checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
59
60 [[package]]
61 name = "num"
62 version = "0.1.42"
63 source = "registry+https://github.com/rust-lang/crates.io-index"
64 checksum = "4703ad64153382334aa8db57c637364c322d3372e097840c72000dabdcf6156e"
65 dependencies = [
66  "num-integer",
67  "num-iter",
68  "num-traits",
69 ]
70
71 [[package]]
72 name = "num-integer"
73 version = "0.1.44"
74 source = "registry+https://github.com/rust-lang/crates.io-index"
75 checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
76 dependencies = [
77  "autocfg 1.0.1",
78  "num-traits",
79 ]
80
81 [[package]]
82 name = "num-iter"
83 version = "0.1.42"
84 source = "registry+https://github.com/rust-lang/crates.io-index"
85 checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
86 dependencies = [
87  "autocfg 1.0.1",
88  "num-integer",
89  "num-traits",
90 ]
91
92 [[package]]
93 name = "num-traits"
94 version = "0.2.14"
95 source = "registry+https://github.com/rust-lang/crates.io-index"
96 checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
97 dependencies = [
98  "autocfg 1.0.1",
99 ]
100
101 [[package]]
102 name = "rand"
103 version = "0.6.5"
104 source = "registry+https://github.com/rust-lang/crates.io-index"
105 checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
106 dependencies = [
107  "autocfg 0.1.7",
108  "libc",
109  "rand_chacha",
110  "rand_core 0.4.2",
111  "rand_hc",
112  "rand_isaac",
113  "rand_jitter",
114  "rand_os",
115  "rand_pcg",
116  "rand_xorshift",
117  "winapi",
118 ]
119
120 [[package]]
121 name = "rand_chacha"
122 version = "0.1.1"
123 source = "registry+https://github.com/rust-lang/crates.io-index"
124 checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
125 dependencies = [
126  "autocfg 0.1.7",
127  "rand_core 0.3.1",
128 ]
129
130 [[package]]
131 name = "rand_core"
132 version = "0.3.1"
133 source = "registry+https://github.com/rust-lang/crates.io-index"
134 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
135 dependencies = [
136  "rand_core 0.4.2",
137 ]
138
139 [[package]]
140 name = "rand_core"
141 version = "0.4.2"
142 source = "registry+https://github.com/rust-lang/crates.io-index"
143 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
144
145 [[package]]
146 name = "rand_hc"
147 version = "0.1.0"
148 source = "registry+https://github.com/rust-lang/crates.io-index"
149 checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
150 dependencies = [
151  "rand_core 0.3.1",
152 ]
153
154 [[package]]
155 name = "rand_isaac"
156 version = "0.1.1"
157 source = "registry+https://github.com/rust-lang/crates.io-index"
158 checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
159 dependencies = [
160  "rand_core 0.3.1",
161 ]
162
163 [[package]]
164 name = "rand_jitter"
165 version = "0.1.4"
166 source = "registry+https://github.com/rust-lang/crates.io-index"
167 checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
168 dependencies = [
169  "libc",
170  "rand_core 0.4.2",
171  "winapi",
172 ]
173
174 [[package]]
175 name = "rand_os"
176 version = "0.1.3"
177 source = "registry+https://github.com/rust-lang/crates.io-index"
178 checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
179 dependencies = [
180  "cloudabi",
181  "fuchsia-cprng",
182  "libc",
183  "rand_core 0.4.2",
184  "rdrand",
185  "winapi",
186 ]
187
188 [[package]]
189 name = "rand_pcg"
190 version = "0.1.2"
191 source = "registry+https://github.com/rust-lang/crates.io-index"
192 checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
193 dependencies = [
194  "autocfg 0.1.7",
195  "rand_core 0.4.2",
196 ]
197
198 [[package]]
199 name = "rand_xorshift"
200 version = "0.1.1"
201 source = "registry+https://github.com/rust-lang/crates.io-index"
202 checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
203 dependencies = [
204  "rand_core 0.3.1",
205 ]
206
207 [[package]]
208 name = "rdrand"
209 version = "0.4.0"
210 source = "registry+https://github.com/rust-lang/crates.io-index"
211 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
212 dependencies = [
213  "rand_core 0.3.1",
214 ]
215
216 [[package]]
217 name = "sdl-test"
218 version = "0.1.0"
219 dependencies = [
220  "rand",
221  "sdl2",
222  "time",
223 ]
224
225 [[package]]
226 name = "sdl2"
227 version = "0.32.2"
228 source = "registry+https://github.com/rust-lang/crates.io-index"
229 checksum = "d051a07231e303f5f719da78cb6f7394f6d5b54f733aef5b0b447804a83edd7b"
230 dependencies = [
231  "bitflags",
232  "c_vec",
233  "lazy_static",
234  "libc",
235  "num",
236  "rand",
237  "sdl2-sys",
238 ]
239
240 [[package]]
241 name = "sdl2-sys"
242 version = "0.32.6"
243 source = "registry+https://github.com/rust-lang/crates.io-index"
244 checksum = "34e71125077d297d57e4c1acfe8981b5bdfbf5a20e7b589abfdcb33bf1127f86"
245 dependencies = [
246  "cfg-if",
247  "libc",
248 ]
249
250 [[package]]
251 name = "time"
252 version = "0.1.44"
253 source = "registry+https://github.com/rust-lang/crates.io-index"
254 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
255 dependencies = [
256  "libc",
257  "wasi",
258  "winapi",
259 ]
260
261 [[package]]
262 name = "wasi"
263 version = "0.10.0+wasi-snapshot-preview1"
264 source = "registry+https://github.com/rust-lang/crates.io-index"
265 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
266
267 [[package]]
268 name = "winapi"
269 version = "0.3.9"
270 source = "registry+https://github.com/rust-lang/crates.io-index"
271 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
272 dependencies = [
273  "winapi-i686-pc-windows-gnu",
274  "winapi-x86_64-pc-windows-gnu",
275 ]
276
277 [[package]]
278 name = "winapi-i686-pc-windows-gnu"
279 version = "0.4.0"
280 source = "registry+https://github.com/rust-lang/crates.io-index"
281 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
282
283 [[package]]
284 name = "winapi-x86_64-pc-windows-gnu"
285 version = "0.4.0"
286 source = "registry+https://github.com/rust-lang/crates.io-index"
287 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"