From dab9281d5a97b7b8d67eaa0f8b97b96f07de2a4e Mon Sep 17 00:00:00 2001 From: tsk Date: Wed, 8 Oct 2025 16:23:42 +0200 Subject: [PATCH] chore: nostr-sdk as workspace dep (#1167) --- Cargo.toml | 5 +++++ crates/cdk-cli/Cargo.toml | 6 +----- crates/cdk/Cargo.toml | 6 +----- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d325d851..24a04f55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -111,6 +111,11 @@ strum = "0.27.1" strum_macros = "0.27.1" rustls = { version = "0.23.27", default-features = false, features = ["ring"] } prometheus = { version = "0.13.4", features = ["process"], default-features = false } +nostr-sdk = { version = "0.43.0", default-features = false, features = [ + "nip04", + "nip44", + "nip59" +]} diff --git a/crates/cdk-cli/Cargo.toml b/crates/cdk-cli/Cargo.toml index 6597d31a..e789e05d 100644 --- a/crates/cdk-cli/Cargo.toml +++ b/crates/cdk-cli/Cargo.toml @@ -31,11 +31,7 @@ tokio.workspace = true tracing.workspace = true tracing-subscriber.workspace = true home.workspace = true -nostr-sdk = { version = "0.41.0", default-features = false, features = [ - "nip04", - "nip44", - "nip59" -]} +nostr-sdk = { workspace = true } reqwest.workspace = true url.workspace = true serde_with.workspace = true diff --git a/crates/cdk/Cargo.toml b/crates/cdk/Cargo.toml index c80ab32f..3d7ebf74 100644 --- a/crates/cdk/Cargo.toml +++ b/crates/cdk/Cargo.toml @@ -57,11 +57,7 @@ url.workspace = true utoipa = { workspace = true, optional = true } uuid.workspace = true jsonwebtoken = { workspace = true, optional = true } -nostr-sdk = { optional = true, version = "0.43.0", default-features = false, features = [ - "nip04", - "nip44", - "nip59" -]} +nostr-sdk = { workspace = true, optional = true } cdk-prometheus = {workspace = true, optional = true} web-time.workspace = true zeroize = "1"