diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..19b252a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] + +name = "yaxpeax-lc87" +version = "1.0.0" +authors = [ "iximeow <me@iximeow.net>" ] +license = "0BSD" +repository = "http://git.iximeow.net/yaxpeax-lc87/" +description = "lc87 decoder for the yaxpeax project" +keywords = ["diassembler", "lc87", "sanyo"] +edition = "2018" + +[dependencies] +yaxpeax-arch = { version = "0.2.4", default-features = false, features = [] } + +[[test]] +name = "test" +path = "test/test.rs" |