add cdtbcd, cbcdtd, and addg6s
[power-instruction-analyzer.git] / Cargo.toml
index 54b4f5cea79505c091aaf1a52ea5d8713abf1aab..80697a01a25f622ddfab331efe9dcb3dd42a5bfd 100644 (file)
@@ -2,10 +2,12 @@
 # See Notices.txt for copyright information
 [package]
 name = "power-instruction-analyzer"
-version = "0.1.0"
+version = "0.2.1"
 authors = ["Jacob Lifshay <programmerjake@gmail.com>"]
 edition = "2018"
 license = "LGPL-2.1-or-later"
+exclude = ["output-for-*.json"]
+description = "Program to analyze the behavior of Power ISA instructions"
 
 [features]
 native_instrs = []
@@ -19,4 +21,15 @@ crate-type = ["rlib", "cdylib"]
 [dependencies]
 serde = { version = "1.0", features = ["derive"] }
 serde_json = "1.0"
-pyo3 = { version = "0.11", optional = true }
\ No newline at end of file
+serde_plain = "0.3"
+pyo3 = { version = "0.11", optional = true }
+
+[dependencies.power-instruction-analyzer-proc-macro]
+path = "power-instruction-analyzer-proc-macro"
+version = "=0.2.1"
+
+[workspace]
+members = [
+    ".",
+    "power-instruction-analyzer-proc-macro",
+]