-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb5ee8d
commit 376da84
Showing
3 changed files
with
24 additions
and
9 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,9 +1,13 @@ | ||
[package] | ||
name = "bgit" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
license = "MIT" | ||
authors = ["Gyan172004 <[email protected]>", "rootCircle <[email protected]>"] | ||
repository = "https://github.com/Gyan172004/bgit" | ||
description = "User-friendly Git wrapper for beginners, automating essential tasks like adding, committing, and pushing changes. It includes smart rules to avoid common pitfalls, such as accidentally adding sensitive files or directories and has exclusive support for portable hooks!" | ||
categories = ["development-tools::testing", "command-line-utilities", "development-tools"] | ||
keywords = ["git", "cli", "wrapper", "beginner", "friendly", "portable", "libgit-rs", "hooks", "automation", "smart-rules"] | ||
|
||
[dependencies] | ||
clap = { version = "4.5.15", features = ["derive"] } | ||
|
@@ -12,3 +16,14 @@ colored = "2.1.0" | |
dialoguer = "0.11.0" | ||
git2 = "0.19.0" | ||
indicatif = "0.17.8" | ||
|
||
[profile.dev] | ||
opt-level = 0 | ||
|
||
[profile.release] | ||
opt-level = "z" | ||
lto = true | ||
codegen-units = 1 | ||
strip = true # Automatically strip symbols from the binary. | ||
|
||
|
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