diff --git a/Cargo.toml b/Cargo.toml index cfb9348..834b857 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ crate-type = ["cdylib", "rlib"] aes-gcm = "0.10.3" anyhow = "1.0" js-sys = "0.3.69" +env_logger = "0.9" log = "0.4.6" rand = "0.8.5" serde = { version = "1.0.193", features = ["derive"] } diff --git a/src/lib.rs b/src/lib.rs index 1edf806..9e0fb78 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,6 +2,7 @@ use std::fmt::Debug; use std::sync::{Mutex, MutexGuard}; pub use aes_gcm; +pub use env_logger; pub use log; pub use sp_client;