Skip to content

Commit

Permalink
chore: Upgrade concolor
Browse files Browse the repository at this point in the history
Based on some feedback, I shortened the name.
  • Loading branch information
epage committed Jan 11, 2022
1 parent 02bc9b5 commit 3ea723a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ chashmap = "2.2.2"
chrono = "0.4.19"
clap = { version = "3.0.0", features = ["derive"] }
color-eyre = "0.5.11"
concolor-control = { version = "0.0.7", features = ["auto"] }
concolor = { version = "0.0.8", features = ["auto"] }
console = "0.15.0"
cursive = { version = "0.17.0-alpha.0", default-features = false, features = [
"crossterm-backend",
Expand Down
2 changes: 1 addition & 1 deletion src/core/formatting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ pub struct Glyphs {
impl Glyphs {
/// Make the `Glyphs` object appropriate for `stdout`.
pub fn detect() -> Self {
let color_support = concolor_control::get(concolor_control::Stream::Stdout);
let color_support = concolor::get(concolor::Stream::Stdout);
if color_support.color() {
Glyphs::pretty()
} else {
Expand Down

0 comments on commit 3ea723a

Please sign in to comment.