diff options
author | iximeow <me@iximeow.net> | 2021-07-06 19:03:28 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-07-06 19:03:51 -0700 |
commit | 62ef4122f60825f4868c982c6a45900545c817bf (patch) | |
tree | 3bc993482d4346e4dc4fc6377b978f4ec737f452 | |
parent | 85eda917c444d56424622e2814ae096ce32431e1 (diff) |
update crate to rust 20180.1.0
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | Cargo.toml | 1 | ||||
-rw-r--r-- | src/lib.rs | 9 |
3 files changed, 3 insertions, 9 deletions
@@ -2,6 +2,8 @@ update yaxpeax-arch to 0.2.3, fix some API differences +update crate to rust 2018 + # 0.0.4 first version with changelog, decoder is complete but untested @@ -6,6 +6,7 @@ authors = [ "iximeow <me@iximeow.net>" ] license = "0BSD" repository = "http://git.iximeow.net/yaxpeax-pic18/" description = "pic18 decoder for the yaxpeax project" +edition = "2018" [dependencies] yaxpeax-arch = { version = "0.2.3", default-features = false, features = [] } @@ -1,12 +1,3 @@ -#[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; - use yaxpeax_arch::{Arch, AddressDiff, Decoder, LengthedInstruction, Reader, StandardDecodeError}; pub mod consts; |