1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! 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::*;