]> git.lizzy.rs Git - rs2048.git/blob - Cargo.lock
Fix inner field area
[rs2048.git] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "autocfg"
7 version = "1.1.0"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
10
11 [[package]]
12 name = "bitflags"
13 version = "1.3.2"
14 source = "registry+https://github.com/rust-lang/crates.io-index"
15 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
16
17 [[package]]
18 name = "cfg-if"
19 version = "1.0.0"
20 source = "registry+https://github.com/rust-lang/crates.io-index"
21 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
22
23 [[package]]
24 name = "crossterm"
25 version = "0.25.0"
26 source = "registry+https://github.com/rust-lang/crates.io-index"
27 checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
28 dependencies = [
29  "bitflags",
30  "crossterm_winapi",
31  "libc",
32  "mio",
33  "parking_lot",
34  "signal-hook",
35  "signal-hook-mio",
36  "winapi",
37 ]
38
39 [[package]]
40 name = "crossterm_winapi"
41 version = "0.9.0"
42 source = "registry+https://github.com/rust-lang/crates.io-index"
43 checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
44 dependencies = [
45  "winapi",
46 ]
47
48 [[package]]
49 name = "getrandom"
50 version = "0.2.7"
51 source = "registry+https://github.com/rust-lang/crates.io-index"
52 checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
53 dependencies = [
54  "cfg-if",
55  "libc",
56  "wasi",
57 ]
58
59 [[package]]
60 name = "glam"
61 version = "0.21.3"
62 source = "registry+https://github.com/rust-lang/crates.io-index"
63 checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
64
65 [[package]]
66 name = "hsl"
67 version = "0.1.1"
68 source = "registry+https://github.com/rust-lang/crates.io-index"
69 checksum = "575fb7f1167f3b88ed825e90eb14918ac460461fdeaa3965c6a50951dee1c970"
70
71 [[package]]
72 name = "libc"
73 version = "0.2.132"
74 source = "registry+https://github.com/rust-lang/crates.io-index"
75 checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
76
77 [[package]]
78 name = "lock_api"
79 version = "0.4.8"
80 source = "registry+https://github.com/rust-lang/crates.io-index"
81 checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390"
82 dependencies = [
83  "autocfg",
84  "scopeguard",
85 ]
86
87 [[package]]
88 name = "log"
89 version = "0.4.17"
90 source = "registry+https://github.com/rust-lang/crates.io-index"
91 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
92 dependencies = [
93  "cfg-if",
94 ]
95
96 [[package]]
97 name = "mio"
98 version = "0.8.4"
99 source = "registry+https://github.com/rust-lang/crates.io-index"
100 checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
101 dependencies = [
102  "libc",
103  "log",
104  "wasi",
105  "windows-sys",
106 ]
107
108 [[package]]
109 name = "parking_lot"
110 version = "0.12.1"
111 source = "registry+https://github.com/rust-lang/crates.io-index"
112 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
113 dependencies = [
114  "lock_api",
115  "parking_lot_core",
116 ]
117
118 [[package]]
119 name = "parking_lot_core"
120 version = "0.9.3"
121 source = "registry+https://github.com/rust-lang/crates.io-index"
122 checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
123 dependencies = [
124  "cfg-if",
125  "libc",
126  "redox_syscall",
127  "smallvec",
128  "windows-sys",
129 ]
130
131 [[package]]
132 name = "ppv-lite86"
133 version = "0.2.16"
134 source = "registry+https://github.com/rust-lang/crates.io-index"
135 checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
136
137 [[package]]
138 name = "rand"
139 version = "0.8.5"
140 source = "registry+https://github.com/rust-lang/crates.io-index"
141 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
142 dependencies = [
143  "libc",
144  "rand_chacha",
145  "rand_core",
146 ]
147
148 [[package]]
149 name = "rand_chacha"
150 version = "0.3.1"
151 source = "registry+https://github.com/rust-lang/crates.io-index"
152 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
153 dependencies = [
154  "ppv-lite86",
155  "rand_core",
156 ]
157
158 [[package]]
159 name = "rand_core"
160 version = "0.6.3"
161 source = "registry+https://github.com/rust-lang/crates.io-index"
162 checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
163 dependencies = [
164  "getrandom",
165 ]
166
167 [[package]]
168 name = "redox_syscall"
169 version = "0.2.16"
170 source = "registry+https://github.com/rust-lang/crates.io-index"
171 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
172 dependencies = [
173  "bitflags",
174 ]
175
176 [[package]]
177 name = "rs2048"
178 version = "0.1.0"
179 dependencies = [
180  "crossterm",
181  "glam",
182  "hsl",
183  "rand",
184 ]
185
186 [[package]]
187 name = "scopeguard"
188 version = "1.1.0"
189 source = "registry+https://github.com/rust-lang/crates.io-index"
190 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
191
192 [[package]]
193 name = "signal-hook"
194 version = "0.3.14"
195 source = "registry+https://github.com/rust-lang/crates.io-index"
196 checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
197 dependencies = [
198  "libc",
199  "signal-hook-registry",
200 ]
201
202 [[package]]
203 name = "signal-hook-mio"
204 version = "0.2.3"
205 source = "registry+https://github.com/rust-lang/crates.io-index"
206 checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
207 dependencies = [
208  "libc",
209  "mio",
210  "signal-hook",
211 ]
212
213 [[package]]
214 name = "signal-hook-registry"
215 version = "1.4.0"
216 source = "registry+https://github.com/rust-lang/crates.io-index"
217 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
218 dependencies = [
219  "libc",
220 ]
221
222 [[package]]
223 name = "smallvec"
224 version = "1.9.0"
225 source = "registry+https://github.com/rust-lang/crates.io-index"
226 checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
227
228 [[package]]
229 name = "wasi"
230 version = "0.11.0+wasi-snapshot-preview1"
231 source = "registry+https://github.com/rust-lang/crates.io-index"
232 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
233
234 [[package]]
235 name = "winapi"
236 version = "0.3.9"
237 source = "registry+https://github.com/rust-lang/crates.io-index"
238 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
239 dependencies = [
240  "winapi-i686-pc-windows-gnu",
241  "winapi-x86_64-pc-windows-gnu",
242 ]
243
244 [[package]]
245 name = "winapi-i686-pc-windows-gnu"
246 version = "0.4.0"
247 source = "registry+https://github.com/rust-lang/crates.io-index"
248 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
249
250 [[package]]
251 name = "winapi-x86_64-pc-windows-gnu"
252 version = "0.4.0"
253 source = "registry+https://github.com/rust-lang/crates.io-index"
254 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
255
256 [[package]]
257 name = "windows-sys"
258 version = "0.36.1"
259 source = "registry+https://github.com/rust-lang/crates.io-index"
260 checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
261 dependencies = [
262  "windows_aarch64_msvc",
263  "windows_i686_gnu",
264  "windows_i686_msvc",
265  "windows_x86_64_gnu",
266  "windows_x86_64_msvc",
267 ]
268
269 [[package]]
270 name = "windows_aarch64_msvc"
271 version = "0.36.1"
272 source = "registry+https://github.com/rust-lang/crates.io-index"
273 checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
274
275 [[package]]
276 name = "windows_i686_gnu"
277 version = "0.36.1"
278 source = "registry+https://github.com/rust-lang/crates.io-index"
279 checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
280
281 [[package]]
282 name = "windows_i686_msvc"
283 version = "0.36.1"
284 source = "registry+https://github.com/rust-lang/crates.io-index"
285 checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
286
287 [[package]]
288 name = "windows_x86_64_gnu"
289 version = "0.36.1"
290 source = "registry+https://github.com/rust-lang/crates.io-index"
291 checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
292
293 [[package]]
294 name = "windows_x86_64_msvc"
295 version = "0.36.1"
296 source = "registry+https://github.com/rust-lang/crates.io-index"
297 checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"