rust_finprim/lib.rs
1#![doc = include_str!(concat!("../README.md"))]
2#![cfg_attr(not(feature = "std"), no_std)]
3
4pub mod amort_dep_tax;
5pub mod derivatives;
6pub mod rate;
7pub mod tvm;
8
9pub use rust_decimal::Decimal;
10pub use rust_decimal_macros::*;
11
12const ONE: Decimal = Decimal::ONE;
13const ZERO: Decimal = Decimal::ZERO;