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:
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"