File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ documentation = "http://doc.servo.org/smallvec/"
11
11
12
12
[features ]
13
13
heapsizeof = [" heapsize" , " std" ]
14
- collections = []
15
14
std = []
16
15
default = [" std" ]
17
16
Original file line number Diff line number Diff line change 7
7
//! locality and reducing allocator traffic for workloads that fit within the inline buffer.
8
8
9
9
#![ cfg_attr( not( feature = "std" ) , no_std) ]
10
- #![ cfg_attr( not( feature = "std" ) , feature( collections ) ) ]
10
+ #![ cfg_attr( not( feature = "std" ) , feature( alloc ) ) ]
11
11
12
12
13
13
#[ cfg( not( feature = "std" ) ) ]
14
- extern crate collections ;
14
+ extern crate alloc ;
15
15
16
16
#[ cfg( not( feature = "std" ) ) ]
17
- use collections :: Vec ;
17
+ use alloc :: Vec ;
18
18
19
19
#[ cfg( feature="heapsizeof" ) ]
20
20
extern crate heapsize;
You can’t perform that action at this time.
0 commit comments