Skip to content

Commit

Permalink
bring color back to 'max' versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 12, 2020
1 parent 59ed51d commit c68d9ab
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 11 deletions.
26 changes: 21 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gitoxide"
description = "A command-line application for interacting with git repositories"
version = "1.0.0"
version = "0.1.0"
authors = ["Sebastian Thiel <[email protected]>"]
publish = false
license = "MIT"
Expand Down Expand Up @@ -60,7 +60,7 @@ anyhow = "1.0.31"
gitoxide-core = { version = "0.1.0", path = "gitoxide-core" }
git-features = { version = "0.1.0", path = "git-features" }

structopt = { version = "0.3.14", optional = true, default-features = false }
structopt = { version = "0.3.14", optional = true }
argh = { version = "0.1.3", optional = true, default-features = false }
prodash = { version = "7.0.2", optional = true, default-features = false }
smol = { version = "0.1.18", optional = true, default-features = false }
Expand Down
3 changes: 1 addition & 2 deletions src/plumbing/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ mod options {

#[derive(Debug, StructOpt)]
#[structopt(name = "gio-plumbing", about = "The git underworld")]
#[structopt(settings = &[AppSettings::SubcommandRequired,
AppSettings::ColoredHelp])]
#[structopt(settings = &[AppSettings::SubcommandRequired, AppSettings::ColoredHelp])]
pub struct Args {
#[structopt(subcommand)]
pub cmd: Subcommands,
Expand Down
3 changes: 1 addition & 2 deletions src/porcelain/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ mod options {

#[derive(Debug, StructOpt)]
#[structopt(about = "The git")]
#[structopt(settings = &[AppSettings::SubcommandRequired,
AppSettings::ColoredHelp])]
#[structopt(settings = &[AppSettings::SubcommandRequired, AppSettings::ColoredHelp])]
pub struct Args {
#[structopt(subcommand)]
pub cmd: Subcommands,
Expand Down

0 comments on commit c68d9ab

Please sign in to comment.