1//! The Rust core allocation and collections library 2//! 3//! This library provides smart pointers and collections for managing 4//! heap-allocated values. 5 6mod extend; 7mod from_stream; 8 9#[allow(unused)] 10#[doc(inline)] 11pub use std::vec::Vec;