Update dependencies.

This commit is contained in:
Dan Gohman
2019-10-02 12:32:31 -07:00
parent 239f412616
commit c43803b19c
3 changed files with 6 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ pub fn disassemble(
mem: &[u8],
mut ops: &[(AssemblyOffset, impl Display)],
) -> Result<(), Box<dyn Error>> {
let mut cs = Capstone::new()
let cs = Capstone::new()
.x86()
.mode(arch::x86::ArchMode::Mode64)
.build()?;

View File

@@ -20,6 +20,7 @@ extern crate lazy_static;
#[cfg(test)]
#[macro_use]
extern crate quickcheck;
#[cfg(test)]
extern crate wabt;
// Just so we can implement `Signature` for `cranelift_codegen::ir::Signature`
extern crate cranelift_codegen;