File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ pub use enum_set::EnumSet;
88
88
pub use vec_deque:: VecDeque ;
89
89
pub use string:: String ;
90
90
pub use vec:: Vec ;
91
+ #[ allow( deprecated) ]
91
92
pub use vec_map:: VecMap ;
92
93
93
94
// Needed for the vec! macro
@@ -109,6 +110,7 @@ pub mod str;
109
110
pub mod string;
110
111
pub mod vec;
111
112
pub mod vec_deque;
113
+ #[ allow( deprecated) ]
112
114
pub mod vec_map;
113
115
114
116
#[ unstable( feature = "bitvec" , reason = "RFC 509" ) ]
Original file line number Diff line number Diff line change 11
11
//! A simple map based on a vector for small integer keys. Space requirements
12
12
//! are O(highest integer key).
13
13
14
+ #![ deprecated( reason = "VecMap moved to crates.io as vec_map" ,
15
+ since = "1.3.0" ) ]
16
+ #![ unstable( feature = "vecmap" , reason = "deprecated" ) ]
17
+ #![ allow( deprecated) ]
18
+
14
19
#![ allow( missing_docs) ]
15
- #![ unstable( feature = "vecmap" ,
16
- reason = "may not be stabilized in the standard library" ) ]
17
20
18
21
use self :: Entry :: * ;
19
22
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
+ // VecMap
12
+ #![ allow( deprecated) ]
13
+
11
14
//! Implementations of serialization for structures found in libcollections
12
15
13
16
use std:: usize;
You can’t perform that action at this time.
0 commit comments