forked from mirror/async-std
10 lines
223 B
Rust
10 lines
223 B
Rust
//! The Rust core allocation and collections library
|
|
//!
|
|
//! This library provides smart pointers and collections for managing
|
|
//! heap-allocated values.
|
|
|
|
mod extend;
|
|
mod from_stream;
|
|
|
|
#[doc(inline)]
|
|
pub use std::vec::Vec;
|