This commit is contained in:
Sergio Chouhy 2025-10-02 09:17:19 -03:00
parent aa8b138945
commit ddc127f591
6 changed files with 3 additions and 11 deletions

View File

@ -18,9 +18,5 @@ elliptic-curve.workspace = true
hex.workspace = true
nssa-core = { path = "../nssa/core", features = ["host"] }
[dependencies.secp256k1-zkp]
workspace = true
features = ["std", "rand-std", "rand", "serde", "global-context"]
[dependencies.nssa]
path = "../nssa"

View File

@ -8,7 +8,6 @@ anyhow.workspace = true
env_logger.workspace = true
log.workspace = true
actix.workspace = true
bytemuck = "1.23.2"
actix-web.workspace = true
tokio.workspace = true

View File

@ -11,10 +11,8 @@ serde.workspace = true
k256.workspace = true
sha2.workspace = true
rand.workspace = true
elliptic-curve.workspace = true
hex.workspace = true
aes-gcm.workspace = true
lazy_static.workspace = true
bip39.workspace = true
hmac-sha512.workspace = true
nssa-core = { path = "../nssa/core", features = ["host"] }

View File

@ -14,7 +14,6 @@ secp256k1 = "0.31.1"
rand = "0.8"
borsh = "1.5.7"
hex = "0.4.3"
k256 = "0.13.3"
[dev-dependencies]
test-program-methods = { path = "test_program_methods" }

View File

@ -1,7 +1,8 @@
use std::{fmt::Display, str::FromStr};
use serde::{Deserialize, Serialize};
#[cfg(feature = "host")]
use std::{fmt::Display, str::FromStr};
#[derive(Serialize, Deserialize, Clone, PartialEq, Eq)]
#[cfg_attr(
any(feature = "host", test),

View File

@ -12,7 +12,6 @@ actix-cors.workspace = true
futures.workspace = true
hex.workspace = true
tempfile.workspace = true
nssa-core = { path = "../nssa/core", features = ["host"] }
base64.workspace = true
actix-web.workspace = true