diff options
author | iximeow <me@iximeow.net> | 2019-01-14 01:53:54 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-01-12 16:10:13 -0800 |
commit | 1148826e2bd5f9733bd638d96d4eeadd22958296 (patch) | |
tree | 9fc6a26014cd4a746edbd9d309924c9ef48f0c6c /test | |
parent | 4f9b07b86c8706cc98d036d8e20966ca630bf278 (diff) |
adjust namespace layout
Diffstat (limited to 'test')
-rw-r--r-- | test/test.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.rs b/test/test.rs index 956faf1..8a0b6cb 100644 --- a/test/test.rs +++ b/test/test.rs @@ -1,6 +1,6 @@ -extern crate x86_rs; +extern crate yaxpeax_x86; -use x86_rs::{Instruction, Opcode, decode_one}; +use yaxpeax_x86::{Instruction, Opcode, decode_one}; fn decode(bytes: &[u8]) -> Option<Instruction> { let mut instr = Instruction::invalid(); |