[package] name = "mathx" version = "0.4.1" edition = "2021" license-file = "LICENSE" authors = ["Paul Casanova "] description = "A mathematics library designed to work with no_std" repository = "https://github.com/Taco-Hell-Studios/mathx" homepage = "https://tacoheck.com/software/rust/mathx" documentation = "https://docs.rs/mathx/" keywords = [ "math", "no_std", "vector", "quaternion", "geometry" ] categories = [ "data-structures", "embedded", "mathematics", "no-std", "no-std::no-alloc", ] [features] default = [] no_std = [] no_vectors = [] no_quaternions = [] no_rays = [] no_colors = [] no_planes = [] serde = ["dep:serde"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0.160", optional = true, features = ["derive"] }