com_croftsoft_core/
lib.rs

1// =============================================================================
2//! - CroftSoft Core Library
3//!
4//! # Metadata
5//! - Copyright: © 1998 - 2022 [`CroftSoft Inc`]
6//! - Author: [`David Wallace Croft`]
7//! - Rust version: 2022-11-21
8//! - Rust since: 2022-07-30
9//!
10//! # Features
11//! - No dependencies on other crates
12//! - Artificial Intelligence
13//!   - A* Algorithm
14//! - Mathematics
15//!   - 3D mathematics including axis angles and quaternions
16//!   - Financial calculations
17//!   - Mathematical constants and functions
18//!   - Matrix mathematics
19//!
20//! # History
21//! - An adaptation to Rust of the Java-based [`CroftSoft Core Library`]
22//!
23//! [`CroftSoft Core Library`]: https://www.croftsoft.com/library/code/
24//! [`CroftSoft Inc`]: https://www.croftsoft.com/
25//! [`David Wallace Croft`]: https://www.croftsoft.com/people/david/
26// =============================================================================
27
28pub mod ai;
29pub mod math;
30pub mod role;
31pub mod security;