Cargo.toml 622 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "image-tiler"
  3. version = "0.1.0"
  4. authors = ["Spencer Young"]
  5. edition = "2021"
  6. description = "Program to generate a larger image made up of different image tiles of the same size"
  7. license = "CC-BY-SA-4.0"
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. clap = { version = "4.4.3", features = ["derive", "wrap_help"] }
  11. config = "0.14.0"
  12. glob = "0.3.1"
  13. image = "0.25.0"
  14. itertools = "0.12.1"
  15. log = "0.4.20"
  16. ndarray = "0.15.6"
  17. rand = "0.8.5"
  18. [dev-dependencies]
  19. lazy_static = "1.4.0"
  20. random-string = "1.0.0"
  21. rstest = "0.18.2"
  22. tempfile = "3.8.0"