Skip to content

Commit

Permalink
drops is-terminal dependency in favor of std::io
Browse files Browse the repository at this point in the history
  • Loading branch information
wookietreiber committed Nov 16, 2023
1 parent 0ae68c3 commit cea375b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 22 deletions.
18 changes: 0 additions & 18 deletions 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 @@ -17,7 +17,6 @@ rust-version = "1.70"
anyhow = "1"
bstr = "1"
bytesize = "1"
is-terminal = "0.4"
tempfile = "3"

[dependencies.clap]
Expand Down
4 changes: 1 addition & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,9 @@ mod output;
mod policy;
mod usage;

use std::io;
use std::io::{self, IsTerminal};
use std::path::Path;

use is_terminal::IsTerminal;

use crate::config::Config;

fn main() {
Expand Down

0 comments on commit cea375b

Please sign in to comment.