rustad 0.0.0

A rust Automatic Differentiation library
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 = "rustad"
version = "0.0.0"
authors = ["Bradley M. Bell"]
build = false
include = [
    "/src",
    "!/src/bin",
    "/examples",
    "/tests",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust Automatic Differentiation library"
readme = "readme.md"
keywords = [
    "auto",
    "differentiation",
    "derivative",
    "AD",
    "machine-learning",
]
categories = ["development-tools"]
license = "EPL-2.0 OR GPL-2.0-or-later"
repository = "https://github.com/bradbell/rustad"

[package.metadata.docs.rs]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[badges.maintenance]
status = "expermental"

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

[[example]]
name = "atom"
path = "examples/atom/main.rs"

[[example]]
name = "checkpoint"
path = "examples/checkpoint.rs"

[[example]]
name = "hessian"
path = "examples/hessian.rs"

[[example]]
name = "rust_src"
path = "examples/rust_src.rs"

[[test]]
name = "add_op"
path = "tests/add_op.rs"

[[test]]
name = "compound"
path = "tests/compound.rs"

[[test]]
name = "mul_op"
path = "tests/mul_op.rs"

[[test]]
name = "year_month_day"
path = "tests/year_month_day.rs"

[dependencies.paste]
version = "1.0.15"