diff options
Diffstat (limited to 'nostr_git_remote_helper/Cargo.toml')
| -rw-r--r-- | nostr_git_remote_helper/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nostr_git_remote_helper/Cargo.toml b/nostr_git_remote_helper/Cargo.toml new file mode 100644 index 0000000..b45c303 --- /dev/null +++ b/nostr_git_remote_helper/Cargo.toml | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | [package] | ||
| 2 | name = "nostr-git-remote-helper" | ||
| 3 | version = "0.0.1" | ||
| 4 | edition = "2021" | ||
| 5 | description = "git remote helper for nostr protocol" | ||
| 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] | ||
| 7 | readme = "README.md" | ||
| 8 | license = "MIT" | ||
| 9 | keywords = ["nostr", "git"] | ||
| 10 | categories = ["command-line-utilities","git", "git-remote-helper"] | ||
| 11 | |||
| 12 | [dependencies] | ||
| 13 | anyhow = "1.0.75" | ||
| 14 | clap = { version = "4.3.19", features = ["derive"] } | ||
| 15 | futures = "0.3.28" | ||
| 16 | tokio = "1.33.0" | ||