mirror of
https://github.com/transistorfet/moa.git
synced 2025-04-15 23:37:06 +00:00
Modified to use submodule for emulator-hal
This commit is contained in:
parent
e0330d41a5
commit
af1c660dc0
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -1,3 +1,6 @@
|
||||
[submodule "emulator/libraries/femtos"]
|
||||
path = emulator/libraries/femtos
|
||||
url = git@github.com:transistorfet/femtos.git
|
||||
[submodule "emulator/libraries/emulator-hal"]
|
||||
path = emulator/libraries/emulator-hal
|
||||
url = git@github.com:transistorfet/emulator-hal.git
|
||||
|
19
Cargo.lock
generated
19
Cargo.lock
generated
@ -420,6 +420,10 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
|
||||
[[package]]
|
||||
name = "emulator-hal"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"femtos",
|
||||
"fugit",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "env_logger"
|
||||
@ -480,6 +484,21 @@ dependencies = [
|
||||
"miniz_oxide",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fugit"
|
||||
version = "0.3.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "17186ad64927d5ac8f02c1e77ccefa08ccd9eaa314d5a4772278aa204a22f7e7"
|
||||
dependencies = [
|
||||
"gcd",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "gcd"
|
||||
version = "2.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1d758ba1b47b00caf47f24925c0074ecb20d6dfcffe7f6d53395c0465674841a"
|
||||
|
||||
[[package]]
|
||||
name = "glob"
|
||||
version = "0.3.1"
|
||||
|
@ -8,4 +8,4 @@ log = "0.4"
|
||||
femtos = "0.1"
|
||||
thiserror = "1.0"
|
||||
moa-host = { path = "../libraries/host" }
|
||||
emulator-hal = { path = "/media/work/projects/emulator-hal/emulator-hal" }
|
||||
emulator-hal = { path = "../libraries/emulator-hal/emulator-hal" }
|
||||
|
@ -9,4 +9,4 @@ thiserror = "1.0"
|
||||
femtos = "0.1"
|
||||
moa-core = { path = "../../core" }
|
||||
moa-parsing = { path = "../../libraries/parsing" }
|
||||
emulator-hal = { path = "/media/work/projects/emulator-hal/emulator-hal" }
|
||||
emulator-hal = { path = "../../libraries/emulator-hal/emulator-hal" }
|
||||
|
@ -9,4 +9,4 @@ thiserror = "1.0"
|
||||
femtos = "0.1"
|
||||
moa-core = { path = "../../core" }
|
||||
moa-signals = { path = "../../libraries/signals" }
|
||||
emulator-hal = { path = "/media/work/projects/emulator-hal/emulator-hal" }
|
||||
emulator-hal = { path = "../../libraries/emulator-hal/emulator-hal" }
|
||||
|
1
emulator/libraries/emulator-hal
Submodule
1
emulator/libraries/emulator-hal
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 84e665ce5749187d0c323f77971c288d0964fa96
|
Loading…
x
Reference in New Issue
Block a user