2023-01-15 19:53:15 +11:00
|
|
|
[package]
|
|
|
|
name = "gb-emu"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-02 16:52:33 +11:00
|
|
|
clap = {version = "4.1.1", features = ["derive"]}
|
2023-02-03 09:15:30 +11:00
|
|
|
spin_sleep = "1.1.1"
|
2023-02-08 21:06:26 +11:00
|
|
|
minifb = "0.23"
|
2023-02-13 09:56:41 +11:00
|
|
|
rand = "0.8.5"
|
|
|
|
gilrs = "0.10.1"
|
2023-02-15 15:10:22 +11:00
|
|
|
samplerate = "0.2.4"
|
2023-02-15 16:11:32 +11:00
|
|
|
cpal = "0.15.0"
|
2023-02-17 11:01:38 +11:00
|
|
|
ringbuf = "0.3.2"
|
|
|
|
async-ringbuf = "0.1.2"
|
|
|
|
futures = "0.3.26"
|
2023-02-19 21:05:02 +11:00
|
|
|
once_cell = "1.17.1"
|
2023-02-20 14:26:30 +11:00
|
|
|
itertools = "0.10.5"
|