From 1f983bb23226e90b395ff58214f47ae3dca0d634 Mon Sep 17 00:00:00 2001 From: Aaryamann Challani <43716372+rymnc@users.noreply.github.com> Date: Fri, 24 Mar 2023 09:31:01 +0530 Subject: [PATCH] fix(rln): move std::path to cfg_if block (#138) --- rln/src/circuit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rln/src/circuit.rs b/rln/src/circuit.rs index 944241d..22e7592 100644 --- a/rln/src/circuit.rs +++ b/rln/src/circuit.rs @@ -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; } }