From 97447561496921f2a086ebeb993464012a560570 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 17 Jul 2021 21:33:58 -0700 Subject: implement an lc87 decoder --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 " ] +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" -- cgit v1.1