-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add display mode for standard alphabetical output
This commit adds a new display mode called "standard-alphabetical" that displays results in the "standard" format, but with solely an alphabetical sort. This commit also bumps dependencies across the board and adds the "remain" crate to help sort enum variants. Signed-off-by: Nick Gerace <[email protected]>
- Loading branch information
1 parent
ee273bc
commit 89e88b8
Showing
17 changed files
with
315 additions
and
268 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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,13 @@ members = ["bin/gfold", "bin/xtask", "lib/libgfold"] | |
default-members = ["bin/gfold"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
authors = ["Nick Gerace <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/nickgerace/gfold" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/nickgerace/gfold" | ||
|
||
[profile.release.package.gfold] | ||
codegen-units = 1 | ||
opt-level = 3 | ||
|
@@ -14,17 +21,18 @@ panic = "abort" | |
|
||
[workspace.dependencies] | ||
anyhow = { version = "1.0", features = ["backtrace"] } | ||
clap = { version = "4.4", features = ["derive"] } | ||
clap = { version = "4.5", features = ["derive"] } | ||
dirs = "5.0" | ||
env_logger = { version = "0.10", features = ["humantime"], default_features = false } | ||
env_logger = { version = "0.11", features = ["humantime"], default_features = false } | ||
git2 = { version = "0.18", default_features = false } | ||
log = "0.4" | ||
pretty_assertions = "1.4" | ||
rayon = "1.8" | ||
rayon = "1.10" | ||
remain = "0.2" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
strum = { version = "0.25", features = ["derive"] } | ||
tempfile = "3.8" | ||
strum = { version = "0.26", features = ["derive"] } | ||
tempfile = "3.10" | ||
termcolor = "1.4" | ||
thiserror = "1.0" | ||
toml = "0.8" |
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,16 +1,17 @@ | ||
[package] | ||
name = "gfold" | ||
version = "4.4.1" | ||
edition = "2021" | ||
|
||
authors = ["Nick Gerace <[email protected]>"] | ||
categories = ["command-line-utilities", "command-line-interface"] | ||
description = "CLI tool to help keep track of your Git repositories." | ||
homepage = "https://nickgerace.dev" | ||
keywords = ["git", "cli"] | ||
license = "Apache-2.0" | ||
readme = "../../README.md" | ||
repository = "https://github.com/nickgerace/gfold/" | ||
|
||
authors.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
libgfold = { version = "0.1.2", path = "../../lib/libgfold" } | ||
|
@@ -20,6 +21,7 @@ clap = { workspace = true } | |
dirs = { workspace = true } | ||
env_logger = { workspace = true } | ||
log = { workspace = true } | ||
remain = { workspace = true } | ||
serde = { workspace = true } | ||
serde_json = { workspace = true } | ||
termcolor = { workspace = true } | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
[package] | ||
name = "xtask" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
|
||
authors.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
clap = { workspace = true } | ||
dirs = { workspace = true } | ||
remain = { workspace = true } | ||
strum = { workspace = true } | ||
termcolor = { workspace = true } | ||
thiserror = { workspace = true } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
[package] | ||
name = "libgfold" | ||
version = "0.1.2" | ||
edition = "2021" | ||
|
||
authors = ["Nick Gerace <[email protected]>"] | ||
categories = ["development-tools"] | ||
description = "Provides the ability to find a minimal set of user-relevant information for Git repositories on a local filesystem." | ||
homepage = "https://nickgerace.dev" | ||
keywords = ["git"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/nickgerace/gfold/" | ||
|
||
authors.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
git2 = { workspace = true } | ||
log = { workspace = true } | ||
rayon = { workspace = true } | ||
remain = { workspace = true } | ||
serde = { workspace = true } | ||
thiserror = { workspace = true } | ||
|
||
|
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 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