2020-06-14 05:57:43 +00:00
|
|
|
[package]
|
|
|
|
authors = ["paoda <musukarekai@gmail.com>"]
|
|
|
|
edition = "2018"
|
2020-07-15 20:00:50 +00:00
|
|
|
name = "chip8"
|
2020-07-13 20:28:26 +00:00
|
|
|
version = "0.1.0"
|
2020-06-14 05:57:43 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-15 20:00:50 +00:00
|
|
|
pixels = "0.0.4"
|
|
|
|
rand = "0.7.3"
|
|
|
|
winit = "0.22.2"
|
2020-06-25 19:22:37 +00:00
|
|
|
winit_input_helper = "0.7.0"
|
2020-07-15 20:00:50 +00:00
|
|
|
rodio = "0.11.0"
|
2020-07-15 21:50:57 +00:00
|
|
|
lazy_static = "1.4.0"
|