diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2023-11-01 00:00:00 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2023-11-01 00:00:00 +0000 |
| commit | 1ec8b9be91ab2d172ad97cd6f402ff23cfca30f9 (patch) | |
| tree | 954ff4e228c6d7a1b35de656888c4aa741783e07 /nostr_git_remote_helper/Cargo.toml | |
| parent | d7d5576195149203f016677c3965d90fd2428fde (diff) | |
feat(helper) add rust workspace
add nostr_git_remote_helper with standard helper packages for rust cli
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" | ||