[package] name = "matrix-math" version = "0.1.1" edition = "2021" description = "A Rust library for Mathematical matrices." keywords = ["matrix", "math"] homepage = "https://github.com/1kill2steal/matrix-rs" repository = "https://github.com/1kill2steal/matrix-rs" license = "MIT" readme = "README.md" include = ["src/**/*", "LICENSE.md", "README.md"] [dependencies] clap = { version = "^4.5.4", features = ["derive"] } num-traits = "^0.2.19" thiserror = "^1.0.61" serde = { version = "1.0.201", features = ["derive"], optional = true } [features] serde = ["dep:serde"]