upleb.uk

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

summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: ac3e9164690cc662309a9e6e098745b7884a57f6 (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
[package]
name = "ngit"
version = "0.0.1"
edition = "2021"
description = "a proof of concept cli for a nostr based github alternative"
authors = ["DanConwayDev <DanConwayDev@protonmail.com>"]
readme = "README.md"
homepage = "https://github.com/DanConwayDev/ngit-cli"
repository = "https://github.com/DanConwayDev/ngit-cli"
license = "MIT"
keywords = ["nostr", "git"]
categories = ["command-line-utilities","git"]

[dependencies]
clap = { version = "4.1.6", features = ["derive"] }
nostr = { version = "0.21" }
nostr-sdk = { version = "0.21", features = ["blocking"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.91"
dialoguer = "0.10.4"
indicatif = "0.17.3"
thiserror = "1.0"
confy = "0.5.1"
git2 = "0.17.1"

[patch.crates-io]
nostr = { git = 'https://github.com/DanConwayDev/nostr.git', features = ["blocking"] }