From 1186a66e8cc48f4c0c424fdfb63aa4f752db7166 Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 5 Jan 2019 02:00:37 -0800 Subject: initial --- Cargo.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b18575d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,21 @@ +[package] + +name = "x86-rs" +version = "0.0.1" +authors = [ "iximeow " ] +repository = "x86-rs" +description = """ +A rust x86-64 decoder +""" + +[dependencies] +"num-traits" = "0.2" +"termios" = "0.2.2" +"termion" = "1.4.0" +"serde" = "*" +"serde_json" = "*" +"serde_derive" = "*" + +[[test]] +name = "test" +path = "test/test.rs" -- cgit v1.1