File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ tempfile = { version = "3.0", optional = true }
23
23
serde = " 1.0"
24
24
serde_json = " 1.0"
25
25
serde_derive = " 1.0"
26
- rustc-test = { git = " https://github.com/messense/rustc-test.git " , branch = " sync-rustc " , optional = true }
26
+ tester = { version = " 0.4 " , optional = true }
27
27
28
28
[target ."cfg(unix)" .dependencies ]
29
29
libc = " 0.2"
@@ -35,4 +35,4 @@ winapi = { version = "0.3", features = ["winerror"] }
35
35
[features ]
36
36
tmp = [" tempfile" ]
37
37
norustc = []
38
- stable = [" norustc" , " rustc-test " ]
38
+ stable = [" norustc" , " tester " ]
Original file line number Diff line number Diff line change @@ -21,10 +21,7 @@ extern crate rustc;
21
21
22
22
#[ cfg( unix) ]
23
23
extern crate libc;
24
- #[ cfg( not( feature = "stable" ) ) ]
25
24
extern crate test;
26
- #[ cfg( feature = "stable" ) ]
27
- extern crate rustc_test as test;
28
25
29
26
#[ cfg( feature = "tmp" ) ] extern crate tempfile;
30
27
You can’t perform that action at this time.
0 commit comments