mirror of
https://github.com/async-rs/async-std.git
synced 2026-01-14 08:20:56 +00:00
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;
|