mathr 0.1.8

Rust math library and CLI calculator for symbolic differentiation, integration, FFT, linear algebra (LU, Cholesky, SVD), equation solving, ODE solvers, number theory, special functions, LaTeX input, plotting, and a Jupyter-like web notebook with KaTeX rendering.
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 = "2021"
name = "mathr"
version = "0.1.8"
authors = ["Ying Kit WONG"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust math library and CLI calculator for symbolic differentiation, integration, FFT, linear algebra (LU, Cholesky, SVD), equation solving, ODE solvers, number theory, special functions, LaTeX input, plotting, and a Jupyter-like web notebook with KaTeX rendering."
homepage = "https://github.com/yingkitw/mathr"
documentation = "https://docs.rs/mathr"
readme = "README.md"
keywords = [
    "math",
    "calculus",
    "symbolic",
    "linear-algebra",
    "numerical",
]
categories = [
    "mathematics",
    "science",
    "command-line-utilities",
    "visualization",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/mathr"

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

[[bin]]
name = "mathr"
path = "src/main.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.bigdecimal]
version = "0.4"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.num-bigint]
version = "0.4"

[dependencies.num-integer]
version = "0.1"

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

[dependencies.plotters]
version = "0.3"

[dependencies.rustyline]
version = "14.0"
features = ["derive"]

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.approx]
version = "0.5"

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1