/ Cargo.lock
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 = "anyhow"
  7  version = "1.0.71"
  8  source = "registry+https://github.com/rust-lang/crates.io-index"
  9  checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
 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 = "cc"
 19  version = "1.0.83"
 20  source = "registry+https://github.com/rust-lang/crates.io-index"
 21  checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
 22  dependencies = [
 23   "libc",
 24  ]
 25  
 26  [[package]]
 27  name = "cfg-if"
 28  version = "1.0.0"
 29  source = "registry+https://github.com/rust-lang/crates.io-index"
 30  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
 31  
 32  [[package]]
 33  name = "chip8"
 34  version = "0.1.0"
 35  dependencies = [
 36   "anyhow",
 37   "itertools",
 38   "rand",
 39   "raylib",
 40   "sdl2",
 41  ]
 42  
 43  [[package]]
 44  name = "cmake"
 45  version = "0.1.50"
 46  source = "registry+https://github.com/rust-lang/crates.io-index"
 47  checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
 48  dependencies = [
 49   "cc",
 50  ]
 51  
 52  [[package]]
 53  name = "either"
 54  version = "1.8.1"
 55  source = "registry+https://github.com/rust-lang/crates.io-index"
 56  checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
 57  
 58  [[package]]
 59  name = "fs_extra"
 60  version = "1.3.0"
 61  source = "registry+https://github.com/rust-lang/crates.io-index"
 62  checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
 63  
 64  [[package]]
 65  name = "getrandom"
 66  version = "0.2.9"
 67  source = "registry+https://github.com/rust-lang/crates.io-index"
 68  checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
 69  dependencies = [
 70   "cfg-if",
 71   "libc",
 72   "wasi",
 73  ]
 74  
 75  [[package]]
 76  name = "itertools"
 77  version = "0.10.5"
 78  source = "registry+https://github.com/rust-lang/crates.io-index"
 79  checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
 80  dependencies = [
 81   "either",
 82  ]
 83  
 84  [[package]]
 85  name = "lazy_static"
 86  version = "1.4.0"
 87  source = "registry+https://github.com/rust-lang/crates.io-index"
 88  checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 89  
 90  [[package]]
 91  name = "libc"
 92  version = "0.2.150"
 93  source = "registry+https://github.com/rust-lang/crates.io-index"
 94  checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
 95  
 96  [[package]]
 97  name = "ppv-lite86"
 98  version = "0.2.17"
 99  source = "registry+https://github.com/rust-lang/crates.io-index"
100  checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
101  
102  [[package]]
103  name = "rand"
104  version = "0.8.5"
105  source = "registry+https://github.com/rust-lang/crates.io-index"
106  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
107  dependencies = [
108   "libc",
109   "rand_chacha",
110   "rand_core",
111  ]
112  
113  [[package]]
114  name = "rand_chacha"
115  version = "0.3.1"
116  source = "registry+https://github.com/rust-lang/crates.io-index"
117  checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
118  dependencies = [
119   "ppv-lite86",
120   "rand_core",
121  ]
122  
123  [[package]]
124  name = "rand_core"
125  version = "0.6.4"
126  source = "registry+https://github.com/rust-lang/crates.io-index"
127  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
128  dependencies = [
129   "getrandom",
130  ]
131  
132  [[package]]
133  name = "raylib"
134  version = "3.7.0"
135  source = "registry+https://github.com/rust-lang/crates.io-index"
136  checksum = "fb567269b7ea9ae3c4a5aab4dc95e0b4d8df2a49a25e1670a3bb17bc17504606"
137  dependencies = [
138   "cfg-if",
139   "lazy_static",
140   "libc",
141   "raylib-sys",
142  ]
143  
144  [[package]]
145  name = "raylib-sys"
146  version = "3.7.0"
147  source = "registry+https://github.com/rust-lang/crates.io-index"
148  checksum = "20c97b5e251b73c52183914d4756104cab401050f244c19abe83fa05a4e86840"
149  dependencies = [
150   "cc",
151   "cmake",
152   "fs_extra",
153  ]
154  
155  [[package]]
156  name = "sdl2"
157  version = "0.35.2"
158  source = "registry+https://github.com/rust-lang/crates.io-index"
159  checksum = "f7959277b623f1fb9e04aea73686c3ca52f01b2145f8ea16f4ff30d8b7623b1a"
160  dependencies = [
161   "bitflags",
162   "lazy_static",
163   "libc",
164   "sdl2-sys",
165  ]
166  
167  [[package]]
168  name = "sdl2-sys"
169  version = "0.35.2"
170  source = "registry+https://github.com/rust-lang/crates.io-index"
171  checksum = "e3586be2cf6c0a8099a79a12b4084357aa9b3e0b0d7980e3b67aaf7a9d55f9f0"
172  dependencies = [
173   "cfg-if",
174   "libc",
175   "version-compare",
176  ]
177  
178  [[package]]
179  name = "version-compare"
180  version = "0.1.1"
181  source = "registry+https://github.com/rust-lang/crates.io-index"
182  checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
183  
184  [[package]]
185  name = "wasi"
186  version = "0.11.0+wasi-snapshot-preview1"
187  source = "registry+https://github.com/rust-lang/crates.io-index"
188  checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"