2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2026-01-14 08:20:56 +00:00
async-std/src/vec/mod.rs
2019-09-19 18:33:25 +09:00

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;