From 6447f8fbf7090f90ea7fc1e293ef4692b944d48d Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Fri, 17 Oct 2025 16:17:15 -0300 Subject: [PATCH] remove unused dependencies --- common/Cargo.toml | 2 -- key_protocol/Cargo.toml | 1 - storage/Cargo.toml | 1 - wallet/Cargo.toml | 1 - 4 files changed, 5 deletions(-) diff --git a/common/Cargo.toml b/common/Cargo.toml index 668ffbd..999c731 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -9,11 +9,9 @@ thiserror.workspace = true serde_json.workspace = true serde.workspace = true reqwest.workspace = true -k256.workspace = true sha2.workspace = true log.workspace = true -elliptic-curve.workspace = true hex.workspace = true nssa-core = { path = "../nssa/core", features = ["host"] } borsh.workspace = true diff --git a/key_protocol/Cargo.toml b/key_protocol/Cargo.toml index 6addf41..544a2f8 100644 --- a/key_protocol/Cargo.toml +++ b/key_protocol/Cargo.toml @@ -5,7 +5,6 @@ edition = "2024" [dependencies] anyhow.workspace = true -log.workspace = true serde.workspace = true k256.workspace = true sha2.workspace = true diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 1bc9d07..2fd4628 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -4,7 +4,6 @@ version = "0.1.0" edition = "2024" [dependencies] -anyhow.workspace = true thiserror.workspace = true borsh.workspace = true diff --git a/wallet/Cargo.toml b/wallet/Cargo.toml index ebd0dc5..48d79e2 100644 --- a/wallet/Cargo.toml +++ b/wallet/Cargo.toml @@ -14,7 +14,6 @@ tempfile.workspace = true clap.workspace = true nssa-core = { path = "../nssa/core" } base64.workspace = true -k256 = { version = "0.13.3" } bytemuck = "1.23.2" borsh.workspace = true hex.workspace = true