rename ./lib to ./disasm
This commit is contained in:
parent
169b206a05
commit
ea6545f7e3
|
@ -1,6 +1,6 @@
|
|||
[workspace]
|
||||
members = [
|
||||
"lib",
|
||||
"disasm",
|
||||
"macros",
|
||||
"fuzz",
|
||||
"rand",
|
||||
|
|
|
@ -23,7 +23,7 @@ def dump_mask(line):
|
|||
|
||||
def main():
|
||||
with open("patterns.txt", "r") as patterns, open(
|
||||
"../lib/src/isa.rs", "w"
|
||||
"../disasm/src/isa.rs", "w"
|
||||
) as isa_file:
|
||||
sys.stdout = isa_file
|
||||
print("use ppc750cl_macros::isa;")
|
||||
|
|
|
@ -9,4 +9,4 @@ repository = "https://github.com/terorie/ppc750cl"
|
|||
|
||||
[dependencies]
|
||||
num_cpus = "1.13"
|
||||
ppc750cl = { path = "../lib", version = "0.1.0" }
|
||||
ppc750cl = { path = "../disasm", version = "0.1.0" }
|
||||
|
|
|
@ -8,6 +8,6 @@ description = "Generate random PowerPC 750CL instructions"
|
|||
repository = "https://github.com/terorie/ppc750cl"
|
||||
|
||||
[dependencies]
|
||||
ppc750cl = { path = "../lib", version = "0.1.0" }
|
||||
ppc750cl = { path = "../disasm", version = "0.1.0" }
|
||||
rand_core = "0.5"
|
||||
sfmt = "0.6"
|
||||
|
|
Loading…
Reference in New Issue