[package]
edition = "2021"
rust-version = "1.89"
name = "copula-core"
version = "0.2.0"
authors = ["Diogo Ribeiro <dfr@esmad.ipp.pt>"]
build = false
include = [
"/src",
"/examples",
"/tests",
"/benches",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Copula modelling, simulation, and dependence analysis (experimental, pre-1.0)"
homepage = "https://github.com/DiogoRibeiro7/copula-core"
documentation = "https://docs.rs/copula-core"
readme = "README.md"
keywords = [
"statistics",
"copula",
"dependence",
"risk",
"simulation",
]
categories = [
"science",
"mathematics",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DiogoRibeiro7/copula-core"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
estimation = ["dep:argmin"]
full = [
"estimation",
"serde",
]
serde = [
"dep:serde",
"dep:serde_json",
"nalgebra/serde-serialize",
]
[lib]
name = "copula_core"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "parameter_estimation"
path = "examples/parameter_estimation.rs"
required-features = ["estimation"]
[[example]]
name = "risk_management"
path = "examples/risk_management.rs"
[[test]]
name = "archimedean_integration"
path = "tests/archimedean_integration.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "elliptical_integration"
path = "tests/elliptical_integration.rs"
[[test]]
name = "estimation_integration"
path = "tests/estimation_integration.rs"
[[test]]
name = "functional_tests"
path = "tests/functional_tests.rs"
[[test]]
name = "gof_integration"
path = "tests/gof_integration.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "model_selection_integration"
path = "tests/model_selection_integration.rs"
[[test]]
name = "prelude_integration"
path = "tests/prelude_integration.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "regression_tests"
path = "tests/regression_tests.rs"
[[test]]
name = "serde_integration"
path = "tests/serde_integration.rs"
[[test]]
name = "workflow_integration"
path = "tests/workflow_integration.rs"
[[bench]]
name = "copula_evaluation"
path = "benches/copula_evaluation.rs"
harness = false
[[bench]]
name = "parameter_estimation"
path = "benches/parameter_estimation.rs"
harness = false
required-features = ["estimation"]
[[bench]]
name = "sampling_performance"
path = "benches/sampling_performance.rs"
harness = false
[dependencies.argmin]
version = "0.11"
optional = true
default-features = false
[dependencies.mv-norm]
version = "0.1.6"
[dependencies.nalgebra]
version = "0.35"
[dependencies.rand]
version = "0.10"
[dependencies.rand_distr]
version = "0.6"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1.0"
optional = true
[dependencies.statrs]
version = "0.19"
features = ["std"]
default-features = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.0"
[profile.bench]
debug = 2