newport_core 0.0.1

Core engine library used by most packages for newport
Documentation
1
2
3
4
5
6
7
8
//! Currently aliases to std containers. Eventually copies of std containers using custom allocators
//! 
//! # Todo
//! * Custom container implementations using custom allocators

pub use std::vec::{Vec};
pub use std::collections::{HashMap, HashSet};
pub use std::boxed::Box;