Add env_logger and reexport

This commit is contained in:
Sosthene 2024-11-19 13:07:15 +01:00
parent 06f3485361
commit d10382f121
2 changed files with 2 additions and 0 deletions

View File

@ -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"] }

View File

@ -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;