[dependencies.approx]
version = "0.5.1"
[dependencies.na033]
optional = true
package = "nalgebra"
version = "~0.33"
[dependencies.na034]
optional = true
package = "nalgebra"
version = "~0.34"
[features]
nalgebra_033 = ["na033"]
nalgebra_034 = ["na034"]
[lib]
name = "vectorama"
path = "src/lib.rs"
[package]
authors = ["David Cohen <dacohen@pm.me>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Very simple linear algebra library for Rust"
documentation = "https://docs.rs/vectorama"
edition = "2024"
keywords = ["math", "vector", "quaternion", "matrix"]
license = "MIT OR Apache-2.0"
name = "vectorama"
readme = "README.md"
repository = "https://github.com/osimarr/vectorama"
version = "0.1.1"
[package.metadata]
exclude = ["/.github", "/tests", "*.yml"]
[[test]]
name = "matrix_tests"
path = "tests/matrix_tests.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "quaternion_tests"
path = "tests/quaternion_tests.rs"
[[test]]
name = "scale_tests"
path = "tests/scale_tests.rs"
[[test]]
name = "translation_tests"
path = "tests/translation_tests.rs"
[[test]]
name = "vector2_tests"
path = "tests/vector2_tests.rs"
[[test]]
name = "vector3_tests"
path = "tests/vector3_tests.rs"
[[test]]
name = "vector4_tests"
path = "tests/vector4_tests.rs"