Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Remove termcolor direct dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Sep 23, 2020
1 parent b3fc89c commit f36444e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ once_cell = "1.4"
serde = { version = "1.0", features=["derive"] }
serde_yaml = "0.8"
structopt = "0.3"
termcolor = "1.1"
thiserror = "1.0"
tokio = { version = "0.2", features = ["macros", "rt-core"] }
tokio-tungstenite = "0.11"
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use std::path::PathBuf;
use structopt::StructOpt;
use termcolor::ColorChoice;
use bunt::termcolor::ColorChoice;


#[derive(StructOpt)]
Expand Down
2 changes: 1 addition & 1 deletion src/ui.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::io::Write;
use once_cell::sync::OnceCell;
use termcolor::{Buffer, BufferWriter};
use bunt::termcolor::{Buffer, BufferWriter};
use crate::{
Args, Context,
prelude::*,
Expand Down

0 comments on commit f36444e

Please sign in to comment.