File tree 10 files changed +15
-15
lines changed
10 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ std_unicode = { path = "../libstd_unicode" }
16
16
name = " collectionstest"
17
17
path = " ../libcollectionstest/lib.rs"
18
18
19
- [[bench ]]
20
- name = " collectionstest"
21
- path = " ../libcollectionstest/lib.rs"
19
+ # FIXME: need to extract benchmarks to separate crate
20
+ # [[bench]]
21
+ # name = "collectionstest"
22
+ # path = "../libcollectionstest/lib.rs"
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ bench = false
13
13
name = " coretest"
14
14
path = " ../libcoretest/lib.rs"
15
15
16
- [[bench ]]
17
- name = " coretest"
18
- path = " ../libcoretest/lib.rs"
16
+ # FIXME: need to extract benchmarks to a separate crate
17
+ # [[bench]]
18
+ # name = "coretest"
19
+ # path = "../libcoretest/lib.rs"
Original file line number Diff line number Diff line change 2
2
authors = [" The Rust Project Developers" ]
3
3
name = " proc_macro_tokens"
4
4
version = " 0.0.0"
5
+ build = false
5
6
6
7
[lib ]
7
8
path = " lib.rs"
Original file line number Diff line number Diff line change 30
30
#![ feature( conservative_impl_trait) ]
31
31
#![ feature( const_fn) ]
32
32
#![ feature( core_intrinsics) ]
33
- #![ cfg_attr( stage0, feature( item_like_imports) ) ]
34
33
#![ feature( libc) ]
35
34
#![ feature( nonzero) ]
36
35
#![ feature( pub_restricted) ]
Original file line number Diff line number Diff line change @@ -472,9 +472,7 @@ pub mod debuginfo {
472
472
// generates an llvmdeps.rs file next to this one which will be
473
473
// automatically updated whenever LLVM is updated to include an up-to-date
474
474
// set of the libraries we need to link to LLVM for.
475
- #[ cfg_attr( not( all( stage0, cargobuild) ) ,
476
- link( name = "rustllvm" , kind = "static" ) ) ] // not quite true but good enough
477
- #[ cfg_attr( stage0, linked_from = "rustllvm" ) ]
475
+ #[ link( name = "rustllvm" , kind = "static" ) ] // not quite true but good enough
478
476
extern "C" {
479
477
// Create and destroy contexts.
480
478
pub fn LLVMContextCreate ( ) -> ContextRef ;
Original file line number Diff line number Diff line change 27
27
#![ feature( concat_idents) ]
28
28
#![ feature( libc) ]
29
29
#![ feature( link_args) ]
30
- #![ cfg_attr( stage0, feature( linked_from) ) ]
31
30
#![ feature( staged_api) ]
32
- #![ cfg_attr ( not ( stage0 ) , feature( rustc_private) ) ]
31
+ #![ feature( rustc_private) ]
33
32
34
33
extern crate libc;
35
34
#[ macro_use]
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ Rust MIR: a lowered representation of Rust. Also: an experiment!
22
22
23
23
#![ feature( associated_consts) ]
24
24
#![ feature( box_patterns) ]
25
- #![ cfg_attr( stage0, feature( item_like_imports) ) ]
26
25
#![ feature( rustc_diagnostic_macros) ]
27
26
#![ feature( rustc_private) ]
28
27
#![ feature( staged_api) ]
Original file line number Diff line number Diff line change 2
2
authors = [" The Rust Project Developers" ]
3
3
name = " rustc_plugin"
4
4
version = " 0.0.0"
5
+ build = false
5
6
6
7
[lib ]
7
8
name = " rustc_plugin"
Original file line number Diff line number Diff line change 12
12
# tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
13
13
# released on `$date`
14
14
15
- rustc: beta-2016-12-16
16
- cargo: fbeea902d2c9a5be6d99cc35681565d8f7832592
15
+ rustc: beta-2016-12-20
16
+ cargo: bfee18f73287687c543bda8c35e4e33808792715
Original file line number Diff line number Diff line change 2
2
authors = [" The Rust Project Developers" ]
3
3
name = " rustbook"
4
4
version = " 0.0.0"
5
+ build = false
5
6
6
7
[[bin ]]
7
8
name = " rustbook"
You can’t perform that action at this time.
0 commit comments