[package]
edition = "2021"
rust-version = "1.83.0"
name = "quantrs"
version = "0.1.8"
authors = ["Carlo Bortolan <carlobortolan@gmail.com>"]
build = false
include = [
"CHANGELOG.md",
"LICENSE-MIT.md",
"LICENSE-APACHE.md",
"OUTLOOK.md",
"src/",
"tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny Rust library for quantitative finance"
homepage = "https://github.com/carlobortolan/quantrs"
documentation = "https://docs.rs/quantrs"
readme = "README.md"
keywords = [
"quantitative",
"quant",
"finance",
"options",
"pricing",
]
categories = [
"finance",
"simulation",
"mathematics",
"algorithms",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/carlobortolan/quantrs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
python = ["pyo3"]
[lib]
name = "quantrs"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "data"
path = "tests/data.rs"
[[test]]
name = "fixed_income"
path = "tests/fixed_income.rs"
[[test]]
name = "options_pricing"
path = "tests/options_pricing.rs"
[dependencies.chrono]
version = "0.4.41"
[dependencies.plotters]
version = "0.3.7"
[dependencies.pyo3]
version = "0.28.2"
features = ["extension-module"]
optional = true
[dependencies.rand]
version = "0.9.2"
[dependencies.rand_distr]
version = "0.5.1"
[dependencies.rayon]
version = "1.10.0"
[dependencies.reqwest]
version = "0.13.1"
features = ["json"]
[dependencies.serde]
version = "1.0.219"
[dependencies.serde-aux]
version = "4.7.0"
[dependencies.statrs]
version = "0.18.0"
[dependencies.tokio]
version = "1.48.0"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.tokio-test]
version = "0.4.4"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]