reefast 0.0.1

Rust Engine for Eve Fit Analysis, Statistics and Theorycrafting.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # REEFAST
//! REEFAST is an engine built to simulate EVE Online ship and structure fits.
//!
//! It exposes various endpoints to fetch aggregated stats and conduct fit optimizations. Initial setup consists of
//! the following steps:
//!
//! - you feed EVE data using an [`dh::DataHandler`](crate::dh::DataHandler) implementation
//! - the engine converts the data into optimized internal format
//! - you compose fit objects and fetch data from there

pub mod consts;
pub mod defines;
pub mod dh;
pub mod dh_impls;
pub mod eve_type;
pub mod prelude;