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 /src/bin | |
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 'src/bin')
-rw-r--r-- | src/bin/git-sugapply.rs | 4 | ||||
-rw-r--r-- | src/bin/git-sugdiff.rs | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/git-sugapply.rs b/src/bin/git-sugapply.rs index ebea4ab..4400ef2 100644 --- a/src/bin/git-sugapply.rs +++ b/src/bin/git-sugapply.rs @@ -19,8 +19,8 @@ use std::process; use exitcode; -use github_suggestion_cli::{gseprintln, for_suggestion}; -use github_suggestion_cli::config::Config; +use git_suggestion::{gseprintln, for_suggestion}; +use git_suggestion::config::Config; fn main() { diff --git a/src/bin/git-sugdiff.rs b/src/bin/git-sugdiff.rs index 62bec8f..2af9d0b 100644 --- a/src/bin/git-sugdiff.rs +++ b/src/bin/git-sugdiff.rs @@ -20,9 +20,9 @@ use std::process::Command; use exitcode; -use github_suggestion_cli::{gseprintln, for_suggestion}; -use github_suggestion_cli::config::Config; -use github_suggestion_cli::diff_options; +use git_suggestion::{gseprintln, for_suggestion}; +use git_suggestion::config::Config; +use git_suggestion::diff_options; fn main() { |