blob: a093dbb866ea40f7d07a9437a748f048bf05108a (
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
|
[package]
name = "grasp-mirror"
version = "0.1.0"
edition = "2021"
description = "GRASP mirror daemon — mirrors git data and Nostr events across GRASP servers"
license = "MIT"
[dependencies]
nostr-sdk = "0.39"
nostr = "0.39"
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
toml = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
reqwest = { version = "0.12", features = ["json"] }
dotenvy = "0.15"
anyhow = "1"
git2 = "0.20"
hex = "0.4"
clap = { version = "4", features = ["derive", "env"] }
dirs = "6"
|