fix(euclid_wasm): update dependency for wasm in validate.rs (#6262)

This commit is contained in:
Sakil Mostak
2024-10-08 14:57:08 +05:30
committed by GitHub
parent 2ccce01bf4
commit cc7c17f873
4 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,7 @@ license.workspace = true
[dependencies]
error-stack = "0.4.1"
once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive"] }
thiserror = "1.0.58"
time = "0.3.35"

View File

@ -3,8 +3,8 @@ use std::{collections::HashMap, fmt, ops::Deref, str::FromStr};
use common_utils::errors::ValidationError;
use error_stack::report;
use masking::{PeekInterface, Strategy, StrongSecret, WithType};
use once_cell::sync::Lazy;
use regex::Regex;
use router_env::once_cell::sync::Lazy;
#[cfg(not(target_arch = "wasm32"))]
use router_env::{logger, which as router_env_which, Env};
use serde::{Deserialize, Deserializer, Serialize};