[package]
edition = "2024"
name = "timevalue"
version = "0.2.0"
authors = ["Abhinandh S <abhinandhsuby@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compute present and future value of money for single sum and annuity (ordinary and due) using idiomatic Rust."
homepage = "https://github.com/abhinandh-s/timevalue"
documentation = "https://docs.rs/timevalue"
readme = "README.md"
keywords = [
"finance",
"present-value",
"future-value",
"annuity",
]
categories = [
"finance",
"science",
"mathematics",
]
license = "MIT"
repository = "https://github.com/abhinandh-s/timevalue"
[features]
default = []
rust_decimal = ["dep:rust_decimal"]
[lib]
name = "timevalue"
path = "src/lib.rs"
[dependencies.rust_decimal]
version = "1.40.0"
features = [
"macros",
"maths",
]
optional = true