Fixes necessary for having no_std imports work with edition2018

This commit is contained in:
Alexander Theißen
2020-10-22 12:26:24 +02:00
parent a2653cff5a
commit aebfc0fbd7
15 changed files with 54 additions and 42 deletions
+2 -2
View File
@@ -49,8 +49,8 @@
//! between the frames.
//! - upon entry into the function entire stack frame is allocated.
use std::string::String;
use std::vec::Vec;
use crate::std::string::String;
use crate::std::vec::Vec;
use parity_wasm::elements::{self, Type};
use parity_wasm::builder;