[package]
edition = "2021"
rust-version = "1.70"
name = "findates"
version = "0.1.1"
exclude = [
".github",
".DS_Store",
]
description = "Financial date arithmetic: business day calendars, day count conventions, and schedule generation."
documentation = "https://docs.rs/findates"
readme = "README.md"
keywords = [
"finance",
"dates",
"calendar",
"daycount",
"schedule",
]
categories = [
"finance",
"date-and-time",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/WilliammmK/findates"
[dependencies.chrono]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dev-dependencies.itertools]
version = "0.14"
[features]
serde = [
"dep:serde",
"chrono/serde",
]