Skip to content

Commit

Permalink
chore: replace is-terminal with standard library (mozilla#2311)
Browse files Browse the repository at this point in the history
  • Loading branch information
tottoto authored Jan 7, 2025
1 parent 77f67d7 commit 9ca8beb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition 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 @@ -53,7 +53,6 @@ hyper-util = { version = "0.1.3", optional = true, features = [
"tokio",
"server",
] }
is-terminal = "0.4.12"
itertools = "0.12"
jobserver = "0.1"
jwt = { package = "jsonwebtoken", version = "9", optional = true }
Expand Down
3 changes: 1 addition & 2 deletions src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,10 @@ use crate::util::daemonize;
use byteorder::{BigEndian, ByteOrder};
use fs::{File, OpenOptions};
use fs_err as fs;
use is_terminal::IsTerminal;
use log::Level::Trace;
use std::env;
use std::ffi::{OsStr, OsString};
use std::io::{self, Write};
use std::io::{self, IsTerminal, Write};
#[cfg(unix)]
use std::os::unix::process::ExitStatusExt;
use std::path::Path;
Expand Down

0 comments on commit 9ca8beb

Please sign in to comment.