diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 3 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,7 @@ +# 0.1.1 + +fix `Serialize` and `Deserialize` macros not being present when `use-serde` feature is selected + # 0.1.0 update yaxpeax-arch to 0.2.3, fix some API differences @@ -1,7 +1,7 @@ [package] name = "yaxpeax-pic18" -version = "0.1.0" +version = "0.1.1" authors = [ "iximeow <me@iximeow.net>" ] license = "0BSD" repository = "http://git.iximeow.net/yaxpeax-pic18/" @@ -1,5 +1,8 @@ use yaxpeax_arch::{Arch, AddressDiff, Decoder, LengthedInstruction, Reader, StandardDecodeError}; +#[cfg(feature="use-serde")] +#[macro_use] extern crate serde_derive; + pub mod consts; pub mod display; |