numint 0.2.0

ODE solvers and numerical integration in Rust.
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 = "numint"
version = "0.2.0"
authors = ["Tamas Kis"]
build = false
exclude = [
    ".gitignore",
    ".github/",
    ".vscode/",
    "Cargo.lock",
    "book/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ODE solvers and numerical integration in Rust."
documentation = "https://docs.rs/numint"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamaskis/numint"

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

[features]
faer = [
    "dep:faer",
    "dep:faer-traits",
    "linalg-traits/faer",
    "linalg-traits/faer-traits",
]
nalgebra = [
    "dep:nalgebra",
    "linalg-traits/nalgebra",
]
ndarray = [
    "dep:ndarray",
    "linalg-traits/ndarray",
]

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

[dependencies.faer]
version = "0.24.0"
optional = true

[dependencies.faer-traits]
version = "0.24.0"
optional = true

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

[dependencies.nalgebra]
version = "0.34.1"
optional = true

[dependencies.ndarray]
version = "0.17.2"
optional = true

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

[dependencies.rootfinder]
version = "0.5.1"

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