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:
1212 travis-cargo build &&
1313 travis-cargo test &&
1414 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 &&
1818 travis-cargo --only stable doc
1919after_success :
2020- travis-cargo --only stable doc-upload
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ optional = true
1717
1818[features ]
1919nightly = []
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
7575#[ cfg( not( feature="nightly" ) ) ]
7676pub mod lazy;
7777
78- #[ cfg( all( feature="nightly" , not( feature="no_std " ) ) ) ]
78+ #[ cfg( all( feature="nightly" , not( feature="spin_no_std " ) ) ) ]
7979#[ path="nightly_lazy.rs" ]
8080pub mod lazy;
8181
82- #[ cfg( all( feature="nightly" , feature="no_std " ) ) ]
82+ #[ cfg( all( feature="nightly" , feature="spin_no_std " ) ) ]
8383#[ path="core_lazy.rs" ]
8484pub mod lazy;
8585
Original file line number Diff line number Diff line change 1- #![ cfg( feature="no_std " ) ]
1+ #![ cfg( feature="spin_no_std " ) ]
22#![ feature( const_fn) ]
33
44#![ no_std]
You can’t perform that action at this time.
0 commit comments