Skip to content

Commit

Permalink
ops(cargo.toml): metadata changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rootCircle committed Aug 12, 2024
1 parent fb5ee8d commit 376da84
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 18 additions & 3 deletions Cargo.toml
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"] }
Expand All @@ -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.


2 changes: 1 addition & 1 deletion src/workflow_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl WorkflowQueue {
let started = Instant::now();
// Initialize spinner for progress indication
let pb = ProgressBar::new_spinner();
pb.enable_steady_tick(Duration::from_millis(500));
pb.enable_steady_tick(Duration::from_millis(200));
pb.set_style(
ProgressStyle::with_template(
"{spinner:.cyan/blue.bold} [{pos:.yellow}/?] Executing step: {wide_msg:.green}",
Expand Down

0 comments on commit 376da84

Please sign in to comment.