Rm uuid dependency

This commit is contained in:
Sosthene 2024-09-23 16:14:58 +02:00
parent f3aa1bc2d0
commit 959f8a3058
3 changed files with 0 additions and 3 deletions

View File

@ -17,5 +17,4 @@ serde_json = { version = "1.0.108", features = ["preserve_order"]}
# sp_client = { path = "../sp-client" } # sp_client = { path = "../sp-client" }
sp_client = { git = "https://github.com/Sosthene00/sp-client.git", branch = "master" } sp_client = { git = "https://github.com/Sosthene00/sp-client.git", branch = "master" }
tsify = { git = "https://github.com/Sosthene00/tsify", branch = "next" } tsify = { git = "https://github.com/Sosthene00/tsify", branch = "next" }
uuid = { version = "1.10.0", features = ["v4"] }
wasm-bindgen = "0.2.91" wasm-bindgen = "0.2.91"

View File

@ -1,6 +1,5 @@
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use tsify::Tsify; use tsify::Tsify;
use uuid::Uuid;
use wasm_bindgen::prelude::*; use wasm_bindgen::prelude::*;
use sp_client::{bitcoin::{hashes::Hash, OutPoint, Txid}, spclient::SpWallet}; use sp_client::{bitcoin::{hashes::Hash, OutPoint, Txid}, spclient::SpWallet};

View File

@ -2,7 +2,6 @@ use std::sync::{Mutex, MutexGuard};
use std::fmt::Debug; use std::fmt::Debug;
pub use sp_client; pub use sp_client;
pub use uuid;
pub use log; pub use log;
pub use aes_gcm; pub use aes_gcm;