File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ script:
12
12
travis-cargo build &&
13
13
travis-cargo test &&
14
14
travis-cargo bench &&
15
- travis-cargo --only nightly build -- --features no_std &&
16
- travis-cargo --only nightly test -- --features no_std &&
17
- travis-cargo --only nightly bench -- --features no_std &&
15
+ travis-cargo --only nightly build -- --features spin_no_std &&
16
+ travis-cargo --only nightly test -- --features spin_no_std &&
17
+ travis-cargo --only nightly bench -- --features spin_no_std &&
18
18
travis-cargo --only stable doc
19
19
after_success :
20
20
- travis-cargo --only stable doc-upload
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ optional = true
17
17
18
18
[features ]
19
19
nightly = []
20
- no_std = [" nightly" , " spin" ]
20
+ spin_no_std = [" nightly" , " spin" ]
Original file line number Diff line number Diff line change @@ -75,11 +75,11 @@ The `Deref` implementation uses a hidden static variable that is guarded by a at
75
75
#[ cfg( not( feature="nightly" ) ) ]
76
76
pub mod lazy;
77
77
78
- #[ cfg( all( feature="nightly" , not( feature="no_std " ) ) ) ]
78
+ #[ cfg( all( feature="nightly" , not( feature="spin_no_std " ) ) ) ]
79
79
#[ path="nightly_lazy.rs" ]
80
80
pub mod lazy;
81
81
82
- #[ cfg( all( feature="nightly" , feature="no_std " ) ) ]
82
+ #[ cfg( all( feature="nightly" , feature="spin_no_std " ) ) ]
83
83
#[ path="core_lazy.rs" ]
84
84
pub mod lazy;
85
85
Original file line number Diff line number Diff line change 1
- #![ cfg( feature="no_std " ) ]
1
+ #![ cfg( feature="spin_no_std " ) ]
2
2
#![ feature( const_fn) ]
3
3
4
4
#![ no_std]
You can’t perform that action at this time.
0 commit comments