[package] name = "vecmat" version = "0.7.8" authors = ["Alexey Gerasev "] edition = "2021" description = "Low-dimensional vector algebra with min_const_generics support" documentation = "https://docs.rs/vecmat" homepage = "https://github.com/agerasev/vecmat-rs" repository = "https://github.com/agerasev/vecmat-rs" readme = "README.md" keywords = ["vector", "matrix", "math", "algebra", "min-const-generics"] categories = ["algorithms", "data-structures", "science", "no-std"] license = "MIT/Apache-2.0" [dependencies] num-traits = { version = "0.2", default-features = false, features = ["libm"] } num-complex = { version = "0.4", default-features = false, features = ["libm"] } num-integer = { version = "0.1", default-features = false } rand_ = { package = "rand", version = "0.8", optional = true } approx = { version = "0.5", optional = true } [dev-dependencies] rand_xorshift = "0.3" [features] default = ["std", "rand", "approx"] std = ["num-traits/std", "num-integer/std", "num-complex/std", "rand_/std", "approx/std"] rand = ["rand_", "num-complex/rand"] [package.metadata.docs.rs] features = ["std", "rand", "approx"]