From f281f0f3bed140f3df8f3b4458fe01284395b353 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 13 Mar 2014 19:01:26 -0400 Subject: [PATCH] re-export `Vec` in the collections crate --- src/libcollections/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index a087180d9a502..5bc54de1652fc 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -27,6 +27,7 @@ extern crate rand; #[cfg(test)] extern crate test; +pub use std::vec::Vec; pub use bitv::Bitv; pub use btree::BTree; pub use deque::Deque;