diff options
| author | iximeow <me@iximeow.net> | 2021-08-22 15:04:33 -0700 | 
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2021-08-22 15:04:33 -0700 | 
| commit | d4620aedb1e085462f82d2a643a20c7de743ea2b (patch) | |
| tree | 52a7200f6f6c797d9fa2f2eeba2ebf37b4c7eb27 /src/protected_mode | |
| parent | 188cf391845a7d86466cd2ad35459b6bf825bb1e (diff) | |
bump to yaxpeax-arch 0.2.7 and proper field description support1.1.0
Diffstat (limited to 'src/protected_mode')
| -rw-r--r-- | src/protected_mode/mod.rs | 4 | ||||
| -rw-r--r-- | src/protected_mode/vex.rs | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/src/protected_mode/mod.rs b/src/protected_mode/mod.rs index 10a9248..5ad4c44 100644 --- a/src/protected_mode/mod.rs +++ b/src/protected_mode/mod.rs @@ -13,7 +13,7 @@ use core::cmp::PartialEq;  use core::hint::unreachable_unchecked;  use yaxpeax_arch::{AddressDiff, Decoder, Reader, LengthedInstruction}; -use yaxpeax_arch::{AnnotatingDecoder, DescriptionSink, NullSink}; +use yaxpeax_arch::annotation::{AnnotatingDecoder, DescriptionSink, NullSink};  use yaxpeax_arch::{DecodeError as ArchDecodeError};  use core::fmt; @@ -7488,7 +7488,7 @@ impl FieldDescription {      }  } -impl yaxpeax_arch::FieldDescription for FieldDescription { +impl yaxpeax_arch::annotation::FieldDescription for FieldDescription {      fn id(&self) -> u32 {          self.id      } diff --git a/src/protected_mode/vex.rs b/src/protected_mode/vex.rs index 2c73d4b..556a300 100644 --- a/src/protected_mode/vex.rs +++ b/src/protected_mode/vex.rs @@ -1,5 +1,5 @@  use yaxpeax_arch::Reader; -use yaxpeax_arch::DescriptionSink; +use yaxpeax_arch::annotation::DescriptionSink;  use crate::protected_mode::Arch;  use crate::protected_mode::OperandSpec;  | 
