add info to Cargo.tomls
This commit is contained in:
parent
18e0d430df
commit
fca4e052a6
|
@ -3,7 +3,10 @@ name = "ppc750cl-fuzz"
|
|||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
description = "Complete fuzzer for ppc750cl"
|
||||
repository = "https://github.com/terorie/ppc750cl"
|
||||
|
||||
[dependencies]
|
||||
num_cpus = "1.13"
|
||||
ppc750cl = { path = "../lib" }
|
||||
ppc750cl = { path = "../lib", version = "0.1.0" }
|
||||
|
|
|
@ -3,7 +3,11 @@ name = "ppc750cl"
|
|||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
description = "Disassembler for PowerPC 750CL"
|
||||
keywords = ["powerpc", "wii", "gamecube"]
|
||||
repository = "https://github.com/terorie/ppc750cl"
|
||||
|
||||
[dependencies]
|
||||
num-traits = "0.2.14"
|
||||
ppc750cl-macros = { path = "../macros" }
|
||||
ppc750cl-macros = { path = "../macros", version = "0.1.0" }
|
||||
|
|
|
@ -3,6 +3,9 @@ name = "ppc750cl-macros"
|
|||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
description = "Procedural macros for powerpc750cl"
|
||||
repository = "https://github.com/terorie/ppc750cl"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
|
@ -2,8 +2,12 @@
|
|||
name = "ppc750cl-rand"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Richard Patel <me@terorie.dev>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
description = "Generate random PowerPC 750CL instructions"
|
||||
repository = "https://github.com/terorie/ppc750cl"
|
||||
|
||||
[dependencies]
|
||||
ppc750cl = { path = "../lib" }
|
||||
ppc750cl = { path = "../lib", version = "0.1.0" }
|
||||
rand_core = "0.5"
|
||||
sfmt = "0.6"
|
||||
|
|
Loading…
Reference in New Issue