Cargo.toml 747 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. # important information
  3. name = "kahlo"
  4. edition = "2021"
  5. version = "0.0.1"
  6. # package metadata
  7. authors = ["Kestrel <kestrel@flying-kestrel.ca"]
  8. repository = "https://git.flying-kestrel.ca/kestrel/kahlo-rs"
  9. description = "Optimized software rendering library."
  10. keywords = ["raster", "render", "paint", "graphics"]
  11. license = "BSD-4-Clause OR MIT"
  12. [features]
  13. warnslow = []
  14. # features specification for docs.rs
  15. [package.metadata.docs.rs]
  16. features = ["warnslow"]
  17. all-features = true
  18. [dependencies]
  19. euclid = { version = "0.22" }
  20. lazy_static = { version = "1.4" }
  21. [dev-dependencies]
  22. image = { version = "0.25.1", default-features = false, features = ["png", "jpeg"] }
  23. criterion = { version = "0.5" }
  24. rand = { version = "0.8" }
  25. hex = "0.4.0"