numeris 0.2.2

Pure-Rust numerical algorithms library — no-std compatible
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"
rust-version = "1.70"
name = "numeris"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust numerical algorithms library — no-std compatible"
documentation = "https://docs.rs/numeris"
readme = "README.md"
keywords = [
    "math",
    "matrix",
    "linear-algebra",
    "ode",
    "quaternion",
]
categories = [
    "mathematics",
    "no-std",
    "science",
]
license = "MIT"
repository = "https://github.com/ssmichael1/numeris"

[package.metadata.docs.rs]
all-features = true

[features]
all = [
    "std",
    "ode",
    "optim",
    "control",
    "complex",
]
alloc = []
complex = ["dep:num-complex"]
control = []
default = [
    "std",
    "ode",
]
libm = [
    "num-traits/libm",
    "num-complex?/libm",
]
ode = []
optim = []
std = [
    "alloc",
    "num-traits/std",
    "num-complex?/std",
]

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

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

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

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

[profile.test]
opt-level = 3