[package] name = "lin-alg2" version = "0.1.0" authors = ["David O'Connor "] description = "Vector and quaternion operations for general purposes" keywords = ["math", "vectors", "quaternions", "graphics"] categories = [ "algorithms", "graphics", "mathematics", "no-std", ] repository = "https://github.com/David-OConnor/lin-alg" documentation = "https://docs.rs/lin-alg2" readme = "README.md" license = "MIT" exclude = [".gitignore"] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] num-traits = { version = "^0.2.15", optional = true, default-features = false } [features] no_std = ["num-traits/libm"] # The `computer_graphics` feature enables projection matrices, # and other operations used in computer graphics. computer_graphics = []