From 5c5feaa732363e32e2a980a887fa42b4394b1a5e Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Sun, 21 May 2023 11:12:12 +0000 Subject: cargo toml and lock --- Cargo.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ac3e916 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "ngit" +version = "0.0.1" +edition = "2021" +description = "a proof of concept cli for a nostr based github alternative" +authors = ["DanConwayDev "] +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"] } + -- cgit v1.2.3