[package]
edition = "2021"
rust-version = "1.75"
name = "yield-curves"
version = "0.4.0"
build = false
exclude = [
".github/",
".leankg/",
"leankg.yaml",
"docs/LAUNCH-KIT.md",
"docs/ROADMAP.md",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust yield curve interpolation (Nelson-Siegel, Svensson, PCHIP) and bond pricing. Zero deps."
homepage = "https://github.com/mqmalagris/yield-curves"
documentation = "https://docs.rs/yield-curves"
readme = "README.md"
keywords = [
"finance",
"yield-curve",
"nelson-siegel",
"svensson",
"bond",
]
categories = [
"finance",
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mqmalagris/yield-curves"
[lib]
name = "yield_curves"
path = "src/lib.rs"
[[test]]
name = "cross_method"
path = "tests/cross_method.rs"
[[test]]
name = "phase0_usage"
path = "tests/phase0_usage.rs"
[dependencies]
[lints.rust]
unsafe_code = "forbid"