add info to Cargo.tomls

This commit is contained in:
Richard Patel 2021-08-14 10:30:10 +02:00
parent 18e0d430df
commit fca4e052a6
4 changed files with 17 additions and 3 deletions

View File

@ -3,7 +3,10 @@ name = "ppc750cl-fuzz"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2018"
authors = ["Richard Patel <me@terorie.dev>"] authors = ["Richard Patel <me@terorie.dev>"]
license = "GPL-3.0-or-later"
description = "Complete fuzzer for ppc750cl"
repository = "https://github.com/terorie/ppc750cl"
[dependencies] [dependencies]
num_cpus = "1.13" num_cpus = "1.13"
ppc750cl = { path = "../lib" } ppc750cl = { path = "../lib", version = "0.1.0" }

View File

@ -3,7 +3,11 @@ name = "ppc750cl"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2018"
authors = ["Richard Patel <me@terorie.dev>"] 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] [dependencies]
num-traits = "0.2.14" num-traits = "0.2.14"
ppc750cl-macros = { path = "../macros" } ppc750cl-macros = { path = "../macros", version = "0.1.0" }

View File

@ -3,6 +3,9 @@ name = "ppc750cl-macros"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2018"
authors = ["Richard Patel <me@terorie.dev>"] authors = ["Richard Patel <me@terorie.dev>"]
license = "GPL-3.0-or-later"
description = "Procedural macros for powerpc750cl"
repository = "https://github.com/terorie/ppc750cl"
[lib] [lib]
proc-macro = true proc-macro = true

View File

@ -2,8 +2,12 @@
name = "ppc750cl-rand" name = "ppc750cl-rand"
version = "0.1.0" version = "0.1.0"
edition = "2018" 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] [dependencies]
ppc750cl = { path = "../lib" } ppc750cl = { path = "../lib", version = "0.1.0" }
rand_core = "0.5" rand_core = "0.5"
sfmt = "0.6" sfmt = "0.6"