File tree Expand file tree Collapse file tree 3 files changed +1
-16
lines changed Expand file tree Collapse file tree 3 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ dependencies = [
5151 " filetime" ,
5252 " hex" ,
5353 " ignore" ,
54- " is-terminal" ,
5554 " junction" ,
5655 " libc" ,
5756 " object" ,
@@ -386,18 +385,6 @@ dependencies = [
386385 " windows-sys" ,
387386]
388387
389- [[package ]]
390- name = " is-terminal"
391- version = " 0.4.6"
392- source = " registry+https://github.com/rust-lang/crates.io-index"
393- checksum = " 256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8"
394- dependencies = [
395- " hermit-abi 0.3.1" ,
396- " io-lifetimes" ,
397- " rustix" ,
398- " windows-sys" ,
399- ]
400-
401388[[package ]]
402389name = " itoa"
403390version = " 1.0.2"
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ path = "bin/sccache-plus-cl.rs"
3030test = false
3131
3232[dependencies ]
33- is-terminal = " 0.4"
3433build_helper = { path = " ../tools/build_helper" }
3534cmake = " 0.1.38"
3635filetime = " 0.2"
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ use std::collections::{HashMap, HashSet};
1212use std:: env;
1313use std:: fmt;
1414use std:: fs;
15+ use std:: io:: IsTerminal ;
1516use std:: path:: { Path , PathBuf } ;
1617use std:: process:: Command ;
1718use std:: str:: FromStr ;
@@ -894,8 +895,6 @@ define_config! {
894895
895896impl Config {
896897 pub fn default_opts ( ) -> Config {
897- use is_terminal:: IsTerminal ;
898-
899898 let mut config = Config :: default ( ) ;
900899 config. llvm_optimize = true ;
901900 config. ninja_in_file = true ;
You can’t perform that action at this time.
0 commit comments