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.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..a093dbb
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,24 @@
1[package]
2name = "grasp-mirror"
3version = "0.1.0"
4edition = "2021"
5description = "GRASP mirror daemon — mirrors git data and Nostr events across GRASP servers"
6license = "MIT"
7
8[dependencies]
9nostr-sdk = "0.39"
10nostr = "0.39"
11tokio = { version = "1", features = ["full"] }
12sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
13toml = "0.8"
14serde = { version = "1", features = ["derive"] }
15serde_json = "1"
16tracing = "0.1"
17tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
18reqwest = { version = "0.12", features = ["json"] }
19dotenvy = "0.15"
20anyhow = "1"
21git2 = "0.20"
22hex = "0.4"
23clap = { version = "4", features = ["derive", "env"] }
24dirs = "6"