| Crates.io | accountant |
| lib.rs | accountant |
| version | 0.1.3 |
| created_at | 2026-01-19 01:18:19.199189+00 |
| updated_at | 2026-01-19 01:22:38.734546+00 |
| description | A simple accounting utilities library for financial calculations |
| homepage | |
| repository | |
| max_upload_size | |
| id | 2053475 |
| size | 10,445 |
A simple accounting utilities library for financial calculations in Rust.
Add to your Cargo.toml:
[dependencies]
accountant = "0.1.3"
use accountant::Accountant;
fn main() {
let mut acc = Accountant::new();
acc.credit(100.0);
acc.debit(25.0);
println!("Balance: {}", acc.get_balance()); // 75.0
}
MIT License