upleb.uk

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

summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: e68a73c78273be58010ea66df6cd913af9cb4a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "ngit-grasp"
version = "0.1.0"
edition = "2021"
authors = ["ngit-grasp contributors"]
license = "MIT"
description = "A GRASP (Git Relays Authorized via Signed-Nostr Proofs) implementation in Rust"
repository = "https://gitworkshop.dev/ngit-grasp"

[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }

# HTTP server (hyper for relay integration)
hyper = { version = "1.4", features = ["full"] }
hyper-util = { version = "0.1", features = ["tokio", "server", "http1", "http2"] }
http-body-util = "0.1"

# Nostr relay
nostr-relay-builder = { git = "https://github.com/rust-nostr/nostr", rev = "4767ad13" }

# Nostr
nostr-sdk = { git = "https://github.com/rust-nostr/nostr", rev = "4767ad13" }
nostr-lmdb = { git = "https://github.com/rust-nostr/nostr", rev = "4767ad13" }

# Utilities
futures-util = "0.3"
base64 = "0.22"
flate2 = "1.0"

# Metrics
prometheus = "0.13"
dashmap = "5"
lazy_static = "1.4"

# Data structures
indexmap = "2"

# Random (for startup jitter)
rand = "0.8"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

# Configuration
dotenvy = "0.15"
clap = { version = "4.5", features = ["derive", "env"] }

# Error handling
anyhow = "1.0"

# Async traits
async-trait = "0.1"

# Git (for future use)
# git-http-backend = "0.3"

[dev-dependencies]
# Testing
grasp-audit = { path = "grasp-audit" }
tempfile = "3"
reqwest = "0.12"

[lib]
name = "ngit_grasp"
path = "src/lib.rs"

[[bin]]
name = "ngit-grasp"
path = "src/main.rs"

[workspace]
members = [".", "grasp-audit"]