Deprecate BitSet and BitVec in favour of bit-vec and bit-set crates in cargo

This commit is contained in:
Alexis Beingessner 2015-06-05 12:43:32 -07:00
parent 0b703787ab
commit 8b25086f3d

View File

@ -8,6 +8,11 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![deprecated(reason = "BitVec and BitSet have been migrated to cargo as bit-vec and bit-set",
since = "1.2.0")]
#![unstable(feature = "collections", reason = "deprecated")]
#![allow(deprecated)]
// FIXME(Gankro): BitVec and BitSet are very tightly coupled. Ideally (for
// maintenance), they should be in separate files/modules, with BitSet only
// using BitVec's public API. This will be hard for performance though, because