diff --git a/Cargo.toml b/Cargo.toml index 0521f2e..3fc049f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,5 +17,4 @@ serde_json = { version = "1.0.108", features = ["preserve_order"]} # sp_client = { path = "../sp-client" } sp_client = { git = "https://github.com/Sosthene00/sp-client.git", branch = "master" } tsify = { git = "https://github.com/Sosthene00/tsify", branch = "next" } -uuid = { version = "1.10.0", features = ["v4"] } wasm-bindgen = "0.2.91" diff --git a/src/device.rs b/src/device.rs index 4403170..76c1b01 100644 --- a/src/device.rs +++ b/src/device.rs @@ -1,6 +1,5 @@ use serde::{Deserialize, Serialize}; use tsify::Tsify; -use uuid::Uuid; use wasm_bindgen::prelude::*; use sp_client::{bitcoin::{hashes::Hash, OutPoint, Txid}, spclient::SpWallet}; diff --git a/src/lib.rs b/src/lib.rs index 82316b7..4e56d23 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,6 @@ use std::sync::{Mutex, MutexGuard}; use std::fmt::Debug; pub use sp_client; -pub use uuid; pub use log; pub use aes_gcm;