qecs 0.0.7

Soon to be highly flexible Entity-Component-System framework, core lib.
Documentation
#![feature(associated_type_defaults)]
#![feature(macro_reexport)] 
#![feature(set_recovery)]

#[macro_use] 
#[macro_reexport(qecs_newtype)]
extern crate qecs_core;
extern crate vec_map;
extern crate rustc_serialize;
extern crate num;

pub use qecs_core as core;

pub mod btree_map_store;
pub mod vec_map_store;

pub mod btree_set_store;

pub mod vec_buffer;
pub mod single_event_buffer;

pub mod simple_index_manager;
pub mod with_dirty_state;