a simple chess game to play locally on a tablet or with a mouse
at master 11 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "adler" 7version = "1.0.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 11[[package]] 12name = "ahash" 13version = "0.7.6" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 16dependencies = [ 17 "getrandom", 18 "once_cell", 19 "version_check", 20] 21 22[[package]] 23name = "audir-sles" 24version = "0.1.0" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "ea47348666a8edb7ad80cbee3940eb2bccf70df0e6ce09009abe1a836cb779f5" 27 28[[package]] 29name = "audrey" 30version = "0.3.0" 31source = "registry+https://github.com/rust-lang/crates.io-index" 32checksum = "58b92a84e89497e3cd25d3672cd5d1c288abaac02c18ff21283f17d118b889b8" 33dependencies = [ 34 "dasp_frame", 35 "dasp_sample", 36 "hound", 37 "lewton", 38] 39 40[[package]] 41name = "autocfg" 42version = "1.1.0" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 45 46[[package]] 47name = "bitflags" 48version = "1.3.2" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 51 52[[package]] 53name = "bumpalo" 54version = "3.11.1" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 57 58[[package]] 59name = "bytemuck" 60version = "1.12.3" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "aaa3a8d9a1ca92e282c96a32d6511b695d7d994d1d102ba85d279f9b2756947f" 63 64[[package]] 65name = "byteorder" 66version = "1.4.3" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 69 70[[package]] 71name = "cfg-if" 72version = "1.0.0" 73source = "registry+https://github.com/rust-lang/crates.io-index" 74checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 75 76[[package]] 77name = "chess" 78version = "0.1.0" 79dependencies = [ 80 "macroquad", 81] 82 83[[package]] 84name = "color_quant" 85version = "1.1.0" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 88 89[[package]] 90name = "crc32fast" 91version = "1.3.2" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 94dependencies = [ 95 "cfg-if", 96] 97 98[[package]] 99name = "dasp_frame" 100version = "0.11.0" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "b2a3937f5fe2135702897535c8d4a5553f8b116f76c1529088797f2eee7c5cd6" 103dependencies = [ 104 "dasp_sample", 105] 106 107[[package]] 108name = "dasp_sample" 109version = "0.11.0" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f" 112 113[[package]] 114name = "flate2" 115version = "1.0.25" 116source = "registry+https://github.com/rust-lang/crates.io-index" 117checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 118dependencies = [ 119 "crc32fast", 120 "miniz_oxide", 121] 122 123[[package]] 124name = "fontdue" 125version = "0.7.2" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "6a62391ecb864cf12ed06b2af4eda2e609b97657950d6a8f06841b17726ab253" 128dependencies = [ 129 "hashbrown", 130 "ttf-parser", 131] 132 133[[package]] 134name = "getrandom" 135version = "0.2.8" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 138dependencies = [ 139 "cfg-if", 140 "libc", 141 "wasi", 142] 143 144[[package]] 145name = "glam" 146version = "0.21.3" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815" 149 150[[package]] 151name = "hashbrown" 152version = "0.11.2" 153source = "registry+https://github.com/rust-lang/crates.io-index" 154checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 155dependencies = [ 156 "ahash", 157] 158 159[[package]] 160name = "hound" 161version = "3.5.0" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "4d13cdbd5dbb29f9c88095bbdc2590c9cba0d0a1269b983fef6b2cdd7e9f4db1" 164 165[[package]] 166name = "image" 167version = "0.24.5" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "69b7ea949b537b0fd0af141fff8c77690f2ce96f4f41f042ccb6c69c6c965945" 170dependencies = [ 171 "bytemuck", 172 "byteorder", 173 "color_quant", 174 "num-rational", 175 "num-traits", 176 "png", 177] 178 179[[package]] 180name = "lewton" 181version = "0.9.4" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "8d542c1a317036c45c2aa1cf10cc9d403ca91eb2d333ef1a4917e5cb10628bd0" 184dependencies = [ 185 "byteorder", 186 "ogg", 187 "smallvec", 188] 189 190[[package]] 191name = "libc" 192version = "0.2.139" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 195 196[[package]] 197name = "macroquad" 198version = "0.3.25" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "f3790f7fd2e4c480108cbfc86488f023b72e1e0bb6ffd5c6cba38049c7e2fbfc" 201dependencies = [ 202 "bumpalo", 203 "fontdue", 204 "glam", 205 "image", 206 "macroquad_macro", 207 "miniquad", 208 "quad-rand", 209 "quad-snd", 210] 211 212[[package]] 213name = "macroquad_macro" 214version = "0.1.7" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "f5cecfede1e530599c8686f7f2d609489101d3d63741a6dc423afc997ce3fcc8" 217 218[[package]] 219name = "malloc_buf" 220version = "0.0.6" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 223dependencies = [ 224 "libc", 225] 226 227[[package]] 228name = "maybe-uninit" 229version = "2.0.0" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" 232 233[[package]] 234name = "miniquad" 235version = "0.3.14" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "46381fe09fbf91bfa402a3e4fc26a104c9130562d51f89964c46adbc00591496" 238dependencies = [ 239 "libc", 240 "ndk-sys", 241 "objc", 242 "winapi", 243] 244 245[[package]] 246name = "miniz_oxide" 247version = "0.6.2" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 250dependencies = [ 251 "adler", 252] 253 254[[package]] 255name = "ndk-sys" 256version = "0.2.2" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121" 259 260[[package]] 261name = "num-integer" 262version = "0.1.45" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 265dependencies = [ 266 "autocfg", 267 "num-traits", 268] 269 270[[package]] 271name = "num-rational" 272version = "0.4.1" 273source = "registry+https://github.com/rust-lang/crates.io-index" 274checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 275dependencies = [ 276 "autocfg", 277 "num-integer", 278 "num-traits", 279] 280 281[[package]] 282name = "num-traits" 283version = "0.2.15" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 286dependencies = [ 287 "autocfg", 288] 289 290[[package]] 291name = "objc" 292version = "0.2.7" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 295dependencies = [ 296 "malloc_buf", 297] 298 299[[package]] 300name = "ogg" 301version = "0.7.1" 302source = "registry+https://github.com/rust-lang/crates.io-index" 303checksum = "13e571c3517af9e1729d4c63571a27edd660ade0667973bfc74a67c660c2b651" 304dependencies = [ 305 "byteorder", 306] 307 308[[package]] 309name = "once_cell" 310version = "1.17.0" 311source = "registry+https://github.com/rust-lang/crates.io-index" 312checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 313 314[[package]] 315name = "png" 316version = "0.17.7" 317source = "registry+https://github.com/rust-lang/crates.io-index" 318checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" 319dependencies = [ 320 "bitflags", 321 "crc32fast", 322 "flate2", 323 "miniz_oxide", 324] 325 326[[package]] 327name = "quad-alsa-sys" 328version = "0.3.2" 329source = "registry+https://github.com/rust-lang/crates.io-index" 330checksum = "c66c2f04a6946293477973d85adc251d502da51c57b08cd9c997f0cfd8dcd4b5" 331dependencies = [ 332 "libc", 333] 334 335[[package]] 336name = "quad-rand" 337version = "0.2.1" 338source = "registry+https://github.com/rust-lang/crates.io-index" 339checksum = "658fa1faf7a4cc5f057c9ee5ef560f717ad9d8dc66d975267f709624d6e1ab88" 340 341[[package]] 342name = "quad-snd" 343version = "0.2.5" 344source = "registry+https://github.com/rust-lang/crates.io-index" 345checksum = "e82e2e4a55292a75d8569ef0b3f7c24964074efe5767b359dbf028a0b3c53464" 346dependencies = [ 347 "audir-sles", 348 "audrey", 349 "libc", 350 "quad-alsa-sys", 351 "winapi", 352] 353 354[[package]] 355name = "smallvec" 356version = "0.6.14" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" 359dependencies = [ 360 "maybe-uninit", 361] 362 363[[package]] 364name = "ttf-parser" 365version = "0.15.2" 366source = "registry+https://github.com/rust-lang/crates.io-index" 367checksum = "7b3e06c9b9d80ed6b745c7159c40b311ad2916abb34a49e9be2653b90db0d8dd" 368 369[[package]] 370name = "version_check" 371version = "0.9.4" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 374 375[[package]] 376name = "wasi" 377version = "0.11.0+wasi-snapshot-preview1" 378source = "registry+https://github.com/rust-lang/crates.io-index" 379checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 380 381[[package]] 382name = "winapi" 383version = "0.3.9" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 386dependencies = [ 387 "winapi-i686-pc-windows-gnu", 388 "winapi-x86_64-pc-windows-gnu", 389] 390 391[[package]] 392name = "winapi-i686-pc-windows-gnu" 393version = "0.4.0" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 396 397[[package]] 398name = "winapi-x86_64-pc-windows-gnu" 399version = "0.4.0" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"