Prechádzať zdrojové kódy

chore: nostr-sdk as workspace dep (#1167)

tsk 4 týždňov pred
rodič
commit
dab9281d5a
3 zmenil súbory, kde vykonal 7 pridanie a 10 odobranie
  1. 5 0
      Cargo.toml
  2. 1 5
      crates/cdk-cli/Cargo.toml
  3. 1 5
      crates/cdk/Cargo.toml

+ 5 - 0
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"
+]}
 
 
 

+ 1 - 5
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

+ 1 - 5
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"