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.toml28
1 files changed, 28 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..ac3e916
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,28 @@
1[package]
2name = "ngit"
3version = "0.0.1"
4edition = "2021"
5description = "a proof of concept cli for a nostr based github alternative"
6authors = ["DanConwayDev <DanConwayDev@protonmail.com>"]
7readme = "README.md"
8homepage = "https://github.com/DanConwayDev/ngit-cli"
9repository = "https://github.com/DanConwayDev/ngit-cli"
10license = "MIT"
11keywords = ["nostr", "git"]
12categories = ["command-line-utilities","git"]
13
14[dependencies]
15clap = { version = "4.1.6", features = ["derive"] }
16nostr = { version = "0.21" }
17nostr-sdk = { version = "0.21", features = ["blocking"] }
18serde = { version = "1.0.147", features = ["derive"] }
19serde_json = "1.0.91"
20dialoguer = "0.10.4"
21indicatif = "0.17.3"
22thiserror = "1.0"
23confy = "0.5.1"
24git2 = "0.17.1"
25
26[patch.crates-io]
27nostr = { git = 'https://github.com/DanConwayDev/nostr.git', features = ["blocking"] }
28