-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "bgit"
version = "0.2.1"
edition = "2021"
license = "MIT"
authors = ["Gyan172004 <gkoncs@gmail.com>", "rootCircle <dev.frolics@gmail.com>"]
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", "beginner-friendly", "libgit-rs", "hooks", "smart-rules"]
rust-version = "1.85"
[dependencies]
clap = { version = "4.5.31", features = ["derive"] }
clap_complete = "4.5.46"
colored = "3.0.0"
dialoguer = "0.11.0"
git2 = "0.20.0"
indicatif = "0.17.11"
regex = "1.10.2"
tempfile = "3.10.1"
gemini-rs = "1.3.0"
tokio = { version = "1.0", features = ["full"] }
[profile.dev]
opt-level = 0
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true # Automatically strip symbols from the binary.