upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-11-19 11:55:32 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-11-19 15:43:29 +0000
commitfa065ad128882755f2a988d6203b59a2ab5e38ff (patch)
treee8326de70a6e6ea56b5bf4250e0a00a3cda4afed /Cargo.toml
parent98c6fa4bfa897ff0b8f9c95ea698d4d065b5e9f3 (diff)
add landing page and nostr-relay-builder relay on same port
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml18
1 files changed, 10 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 416f76f..ae84241 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,18 +10,19 @@ repository = "https://gitworkshop.dev/ngit-grasp"
10[dependencies] 10[dependencies]
11# Async runtime 11# Async runtime
12tokio = { version = "1.35", features = ["full"] } 12tokio = { version = "1.35", features = ["full"] }
13tokio-tungstenite = "0.21"
14 13
15# WebSocket 14# HTTP server
16tungstenite = "0.21" 15actix-web = "4.4"
17futures-util = "0.3" 16actix-ws = "0.3"
18 17
19# HTTP server (for future use) 18# Nostr relay
20# actix-web = "4.4" 19nostr-relay-builder = "0.44"
21# actix-cors = "0.7"
22 20
23# Nostr 21# Nostr
24nostr-sdk = "0.43" 22nostr-sdk = "0.44"
23
24# Utilities
25futures-util = "0.3"
25 26
26# Serialization 27# Serialization
27serde = { version = "1.0", features = ["derive"] } 28serde = { version = "1.0", features = ["derive"] }
@@ -37,6 +38,7 @@ dotenvy = "0.15"
37# Error handling 38# Error handling
38anyhow = "1.0" 39anyhow = "1.0"
39thiserror = "1.0" 40thiserror = "1.0"
41tokio-tungstenite = "0.28.0"
40 42
41# Git (for future use) 43# Git (for future use)
42# git-http-backend = "0.3" 44# git-http-backend = "0.3"