Skip to content

Commit

Permalink
Deprecate BitSet and BitVec in favour of bit-vec and bit-set crates i…
Browse files Browse the repository at this point in the history
…n cargo
  • Loading branch information
Gankra committed Jun 30, 2015
1 parent 0b70378 commit 8b25086
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/libcollections/bit.rs
Expand Up @@ -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
Expand Down

0 comments on commit 8b25086

Please sign in to comment.