[package]
edition = "2024"
name = "rootfinder"
version = "0.5.1"
authors = ["Tamas Kis"]
build = false
exclude = [
".gitignore",
".github/",
".vscode/",
"Cargo.lock",
"book/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Root-finding methods for both univariate, scalar-valued functions and multivariate, vector-valued functions."
documentation = "https://docs.rs/rootfinder"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamaskis/rootfinder"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"src/docs-header.html",
]
[lib]
name = "rootfinder"
path = "src/lib.rs"
[dev-dependencies.numtest]
version = "0.4.1"