1 unstable release

0.1.0 Oct 10, 2024

#440 in Math

Download history 152/week @ 2024-10-09 11/week @ 2024-10-16

163 downloads per month

MIT license

14KB
300 lines

Amortization Calculator

A Rust library for calculating loan amortization schedules.

Features

  • Calculate monthly payment amounts
  • Generate complete amortization schedules
  • Track principal and interest payments

Usage

use amortization_calculator::Amortization;
use chrono::NaiveDate;

fn main() {
    let loan = Amortization::new(
        280350.0, // Principal
        3.5,      // APR
        60,       // Periods (5 years)
        Some(NaiveDate::from_ymd_opt(2024, 1, 1).unwrap())
    );

    println!("{}", loan);
}

Dependencies

~1MB
~18K SLoC