Cargo.toml 505 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. name = "curveipo"
  4. description = "2D curve interpolation"
  5. version = "1.0.0"
  6. edition = "2021"
  7. authors = ["Michael Büsch <m@bues.ch>"]
  8. license = "MIT OR Apache-2.0"
  9. readme = "README.md"
  10. repository = "https://bues.ch/cgit/curveipors.git"
  11. categories = ["algorithms", "no-std"]
  12. keywords = ["2D", "vector", "curve", "interpolation"]
  13. [dev-dependencies]
  14. float_eq = "1"
  15. # vim: ts=4 sw=4 expandtab