fix(rln): move std::path to cfg_if block (#138)

This commit is contained in:
Aaryamann Challani 2023-03-24 09:31:01 +05:30 committed by GitHub
parent 13a2c61355
commit 1f983bb232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,6 @@ use color_eyre::{Report, Result};
use num_bigint::BigUint;
use serde_json::Value;
use std::io::Cursor;
use std::path::Path;
use std::str::FromStr;
cfg_if! {
@ -22,6 +21,7 @@ cfg_if! {
use std::sync::Mutex;
use wasmer::{Module, Store};
use include_dir::{include_dir, Dir};
use std::path::Path;
}
}