mirror of
https://github.com/async-rs/async-std.git
synced 2025-06-30 18:11:36 +00:00
Allow for unused `pub use` in experimental API which doesn't have its mods public for noiw. MIPS CI is fully broken (doesn't find the MIPS toolchain) so disable it for now. Reenable powerpc64 which is no longer broken
11 lines
240 B
Rust
11 lines
240 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;
|
|
|
|
#[allow(unused)]
|
|
#[doc(inline)]
|
|
pub use std::vec::Vec;
|