workspaced
This commit is contained in:
parent
c63ceddac1
commit
ad47852f47
28
Cargo.lock
generated
28
Cargo.lock
generated
|
@ -425,18 +425,24 @@ name = "gb-emu"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"async-ringbuf",
|
||||
"futures",
|
||||
"itertools",
|
||||
"once_cell",
|
||||
"rand",
|
||||
"samplerate",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "gb-emu-bin"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"cpal",
|
||||
"ctrlc",
|
||||
"futures",
|
||||
"gb-emu",
|
||||
"gilrs",
|
||||
"itertools",
|
||||
"minifb",
|
||||
"once_cell",
|
||||
"rand",
|
||||
"ringbuf",
|
||||
"samplerate",
|
||||
"spin_sleep",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1229,16 +1235,6 @@ version = "1.10.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
||||
|
||||
[[package]]
|
||||
name = "spin_sleep"
|
||||
version = "1.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cafa7900db085f4354dbc7025e25d7a839a14360ea13b5fc4fd717f2d3b23134"
|
||||
dependencies = [
|
||||
"once_cell",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "static_assertions"
|
||||
version = "1.1.0"
|
||||
|
|
23
Cargo.toml
23
Cargo.toml
|
@ -1,21 +1,2 @@
|
|||
[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]
|
||||
clap = {version = "4.1.8", features = ["derive"]}
|
||||
spin_sleep = "1.1.1"
|
||||
minifb = "0.24"
|
||||
rand = "0.8.5"
|
||||
gilrs = "0.10.1"
|
||||
samplerate = "0.2.4"
|
||||
cpal = "0.15.0"
|
||||
ringbuf = "0.3.2"
|
||||
async-ringbuf = "0.1.2"
|
||||
futures = "0.3.26"
|
||||
once_cell = "1.17.1"
|
||||
itertools = "0.10.5"
|
||||
ctrlc = "3.2.5"
|
||||
[workspace]
|
||||
members = ["gb-emu-lib", "gb-emu-bin"]
|
15
gb-emu-bin/Cargo.toml
Normal file
15
gb-emu-bin/Cargo.toml
Normal file
|
@ -0,0 +1,15 @@
|
|||
[package]
|
||||
name = "gb-emu-bin"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
gb-emu = { path = "../gb-emu-lib" }
|
||||
clap = {version = "4.1.8", features = ["derive"]}
|
||||
minifb = "0.24"
|
||||
gilrs = "0.10.1"
|
||||
cpal = "0.15.0"
|
||||
futures = "0.3.26"
|
||||
ctrlc = "3.2.5"
|
14
gb-emu-lib/Cargo.toml
Normal file
14
gb-emu-lib/Cargo.toml
Normal file
|
@ -0,0 +1,14 @@
|
|||
[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]
|
||||
rand = "0.8.5"
|
||||
samplerate = "0.2.4"
|
||||
async-ringbuf = "0.1.2"
|
||||
futures = "0.3.26"
|
||||
once_cell = "1.17.1"
|
||||
itertools = "0.10.5"
|
Loading…
Reference in a new issue