numdiff 0.5.0

Numerical differentiation via forward-mode automatic differentiation and finite difference approximations.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "numdiff"
version = "0.5.0"
authors = ["Tamas Kis"]
build = false
exclude = [
    ".gitignore",
    ".github/",
    ".vscode/",
    "Cargo.lock",
    "book/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Numerical differentiation via forward-mode automatic differentiation and finite difference approximations."
documentation = "https://docs.rs/numdiff"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamaskis/numdiff"

[package.metadata.docs.rs]
rustdoc-args = [
    "--html-in-header",
    "src/docs-header.html",
]
features = ["trig"]

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

[dependencies.linalg-traits]
version = "0.14.0"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.trig]
version = "0.3.1"
optional = true

[dev-dependencies.faer]
version = "0.24.0"

[dev-dependencies.linalg-traits]
version = "0.14.0"
features = [
    "nalgebra",
    "ndarray",
    "faer",
    "faer-traits",
]

[dev-dependencies.nalgebra]
version = "0.34.1"

[dev-dependencies.ndarray]
version = "0.17.2"

[dev-dependencies.numtest]
version = "0.4.0"