lin_alg 1.3.14

Vector, matrix, and quaternion operations for general purposes
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"
name = "lin_alg"
version = "1.3.14"
authors = ["David O'Connor <the_alchemist@fastmail.com>"]
build = false
exclude = [".gitignore"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vector, matrix, and quaternion operations for general purposes"
documentation = "https://docs.rs/lin_alg"
readme = "README.md"
keywords = [
    "algebra",
    "vector",
    "matrix",
    "quaternion",
    "simd",
]
categories = [
    "algorithms",
    "mathematics",
    "algorithms",
    "no-std",
    "rendering",
]
license = "MIT"
repository = "https://github.com/David-OConnor/lin-alg"

[package.metadata.docs.rs]
features = [
    "std",
    "computer_graphics",
]

[features]
computer_graphics = []
cuda = ["cudarc"]
default = ["std"]
encode = ["bincode"]
no_std = ["num-traits/libm"]
std = ["num-traits/std"]

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

[dependencies.bincode]
version = "2.0.1"
optional = true

[dependencies.cudarc]
version = "0.19.0"
optional = true
default-features = false

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

[dependencies.paste]
version = "1.0.15"