fate 0.1.0

(placeholder) Fight And Travel (Game) Engine. A rewrite from C, focused on games which need to move fast in huge worlds, and fighting mechanics.
Documentation
//! Fight And Travel (Game) Engine.
//!
//! [It started in C](https://github.com/yoanlcq/fate-c), it will end in Rust.

#![doc(html_root_url = "https://docs.rs/fate/0.1.0")]
//#![deny(missing_docs)]
#![doc(test(attr(deny(warnings))))]
#![feature(test)]
#![feature(inclusive_range, inclusive_range_syntax)]
#![feature(i128_type)]
#![feature(link_llvm_intrinsics)]
//#![feature(repr_simd)]

extern crate test;
extern crate vek;

pub use vek::*;

pub mod intrin;
pub use intrin::*;
pub mod marker;
pub use marker::*;