From e70be7245eac6acd6dde565c69b55bf8f55653e9 Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 31 Dec 2019 18:02:43 -0800 Subject: add the mips decoder --- Cargo.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e01e5ff --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] + +name = "yaxpeax-mips" +version = "0.0.1" +authors = [ "iximeow " ] +license = "0BSD" +repository = "" +description = """ +A rust mips decoder +""" + +[dependencies] +yaxpeax-arch = { path = "../../yaxpeax-arch" } +"termion" = "1.4.0" +"serde" = "*" +"serde_derive" = "*" +"num_enum" = "*" + +[[test]] +name = "test" +path = "test/test.rs" + +[features] +default = [] + +use-serde = [] -- cgit v1.1