mathcore_nostd 0.3.2

Symbolic math library and computer algebra system for Rust. Forked to work in no_std environments.
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 = "mathcore_nostd"
version = "0.3.2"
authors = [
    "Mehmet Yilmaz <mehmet@nonanti.dev>",
    "simon0302010 <simon@hackclub.app>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Symbolic math library and computer algebra system for Rust. Forked to work in no_std environments."
readme = "README.md"
keywords = [
    "math",
    "symbolic",
    "algebra",
    "calculus",
    "cas",
]
categories = [
    "mathematics",
    "science",
]
license = "MIT"
repository = "https://github.com/simon0302010/mathcore_nostd"

[features]
wasm = [
    "wasm-bindgen",
    "getrandom",
]

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

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

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

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

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

[[bench]]
name = "expression_bench"
path = "benches/expression_bench.rs"

[dependencies.getrandom]
version = "0.2"
features = ["js"]
optional = true

[dependencies.indexmap]
version = "2.0"
default-features = false

[dependencies.nalgebra]
version = "0.32"
features = [
    "libm",
    "alloc",
]
default-features = false

[dependencies.nom]
version = "7.1"
features = ["alloc"]
default-features = false

[dependencies.num-bigint]
version = "0.4"
default-features = false

[dependencies.num-complex]
version = "0.4"
features = ["libm"]
default-features = false

[dependencies.num-rational]
version = "0.4"
features = ["num-bigint"]
default-features = false

[dependencies.num-traits]
version = "0.2"
features = ["libm"]
default-features = false

[dependencies.thiserror-no-std]
version = "2.0.2"

[dependencies.wasm-bindgen]
version = "0.2"
optional = true
default-features = false

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

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

[dev-dependencies.proptest]
version = "1.4"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]

[profile.bench]
inherits = "release"

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