aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2020-08-01 14:51:49 +0200
committerTeddy Wing2020-08-01 14:51:49 +0200
commitb218abebdf8a0aed73bfe6f61ab22e51a0f2f43c (patch)
tree8b24a1c821696dfc790b258f6c1a9355313878fa
parenteb74fee6be6876b86c97cdea0205ec970152358e (diff)
downloadgit-suggestion-b218abebdf8a0aed73bfe6f61ab22e51a0f2f43c.tar.bz2
Move `github-suggestion-config` to `github-suggestion-cli`
Going to use this for more cli-oriented code, so that the binaries can share more logic.
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml4
-rw-r--r--github-suggestion-cli/Cargo.toml (renamed from github-suggestion-config/Cargo.toml)2
-rw-r--r--github-suggestion-cli/src/lib.rs (renamed from github-suggestion-config/src/lib.rs)0
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f4c3d6c..c8e5a96 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -264,7 +264,7 @@ version = "0.0.1"
dependencies = [
"git2",
"github-rs",
- "github-suggestion-config",
+ "github-suggestion-cli",
"regex",
"serde",
"serde_json",
@@ -274,7 +274,7 @@ dependencies = [
]
[[package]]
-name = "github-suggestion-config"
+name = "github-suggestion-cli"
version = "0.0.1"
dependencies = [
"git2",
diff --git a/Cargo.toml b/Cargo.toml
index d5d3dd7..a5ea35b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,10 +13,10 @@ tempfile = "3.1.0"
thiserror = "1.0.20"
url = "2.1.1"
-github-suggestion-config = { path = "github-suggestion-config" }
+github-suggestion-cli = { path = "github-suggestion-cli" }
[workspace]
members = [
- "github-suggestion-config",
+ "github-suggestion-cli",
]
diff --git a/github-suggestion-config/Cargo.toml b/github-suggestion-cli/Cargo.toml
index 788d00d..0d07b7b 100644
--- a/github-suggestion-config/Cargo.toml
+++ b/github-suggestion-cli/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "github-suggestion-config"
+name = "github-suggestion-cli"
version = "0.0.1"
edition = "2018"
diff --git a/github-suggestion-config/src/lib.rs b/github-suggestion-cli/src/lib.rs
index c0d97a2..c0d97a2 100644
--- a/github-suggestion-config/src/lib.rs
+++ b/github-suggestion-cli/src/lib.rs