[package]
edition = "2024"
rust-version = "1.85"
name = "scivex-optim"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scivex — Optimization, root finding, and numerical integration"
homepage = "https://github.com/scivex/scivex"
readme = "README.md"
keywords = [
"optimization",
"minimization",
"numerical-methods",
"ode",
"scientific-computing",
]
categories = [
"science",
"mathematics",
]
license = "MIT"
repository = "https://github.com/scivex/scivex"
[features]
serde-support = [
"dep:serde",
"scivex-core/serde-support",
]
[lib]
name = "scivex_optim"
path = "src/lib.rs"
[dependencies.scivex-core]
version = "0.1.1"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
many_single_char_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"