This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge foxdie targets together and update crate info (#5)
* Merge separate targets together again for improved build times and easier publishing * Update crate info * Ran cargo fmt
- Loading branch information
Aaron Sky
authored
Nov 2, 2019
1 parent
3cfeb64
commit 3377a53
Showing
20 changed files
with
43 additions
and
105 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
[workspace] | ||
members = [ | ||
"src/what_git", | ||
"src/foxdie_services", | ||
"src/foxdie_actions", | ||
"src/foxdie", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,21 @@ name = "foxdie" | |
version = "0.5.0" | ||
authors = ["Aaron Sky <[email protected]>"] | ||
edition = "2018" | ||
description = "A super-fast tool for taking stale branches and push requests and deleting and/or closing them." | ||
license = "BSD-2-Clause" | ||
documentation = "https://docs.rs/foxdie" | ||
homepage = "https://github.com/wayfair/foxdie" | ||
repository = "https://github.com/wayfair/foxdie" | ||
|
||
[dependencies] | ||
chrono = { version = "0.4", features = ["serde"] } | ||
clap = "2.33" | ||
chrono = "0.4" | ||
env_logger = "0.6" | ||
git2 = "0.9" | ||
glob = "0.3" | ||
log = "0.4" | ||
foxdie_actions = { version = "0.5.0", path = "../foxdie_actions" } | ||
reqwest = "0.9" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
what_git = { version = "0.5.0", path = "../what_git" } | ||
url = "1.7.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,12 @@ name = "what_git" | |
version = "0.5.0" | ||
authors = ["Aaron Sky <[email protected]>"] | ||
edition = "2018" | ||
description = "A crate for determining which SCM your Git URL is associated with." | ||
license = "BSD-2-Clause" | ||
documentation = "https://docs.rs/what_git" | ||
homepage = "https://github.com/wayfair/foxdie" | ||
repository = "https://github.com/wayfair/foxdie" | ||
|
||
|
||
[dependencies] | ||
reqwest = "0.9" |