Commit d1c316e Michael Müller
authored
1 parent 65c4ba7 commit d1c316e Copy full SHA for d1c316e
File tree 4 files changed +4
-8
lines changed
4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ std = [
56
56
" scale-info/std" ,
57
57
]
58
58
ink-fuzz-tests = [" std" ]
59
- ink-unstable = [" std" ]
60
59
61
60
[[bench ]]
62
61
name = " bench_lazy"
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ pub mod binary_heap;
22
22
pub mod bitstash;
23
23
pub mod bitvec;
24
24
pub mod hashmap;
25
- #[ cfg( feature = "ink-unstable" ) ]
26
25
pub mod smallvec;
27
26
pub mod stash;
28
27
pub mod vec;
@@ -37,7 +36,6 @@ pub use self::{
37
36
vec:: Vec ,
38
37
} ;
39
38
40
- #[ cfg( feature = "ink-unstable" ) ]
41
39
#[ doc( inline) ]
42
40
pub use self :: smallvec:: SmallVec ;
43
41
Original file line number Diff line number Diff line change @@ -21,9 +21,10 @@ use crate::traits::{
21
21
22
22
#[ cfg( feature = "std" ) ]
23
23
const _: ( ) = {
24
- #[ cfg( feature = "ink-unstable" ) ]
25
- use crate :: lazy:: LazyArray ;
26
- use crate :: traits:: StorageLayout ;
24
+ use crate :: {
25
+ lazy:: LazyArray ,
26
+ traits:: StorageLayout ,
27
+ } ;
27
28
use ink_metadata:: layout:: {
28
29
FieldLayout ,
29
30
Layout ,
Original file line number Diff line number Diff line change @@ -28,12 +28,10 @@ pub mod lazy_hmap;
28
28
29
29
mod cache_cell;
30
30
mod entry;
31
- #[ cfg( feature = "ink-unstable" ) ]
32
31
mod lazy_array;
33
32
mod lazy_cell;
34
33
mod lazy_imap;
35
34
36
- #[ cfg( feature = "ink-unstable" ) ]
37
35
#[ doc( inline) ]
38
36
pub use self :: lazy_array:: LazyArray ;
39
37
use self :: {
You can’t perform that action at this time.
0 commit comments