mathr 0.1.1

Pure-Rust math library & CLI: symbolic differentiation, numerical integration, FFT, equation solving, matrix operations, statistics, number theory, ODE solvers, Taylor series, interpolation, special functions, LaTeX/TeX input, and plotting.
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.1"
authors = ["Ying Kit WONG"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust math library & CLI: symbolic differentiation, numerical integration, FFT, equation solving, matrix operations, statistics, number theory, ODE solvers, Taylor series, interpolation, special functions, LaTeX/TeX input, and plotting."
homepage = "https://github.com/yingkitw/mathr"
documentation = "https://docs.rs/mathr"
readme = "README.md"
keywords = [
    "math",
    "fft",
    "calculus",
    "symbolic",
    "numerical",
]
categories = [
    "mathematics",
    "science",
    "command-line-utilities",
]
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 = "calculus_demo"
path = "examples/calculus_demo.rs"

[[example]]
name = "debug_solve"
path = "examples/debug_solve.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 = "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 = "special_demo"
path = "examples/special_demo.rs"

[[example]]
name = "special_functions_demo"
path = "examples/special_functions_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.clap]
version = "4.5"
features = ["derive"]

[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