diff options
author | Teddy Wing | 2020-08-30 04:51:51 +0200 |
---|---|---|
committer | Teddy Wing | 2020-08-30 04:51:51 +0200 |
commit | 4477ae635ec67d2b79ac670bbd73b88d4979e786 (patch) | |
tree | 7b3cea61bda3409d67d9132ded590d03de19ee16 /Cargo.lock | |
parent | 436c09d6484b657056db07f68b11da116bbd0307 (diff) | |
download | git-suggestion-4477ae635ec67d2b79ac670bbd73b88d4979e786.tar.bz2 |
git-suggestion-cli: Rename crate to `git-suggestion`
Now that I'm using the name "git-suggestion" in a few places, and from a
user perspective, it's more Git-oriented than GitHub-oriented, I think
the crate should be renamed to reflect that.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -244,6 +244,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724" [[package]] +name = "git-suggestion" +version = "0.1.0" +dependencies = [ + "exitcode", + "getopts", + "git2", + "github-suggestion", + "regex", + "thiserror", + "url", +] + +[[package]] name = "git2" version = "0.13.8" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -288,19 +301,6 @@ dependencies = [ ] [[package]] -name = "github-suggestion-cli" -version = "0.1.0" -dependencies = [ - "exitcode", - "getopts", - "git2", - "github-suggestion", - "regex", - "thiserror", - "url", -] - -[[package]] name = "h2" version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" |