File tree 3 files changed +1
-16
lines changed
3 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ dependencies = [
51
51
" filetime" ,
52
52
" hex" ,
53
53
" ignore" ,
54
- " is-terminal" ,
55
54
" junction" ,
56
55
" libc" ,
57
56
" object" ,
@@ -386,18 +385,6 @@ dependencies = [
386
385
" windows-sys" ,
387
386
]
388
387
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
-
401
388
[[package ]]
402
389
name = " itoa"
403
390
version = " 1.0.2"
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ path = "bin/sccache-plus-cl.rs"
30
30
test = false
31
31
32
32
[dependencies ]
33
- is-terminal = " 0.4"
34
33
build_helper = { path = " ../tools/build_helper" }
35
34
cmake = " 0.1.38"
36
35
filetime = " 0.2"
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ use std::collections::{HashMap, HashSet};
12
12
use std:: env;
13
13
use std:: fmt;
14
14
use std:: fs;
15
+ use std:: io:: IsTerminal ;
15
16
use std:: path:: { Path , PathBuf } ;
16
17
use std:: process:: Command ;
17
18
use std:: str:: FromStr ;
@@ -894,8 +895,6 @@ define_config! {
894
895
895
896
impl Config {
896
897
pub fn default_opts ( ) -> Config {
897
- use is_terminal:: IsTerminal ;
898
-
899
898
let mut config = Config :: default ( ) ;
900
899
config. llvm_optimize = true ;
901
900
config. ninja_in_file = true ;
You can’t perform that action at this time.
0 commit comments