hisab 1.3.0

Higher mathematics library — linear algebra, geometry, calculus, and numerical methods for 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"
rust-version = "1.89"
name = "hisab"
version = "1.3.0"
build = false
exclude = [
    ".claude/",
    ".github/",
    "docs/",
    "scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Higher mathematics library — linear algebra, geometry, calculus, and numerical methods for Rust"
homepage = "https://github.com/MacCracken/hisab"
documentation = "https://docs.rs/hisab"
readme = "README.md"
keywords = [
    "math",
    "geometry",
    "calculus",
    "linear-algebra",
    "numerical",
]
categories = [
    "mathematics",
    "science",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/hisab"

[features]
ai = [
    "dep:reqwest",
    "dep:tokio",
    "dep:serde_json",
]
autodiff = []
calc = []
default = [
    "transforms",
    "geo",
    "calc",
    "num",
]
full = [
    "transforms",
    "geo",
    "calc",
    "num",
    "autodiff",
    "interval",
    "symbolic",
    "tensor",
    "parallel",
    "ai",
    "logging",
]
geo = []
interval = []
logging = ["dep:tracing-subscriber"]
num = []
parallel = ["dep:rayon"]
symbolic = []
tensor = []
transforms = []

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

[[example]]
name = "basic_math"
path = "examples/basic_math.rs"
required-features = [
    "transforms",
    "geo",
    "calc",
    "num",
]

[[test]]
name = "integration"
path = "tests/integration.rs"
required-features = [
    "transforms",
    "geo",
    "calc",
    "num",
]

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
required-features = [
    "transforms",
    "geo",
    "calc",
    "num",
]

[dependencies.glam]
version = "0.29"
features = ["serde"]

[dependencies.rayon]
version = "1"
optional = true

[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
]
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]