diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 16 |
1 files changed, 3 insertions, 13 deletions
@@ -1,22 +1,12 @@ [package] -name = "github-suggestion" +name = "github-suggestion-cli" version = "0.0.1" edition = "2018" [dependencies] -git2 = "0.13.8" -github-rs = "0.7.0" -regex = "1.3.9" -serde = { version = "1.0.114", features = ["derive"] } -serde_json = "1.0.56" -tempfile = "3.1.0" -thiserror = "1.0.20" -url = "2.1.1" - -github-suggestion-cli = { path = "github-suggestion-cli" } - +github-suggestion = { path = "github-suggestion" } [workspace] members = [ - "github-suggestion-cli", + "github-suggestion", ] |