mirror of
https://github.com/transistorfet/moa.git
synced 2025-04-09 16:38:30 +00:00
Modified to use crates.io version of femtos
This commit is contained in:
parent
2a0918d8bd
commit
671517aab7
17
Cargo.lock
generated
17
Cargo.lock
generated
@ -463,6 +463,8 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "femtos"
|
||||
version = "0.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b90ac969e2dfcc103ec34948f65290b7616edc460922bd6d33ad75f525964f7d"
|
||||
|
||||
[[package]]
|
||||
name = "flate2"
|
||||
@ -575,6 +577,12 @@ version = "1.0.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
||||
|
||||
[[package]]
|
||||
name = "iz80"
|
||||
version = "0.4.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "76e13cd358184c4b647f19a858246b82e3327ed29c2893d232f01ed016ac5d3c"
|
||||
|
||||
[[package]]
|
||||
name = "jni"
|
||||
version = "0.19.0"
|
||||
@ -724,6 +732,15 @@ dependencies = [
|
||||
"adler",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "moa-iz80"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"femtos",
|
||||
"iz80",
|
||||
"moa_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "moa_audio"
|
||||
version = "0.1.0"
|
||||
|
@ -4,6 +4,7 @@ members = [
|
||||
"emulator/frontends/common",
|
||||
"emulator/frontends/console",
|
||||
"emulator/frontends/minifb",
|
||||
"emulator/cpus/moa-iz80",
|
||||
"tests/harte_tests",
|
||||
"tests/rad_tests"
|
||||
]
|
||||
|
@ -5,5 +5,5 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
|
||||
|
@ -5,6 +5,6 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
moa_parsing = { path = "../../libraries/parsing" }
|
||||
|
@ -5,5 +5,5 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
|
@ -9,7 +9,7 @@ audio = ["cpal"]
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
nix = { version = "0.25", optional = true }
|
||||
|
||||
|
@ -8,7 +8,7 @@ default-run = "moa-computie"
|
||||
log = "0.4"
|
||||
clap = "^4"
|
||||
simple_logger = "^2"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
|
||||
moa_core = { path = "../../core" }
|
||||
moa_common = { path = "../common", features = ["tty"] }
|
||||
|
@ -9,7 +9,7 @@ log = "0.4"
|
||||
minifb = "^0.19"
|
||||
clap = "^4"
|
||||
simple_logger = "^2"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
|
||||
moa_core = { path = "../../core" }
|
||||
moa_common = { path = "../common", features = ["audio"] }
|
||||
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||
log = "0.4"
|
||||
pixels = "0.12"
|
||||
winit = "0.28"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
|
||||
moa_core = { path = "../../core" }
|
||||
moa_common = { path = "../common", features = ["audio"] }
|
||||
|
@ -5,5 +5,5 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
|
@ -5,5 +5,5 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
|
@ -5,5 +5,5 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "^0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
moa_audio = { path = "../../libraries/audio" }
|
||||
lazy_static = "1.4.0"
|
||||
|
@ -5,5 +5,5 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
moa_m68k = { path = "../../cpus/m68k" }
|
||||
moa_peripherals_generic = { path = "../../peripherals/generic" }
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
moa_peripherals_yamaha = { path = "../../peripherals/yamaha" }
|
||||
moa_m68k = { path = "../../cpus/m68k" }
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
moa_m68k = { path = "../../cpus/m68k" }
|
||||
moa_peripherals_mos = { path = "../../peripherals/mos" }
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
femtos = { path = "../../libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../core" }
|
||||
moa_z80 = { path = "../../cpus/z80" }
|
||||
|
||||
|
@ -4,7 +4,7 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
femtos = { path = "../../emulator/libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
|
||||
moa_core = { path = "../../emulator/core" }
|
||||
moa_m68k = { path = "../../emulator/cpus/m68k" }
|
||||
|
@ -4,7 +4,7 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
femtos = { path = "../../emulator/libraries/femtos" }
|
||||
femtos = "0.1"
|
||||
moa_core = { path = "../../emulator/core" }
|
||||
moa_z80 = { path = "../../emulator/cpus/z80" }
|
||||
serde = "1.0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user