[package] name = "al-jabr" version = "0.6.4" authors = ["Matthew Plant ", "Øystein Hovind "] edition = "2021" description = "An n-dimensional linear algebra library." license = "MIT/Apache-2.0" documentation = "https://docs.rs/crate/al-jabr" homepage = "https://github.com/maplant/al-jabr" repository = "https://github.com/maplant/al-jabr" readme = "README.md" keywords = [ "linear", "algebra", "matrix", "vector", "math" ] [lib] name = "al_jabr" [dependencies] paste = { version = "0.1" } mint = { version = "0.5", optional = true } rand = { version = "0.8", optional = true } serde = { version = "1", features = ["derive"], optional = true } approx = { version = "0.5", optional = true } [features] default = [] [[test]] name = "serde_tests" path = "tests/serde_tests.rs" required-features = ["serde"] [dev-dependencies] serde_json = "1" approx = "0.5" [package.metadata.docs.rs] # No need to clutter docs.rs with the mint converters. features = [ "serde", "rand" ]