rearrange files

This commit is contained in:
vms 2020-04-22 16:22:25 +03:00
parent c1b3ce9708
commit 739d3461aa
2 changed files with 3 additions and 5 deletions

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
#![deny(
nonstandard_style,
unused_imports,
@ -22,6 +22,5 @@
unused_unsafe,
unreachable_patterns
)]
*/
mod vm;
pub mod vm;

View File

@ -19,11 +19,10 @@ use crate::vm::{
service::FluenceService,
};
use failure::_core::marker::PhantomData;
use sha2::{digest::generic_array::GenericArray, digest::FixedOutput, Digest, Sha256};
use wasmer_runtime::{compile, func, imports, Ctx, Func, Instance};
use wasmer_runtime_core::memory::ptr::{Array, WasmPtr};
use wasmer_wasi::{generate_import_object_for_version, WasiVersion};
use wasmer_wasi::generate_import_object_for_version;
pub struct Frank {
instance: &'static Instance,