mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-25 19:37:56 +00:00
Fixes necessary for having no_std imports work with edition2018
This commit is contained in:
+4
-4
@@ -1,9 +1,9 @@
|
||||
#[cfg(features = "std")]
|
||||
use std::collections::{HashSet as Set};
|
||||
use crate::std::collections::{HashSet as Set};
|
||||
#[cfg(not(features = "std"))]
|
||||
use std::collections::{BTreeSet as Set};
|
||||
use std::vec::Vec;
|
||||
use std::mem;
|
||||
use crate::std::collections::{BTreeSet as Set};
|
||||
use crate::std::vec::Vec;
|
||||
use crate::std::mem;
|
||||
|
||||
use parity_wasm::elements;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user