We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b70378 commit 8b25086Copy full SHA for 8b25086
src/libcollections/bit.rs
@@ -8,6 +8,11 @@
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
11
+#![deprecated(reason = "BitVec and BitSet have been migrated to cargo as bit-vec and bit-set",
12
+ since = "1.2.0")]
13
+#![unstable(feature = "collections", reason = "deprecated")]
14
+#![allow(deprecated)]
15
+
16
// FIXME(Gankro): BitVec and BitSet are very tightly coupled. Ideally (for
17
// maintenance), they should be in separate files/modules, with BitSet only
18
// using BitVec's public API. This will be hard for performance though, because
0 commit comments