-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "rslife"
version = "0.2.8"
edition = "2024"
description = "A comprehensive Rust library for actuarial mortality table calculations and life insurance mathematics"
license = "MIT"
repository = "https://github.com/hnlearndev/rslife"
homepage = "https://github.com/hnlearndev/rslife"
documentation = "https://docs.rs/rslife"
keywords = ["actuarial", "mortality", "insurance", "finance", "statistics"]
categories = ["mathematics", "science", "finance"]
authors = ["RSLife Contributors"]
readme = "README.md"
[dependencies]
calamine = "0.30.1"
polars = { version = "0.50.0", features = ["lazy"] }
reqwest = { version = "0.12.23", features = ["blocking"] }
roxmltree = "0.20.0"
spreadsheet-ods = "0.25.1"
garde = { version = "0.22", features = ["derive"] }
bon = "3.7.2"
[dev-dependencies]
approx = "0.5"
criterion = { version = "0.7.0", features = ["html_reports"] }
codspeed-criterion-compat = "3.0.5"
[[bench]]
name = "commutations"
harness = false
[[bench]]
name = "mortality_functions"
harness = false
[[bench]]
name = "annuities"
harness = false