Skip to content

Commit 51f3545

Browse files
authored
Auto merge of #223 - Luro02:docs, r=emilio
Link to tracking issues for unstable features
2 parents 006b2e5 + 51d8464 commit 51f3545

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,17 @@
3434
//! To use this feature add `features = ["union"]` in the `smallvec` section of Cargo.toml.
3535
//! Note that this feature requires a nightly compiler (for now).
3636
//!
37+
//! Tracking issue: [rust-lang/rust#55149](https://github.com/rust-lang/rust/issues/55149)
38+
//!
3739
//! ### `const_generics`
3840
//!
3941
//! **This feature is unstable and requires a nightly build of the Rust toolchain.**
4042
//!
4143
//! When this feature is enabled, `SmallVec` works with any arrays of any size, not just a fixed
4244
//! list of sizes.
4345
//!
46+
//! Tracking issue: [rust-lang/rust#44580](https://github.com/rust-lang/rust/issues/44580)
47+
//!
4448
//! ### `specialization`
4549
//!
4650
//! **This feature is unstable and requires a nightly build of the Rust toolchain.**
@@ -49,13 +53,17 @@
4953
//! of `Copy` types. (Without this feature, you can use `SmallVec::from_slice` to get optimal
5054
//! performance for `Copy` types.)
5155
//!
56+
//! Tracking issue: [rust-lang/rust#31844](https://github.com/rust-lang/rust/issues/31844)
57+
//!
5258
//! ### `may_dangle`
5359
//!
5460
//! **This feature is unstable and requires a nightly build of the Rust toolchain.**
5561
//!
5662
//! This feature makes the Rust compiler less strict about use of vectors that contain borrowed
5763
//! references. For details, see the
5864
//! [Rustonomicon](https://doc.rust-lang.org/1.42.0/nomicon/dropck.html#an-escape-hatch).
65+
//!
66+
//! Tracking issue: [rust-lang/rust#34761](https://github.com/rust-lang/rust/issues/34761)
5967
6068
#![no_std]
6169
#![cfg_attr(feature = "union", feature(untagged_unions))]

0 commit comments

Comments
 (0)