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, 16 insertions, 12 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ac3e916..e745441 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
2name = "ngit" 2name = "ngit"
3version = "0.0.1" 3version = "0.0.1"
4edition = "2021" 4edition = "2021"
5description = "a proof of concept cli for a nostr based github alternative" 5description = "cli for code collaboration over nostr"
6authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] 6authors = ["DanConwayDev <DanConwayDev@protonmail.com>"]
7readme = "README.md" 7readme = "README.md"
8homepage = "https://github.com/DanConwayDev/ngit-cli" 8homepage = "https://github.com/DanConwayDev/ngit-cli"
@@ -12,17 +12,21 @@ keywords = ["nostr", "git"]
12categories = ["command-line-utilities","git"] 12categories = ["command-line-utilities","git"]
13 13
14[dependencies] 14[dependencies]
15clap = { version = "4.1.6", features = ["derive"] } 15anyhow = "1.0.75"
16nostr = { version = "0.21" } 16clap = { version = "4.3.19", features = ["derive"] }
17nostr-sdk = { version = "0.21", features = ["blocking"] }
18serde = { version = "1.0.147", features = ["derive"] }
19serde_json = "1.0.91"
20dialoguer = "0.10.4" 17dialoguer = "0.10.4"
21indicatif = "0.17.3" 18directories = "5.0.1"
22thiserror = "1.0" 19serde = { version = "1.0.181", features = ["derive"] }
23confy = "0.5.1" 20serde_json = "1.0.105"
24git2 = "0.17.1"
25 21
26[patch.crates-io] 22[dev-dependencies]
27nostr = { git = 'https://github.com/DanConwayDev/nostr.git', features = ["blocking"] } 23assert_cmd = "2.0.12"
24duplicate = "1.0.0"
25mockall = "0.11.4"
26serial_test = "2.0.0"
27test_utils = { path = "test_utils" }
28 28
29[workspace]
30members = [
31 "test_utils",
32]