rm unnecessary dependencies

This commit is contained in:
Sosthene00 2024-04-02 14:20:33 +02:00
parent 030cc0231a
commit f0bf17dd6a
3 changed files with 0 additions and 12 deletions

View File

@ -18,17 +18,9 @@ wasm-logger = "0.2.0"
rand = "0.8.5" rand = "0.8.5"
log = "0.4.6" log = "0.4.6"
tsify = { git = "https://github.com/Sosthene00/tsify", branch = "next" } tsify = { git = "https://github.com/Sosthene00/tsify", branch = "next" }
web-sys = { version = "0.3", features = ["console"] }
bs58 = "0.4"
hex = "0.4.3"
sha2 = "0.10.8"
aes-gcm = "0.10.3" aes-gcm = "0.10.3"
aes = "0.8.3" aes = "0.8.3"
base64 = "0.21.7"
image = "0.24.9"
img-parts = "0.3.0"
bytes = "1.5.0" bytes = "1.5.0"
scrypt = "0.11.0"
shamir = { git = "https://github.com/Sosthene00/shamir", branch = "master" } shamir = { git = "https://github.com/Sosthene00/shamir", branch = "master" }
[dev-dependencies] [dev-dependencies]

View File

@ -17,7 +17,6 @@ use wasm_bindgen::prelude::*;
use sp_backend::spclient::SpendKey; use sp_backend::spclient::SpendKey;
use sp_backend::spclient::{derive_keys_from_seed, OutputList, SpClient}; use sp_backend::spclient::{derive_keys_from_seed, OutputList, SpClient};
use web_sys::js_sys::JsString;
use crate::user::{User, UserKeys, CONNECTED_USERS}; use crate::user::{User, UserKeys, CONNECTED_USERS};

View File

@ -30,9 +30,6 @@ use sp_backend::silentpayments::sending::SilentPaymentAddress;
use sp_backend::spclient::SpendKey; use sp_backend::spclient::SpendKey;
use sp_backend::spclient::{OutputList, SpClient}; use sp_backend::spclient::{OutputList, SpClient};
use img_parts::jpeg::Jpeg;
use img_parts::{ImageEXIF, ImageICC};
use crate::aesgcm::Aes256Decryption; use crate::aesgcm::Aes256Decryption;
use crate::aesgcm::HalfKey; use crate::aesgcm::HalfKey;
use crate::aesgcm::{Aes256Encryption, Purpose}; use crate::aesgcm::{Aes256Encryption, Purpose};