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/"
1111
1212[features ]
1313heapsizeof = [" heapsize" , " std" ]
14- collections = []
1514std = []
1615default = [" std" ]
1716
Original file line number Diff line number Diff line change 77//! locality and reducing allocator traffic for workloads that fit within the inline buffer.
88
99#![ cfg_attr( not( feature = "std" ) , no_std) ]
10- #![ cfg_attr( not( feature = "std" ) , feature( collections ) ) ]
10+ #![ cfg_attr( not( feature = "std" ) , feature( alloc ) ) ]
1111
1212
1313#[ cfg( not( feature = "std" ) ) ]
14- extern crate collections ;
14+ extern crate alloc ;
1515
1616#[ cfg( not( feature = "std" ) ) ]
17- use collections :: Vec ;
17+ use alloc :: Vec ;
1818
1919#[ cfg( feature="heapsizeof" ) ]
2020extern crate heapsize;
You can’t perform that action at this time.
0 commit comments