From e7c0781db3bcfd79670191c120974251d3daadf7 Mon Sep 17 00:00:00 2001 From: samkim-crypto Date: Thu, 22 Aug 2024 18:47:37 +0900 Subject: [PATCH] [token-client] remove `curve25519-dalek` dependency (#7179) --- Cargo.lock | 1 - token/client/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2adf12a83e4..16fda2face9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7659,7 +7659,6 @@ dependencies = [ "async-trait", "bincode", "bytemuck", - "curve25519-dalek", "futures 0.3.30", "futures-util", "solana-banks-interface", diff --git a/token/client/Cargo.toml b/token/client/Cargo.toml index f34e0c12768..882a9340f00 100644 --- a/token/client/Cargo.toml +++ b/token/client/Cargo.toml @@ -11,7 +11,6 @@ version = "0.11.0" async-trait = "0.1" bincode = "1.3.2" bytemuck = "1.17.0" -curve25519-dalek = "3.2.1" futures = "0.3.30" futures-util = "0.3" solana-banks-interface = "2.0.3"