[package]
edition = "2024"
rust-version = "1.90.0"
name = "hyperjet"
version = "1.9.0"
authors = [
"Joachim Moeyens <joachim@empyrean-dynamics.com>",
"Empyrean Dynamics",
]
build = false
include = [
"src/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
"docs/katex-header.html",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forward-mode automatic differentiation with const-generic, stack-allocated first-, second-, and third-order jets (Jet1/Jet2/Jet3) for gradients, Hessians, and third-order tensors"
homepage = "https://www.empyrean-dynamics.com"
documentation = "https://docs.rs/hyperjet"
readme = "README.md"
keywords = [
"autodiff",
"dual-numbers",
"hyperdual",
"jets",
"forward-mode",
]
categories = [
"mathematics",
"science",
"algorithms",
]
license = "BSD-3-Clause"
repository = "https://github.com/Empyrean-Dynamics/nolan"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"docs/katex-header.html",
]
[lib]
name = "hyperjet"
path = "src/lib.rs"
[dev-dependencies.criterion]
version = "0.4"
features = ["html_reports"]
[dev-dependencies.rusty-hook]
version = "^0.11.2"