-
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.
Primary: - Switch to cargo workspace to replace xtask, make, etc. - Add debug symbol stripping Misc: - Upgrade all packages - Replace entries iterator with "next" due to the following PR: rust-lang/git2-rs#854 - Remove "rustfmt.toml" Signed-off-by: Nick Gerace <[email protected]>
- Loading branch information
1 parent
9c8dc75
commit 0be1f30
Showing
22 changed files
with
130 additions
and
109 deletions.
There are no files selected for viewing
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
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,43 +1,12 @@ | ||
[package] | ||
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" | ||
name = "gfold" | ||
readme = "README.md" | ||
repository = "https://github.com/nickgerace/gfold/" | ||
[workspace] | ||
members = ["crates/*"] | ||
default-members = ["crates/gfold"] | ||
|
||
edition = "2021" | ||
version = "4.0.1" | ||
|
||
[dependencies] | ||
anyhow = { version = "1", features = ["backtrace"] } | ||
argh = "0" | ||
dirs = "4" | ||
git2 = { version = "0", default_features = false } | ||
log = "0" | ||
rayon = "1" | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
termcolor = "1" | ||
thiserror = "1" | ||
toml = "0" | ||
|
||
# Source: https://github.com/env-logger-rs/env_logger/blob/v0.9.0/Cargo.toml#L47 | ||
# Removed features: ["regex", "termcolor"] | ||
env_logger = { version = "0", features = ["atty", "humantime"], default_features = false } | ||
|
||
[profile.release] | ||
[profile.release.package.gfold] | ||
codegen-units = 1 | ||
|
||
# Instruct linker to optimize at the link stage. | ||
lto = true | ||
|
||
# There is a noticeable speed difference from level 3 to 'z' or 's'. | ||
# We need this speed for the user experience. | ||
opt-level = 3 | ||
strip = true | ||
|
||
# This application should not panic often and only read from the filesystem. | ||
[profile.release] | ||
lto = true | ||
panic = "abort" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[package] | ||
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" | ||
name = "gfold" | ||
readme = "README.md" | ||
repository = "https://github.com/nickgerace/gfold/" | ||
|
||
edition = "2021" | ||
version = "4.0.1" | ||
|
||
[dependencies] | ||
anyhow = { version = "1", features = ["backtrace"] } | ||
argh = "0" | ||
dirs = "4" | ||
git2 = { version = "0", default_features = false } | ||
log = "0" | ||
rayon = "1" | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
termcolor = "1" | ||
thiserror = "1" | ||
toml = "0" | ||
|
||
# Source: https://github.com/env-logger-rs/env_logger/blob/v0.9.0/Cargo.toml#L47 | ||
# Removed features: ["regex", "termcolor"] | ||
env_logger = { version = "0", features = ["atty", "humantime"], default_features = false } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.