Cargo.toml 383 B

1234567891011121314151617
  1. [package]
  2. name = "lineal"
  3. authors = ["Felix Bytow <drako@drako.guru>"]
  4. description = "LINEar ALgebra"
  5. license = "MIT"
  6. repository = "https://git.drako.guru/drako/lineal-rs"
  7. readme = "README.md"
  8. version = "0.4.0"
  9. edition = "2021"
  10. publish = ["crates-drako-guru"]
  11. [features]
  12. default = ["complex", "quaternion", "matrix", "angular"]
  13. complex = []
  14. quaternion = []
  15. matrix = []
  16. angular = []