mirror of https://github.com/vacp2p/zerokit.git
fix(rln): move std::path to cfg_if block (#138)
This commit is contained in:
parent
13a2c61355
commit
1f983bb232
|
@ -12,7 +12,6 @@ use color_eyre::{Report, Result};
|
||||||
use num_bigint::BigUint;
|
use num_bigint::BigUint;
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use std::io::Cursor;
|
use std::io::Cursor;
|
||||||
use std::path::Path;
|
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
|
|
||||||
cfg_if! {
|
cfg_if! {
|
||||||
|
@ -22,6 +21,7 @@ cfg_if! {
|
||||||
use std::sync::Mutex;
|
use std::sync::Mutex;
|
||||||
use wasmer::{Module, Store};
|
use wasmer::{Module, Store};
|
||||||
use include_dir::{include_dir, Dir};
|
use include_dir::{include_dir, Dir};
|
||||||
|
use std::path::Path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue