cargo fmt

This commit is contained in:
Nick Lewycky
2020-10-08 21:03:51 -07:00
parent 3b3882f9f5
commit a01d3d3d70
2 changed files with 2 additions and 5 deletions

View File

@@ -5,10 +5,7 @@
// //
// So far, this is an implementation of the SysV AMD64 ABI. // So far, this is an implementation of the SysV AMD64 ABI.
#![deny( #![deny(dead_code, missing_docs)]
dead_code,
missing_docs,
)]
use crate::translator::intrinsics::{type_to_llvm, Intrinsics}; use crate::translator::intrinsics::{type_to_llvm, Intrinsics};
use inkwell::{ use inkwell::{

View File

@@ -5,9 +5,9 @@ use std::collections::HashMap;
use std::path::Path; use std::path::Path;
use std::sync::Arc; use std::sync::Arc;
use std::sync::Mutex; use std::sync::Mutex;
use wasmer_compiler::{CompileError, Target};
#[cfg(feature = "compiler")] #[cfg(feature = "compiler")]
use wasmer_compiler::{Compiler, Triple}; use wasmer_compiler::{Compiler, Triple};
use wasmer_compiler::{CompileError, Target};
use wasmer_engine::{Artifact, DeserializeError, Engine, EngineId, Tunables}; use wasmer_engine::{Artifact, DeserializeError, Engine, EngineId, Tunables};
#[cfg(feature = "compiler")] #[cfg(feature = "compiler")]
use wasmer_types::Features; use wasmer_types::Features;