From 0b9ee403580b758c9bc28b37104f5ce48321c380 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Fri, 22 Nov 2024 10:37:31 +0100 Subject: [PATCH] Remove unused cargo deps --- Cargo.lock | 3 --- crates/bitwarden-ssh/Cargo.toml | 10 +--------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b1c5277..cd0acd86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -584,12 +584,9 @@ dependencies = [ "js-sys", "rand", "rand_chacha", - "ssh-encoding", "ssh-key", "thiserror", - "tsify-next", "uniffi", - "uuid", "wasm-bindgen", ] diff --git a/crates/bitwarden-ssh/Cargo.toml b/crates/bitwarden-ssh/Cargo.toml index ad1b6fdd..332ebed8 100644 --- a/crates/bitwarden-ssh/Cargo.toml +++ b/crates/bitwarden-ssh/Cargo.toml @@ -15,19 +15,13 @@ keywords.workspace = true [features] uniffi = ["dep:uniffi", "bitwarden-vault/uniffi"] -wasm = [ - "bitwarden-error/wasm", - "dep:wasm-bindgen", - "dep:js-sys", - "dep:tsify-next", -] # WASM support +wasm = ["bitwarden-error/wasm", "dep:wasm-bindgen", "dep:js-sys"] # WASM support [dependencies] bitwarden-error = { workspace = true } bitwarden-vault = { workspace = true } rand = "0.8.5" rand_chacha = "0.3.1" -ssh-encoding = "0.2.0" ssh-key = { version = "0.6.7", features = [ "ed25519", "encryption", @@ -36,9 +30,7 @@ ssh-key = { version = "0.6.7", features = [ ] } thiserror = { workspace = true } uniffi = { workspace = true, optional = true } -uuid = { workspace = true } wasm-bindgen = { workspace = true, optional = true } -tsify-next = { workspace = true, optional = true } js-sys = { workspace = true, optional = true } [lints]