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.toml9
1 files changed, 5 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ae84241..c26247c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,9 +11,10 @@ repository = "https://gitworkshop.dev/ngit-grasp"
11# Async runtime 11# Async runtime
12tokio = { version = "1.35", features = ["full"] } 12tokio = { version = "1.35", features = ["full"] }
13 13
14# HTTP server 14# HTTP server (hyper for relay integration)
15actix-web = "4.4" 15hyper = { version = "1.4", features = ["full"] }
16actix-ws = "0.3" 16hyper-util = { version = "0.1", features = ["tokio", "server", "http1", "http2"] }
17http-body-util = "0.1"
17 18
18# Nostr relay 19# Nostr relay
19nostr-relay-builder = "0.44" 20nostr-relay-builder = "0.44"
@@ -23,6 +24,7 @@ nostr-sdk = "0.44"
23 24
24# Utilities 25# Utilities
25futures-util = "0.3" 26futures-util = "0.3"
27base64 = "0.22"
26 28
27# Serialization 29# Serialization
28serde = { version = "1.0", features = ["derive"] } 30serde = { version = "1.0", features = ["derive"] }
@@ -38,7 +40,6 @@ dotenvy = "0.15"
38# Error handling 40# Error handling
39anyhow = "1.0" 41anyhow = "1.0"
40thiserror = "1.0" 42thiserror = "1.0"
41tokio-tungstenite = "0.28.0"
42 43
43# Git (for future use) 44# Git (for future use)
44# git-http-backend = "0.3" 45# git-http-backend = "0.3"