aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs14
2 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d98a94e..dcee616 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -39,3 +39,5 @@ default = []
# This enables some capstone benchmarks over the same
# instruction bytes used to bench this code.
capstone_bench = []
+
+use-serde = []
diff --git a/src/lib.rs b/src/lib.rs
index d0dbba3..8057114 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,10 @@
+#[cfg(feature="use-serde")]
+#[macro_use] extern crate serde_derive;
+#[cfg(feature="use-serde")]
+extern crate serde;
+#[cfg(feature="use-serde")]
+use serde::{Serialize, Deserialize};
+
extern crate yaxpeax_arch;
extern crate termion;
@@ -333,9 +340,16 @@ pub struct Instruction {
pub length: u8
}
+#[cfg(feature="use-serde")]
+#[derive(Debug, Serialize, Deserialize)]
+#[allow(non_camel_case_types)]
+pub struct x86_64;
+
+#[cfg(not(feature="use-serde"))]
#[derive(Debug)]
#[allow(non_camel_case_types)]
pub struct x86_64;
+
impl Arch for x86_64 {
type Address = u64;
type Instruction = Instruction;