oefpil 0.2.0

Optimum Estimate of Function Parameters by Iterated Linearization (OEFPIL): Algorithm for nonlinear function fitting to data with errors in both dependent and independent variables where correlation, both within variables and among variables, might be present.
Documentation
[dependencies.derive_more]
features = ["display", "error", "from"]
version = "1.0.0"

[dependencies.oefpil-sys]
version = "0.2.0"

[dependencies.rand]
default-features = false
optional = true
version = "0.8.5"

[dependencies.rand_distr]
default-features = false
optional = true
version = "0.4.3"

[dev-dependencies.const-hex]
version = "1.14.0"

[dev-dependencies.rand_chacha]
version = "0.3.1"

[[example]]
doc-scrape-examples = true
name = "sine"
path = "examples/sine.rs"
required-features = ["random"]

[features]
random = ["rand", "rand_distr"]

[lib]
name = "oefpil"
path = "src/lib.rs"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.rust]
missing-docs = "forbid"

[lints.rustdoc]
broken-intra-doc-links = "forbid"

[package]
authors = ["Rouven Spreckels <rs@qu1x.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "algorithms", "mathematics", "science"]
description = """
Optimum Estimate of Function Parameters by Iterated Linearization (OEFPIL):
Algorithm for nonlinear function fitting to data with errors in both dependent and independent
variables where correlation, both within variables and among variables, might be present."""
documentation = "https://docs.rs/oefpil"
edition = "2021"
include = ["src/**/*.rs", "examples/**/*.rs", "katex.html", "Cargo.toml", "README.md", "RELEASES.md", "LICENSE-*"]
keywords = ["function-fitting", "nonlinear-regression", "optimization-problem", "covariance-matrix", "error-propagation"]
license = "MIT OR Apache-2.0"
name = "oefpil"
readme = "README.md"
repository = "https://github.com/qu1x/oefpil"
rust-version = "1.82.0"
version = "0.2.0"

[package.metadata.docs.rs]
cargo-args = ["-Z", "unstable-options", "-Z", "rustdoc-scrape-examples"]
features = ["random"]
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex.html"]

[profile.dev]
opt-level = 3

[profile.test]
opt-level = 3