mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-05-23 20:51:33 +00:00
Add explicit ToOwned imports.
This commit is contained in:
parent
eec09f24f3
commit
c4e7918a96
@ -1,4 +1,5 @@
|
||||
use std::string::String;
|
||||
use std::borrow::ToOwned;
|
||||
use super::invoke::{Invoke, Identity};
|
||||
use elements;
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
use std::string::String;
|
||||
use super::invoke::{Invoke, Identity};
|
||||
use super::invoke::{Identity, Invoke};
|
||||
use elements;
|
||||
use std::borrow::ToOwned;
|
||||
use std::string::String;
|
||||
|
||||
/// Import builder
|
||||
pub struct ImportBuilder<F=Identity> {
|
||||
|
@ -1,5 +1,6 @@
|
||||
use io;
|
||||
use std::vec::Vec;
|
||||
use std::borrow::ToOwned;
|
||||
use byteorder::{LittleEndian, ByteOrder};
|
||||
|
||||
use super::{Deserialize, Serialize, Error, Uint32, External};
|
||||
|
@ -1,6 +1,7 @@
|
||||
use io;
|
||||
use std::vec::Vec;
|
||||
use std::string::String;
|
||||
use std::borrow::ToOwned;
|
||||
use super::{
|
||||
Serialize,
|
||||
Deserialize,
|
||||
|
@ -36,4 +36,5 @@ mod std {
|
||||
pub use alloc::vec;
|
||||
pub use alloc::string;
|
||||
pub use alloc::boxed;
|
||||
pub use alloc::borrow;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user