diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2023-05-21 11:12:12 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2023-05-21 11:12:12 +0000 |
| commit | 5c5feaa732363e32e2a980a887fa42b4394b1a5e (patch) | |
| tree | 3900fd17ef236dcbd2a2e109c213282fe6d0db29 /Cargo.toml | |
| parent | 26689f97810fc656c7134c76e2a37d33b2e40ce7 (diff) | |
cargo toml and lock
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 28 |
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] | ||
| 2 | name = "ngit" | ||
| 3 | version = "0.0.1" | ||
| 4 | edition = "2021" | ||
| 5 | description = "a proof of concept cli for a nostr based github alternative" | ||
| 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] | ||
| 7 | readme = "README.md" | ||
| 8 | homepage = "https://github.com/DanConwayDev/ngit-cli" | ||
| 9 | repository = "https://github.com/DanConwayDev/ngit-cli" | ||
| 10 | license = "MIT" | ||
| 11 | keywords = ["nostr", "git"] | ||
| 12 | categories = ["command-line-utilities","git"] | ||
| 13 | |||
| 14 | [dependencies] | ||
| 15 | clap = { version = "4.1.6", features = ["derive"] } | ||
| 16 | nostr = { version = "0.21" } | ||
| 17 | nostr-sdk = { version = "0.21", features = ["blocking"] } | ||
| 18 | serde = { version = "1.0.147", features = ["derive"] } | ||
| 19 | serde_json = "1.0.91" | ||
| 20 | dialoguer = "0.10.4" | ||
| 21 | indicatif = "0.17.3" | ||
| 22 | thiserror = "1.0" | ||
| 23 | confy = "0.5.1" | ||
| 24 | git2 = "0.17.1" | ||
| 25 | |||
| 26 | [patch.crates-io] | ||
| 27 | nostr = { git = 'https://github.com/DanConwayDev/nostr.git', features = ["blocking"] } | ||
| 28 | |||