Cargo.toml 543 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "tar-sha256"
  3. version = "0.1.0-a2"
  4. edition = "2021"
  5. license = "MIT"
  6. authors = ["secext2022 <secext2022@outlook.com>"]
  7. description = "Calculate sha256 of files in tar (like sha256sum)"
  8. repository = "https://github.com/fm-elpac/pmbb"
  9. keywords = ["tar", "sha256"]
  10. categories = ["command-line-utilities", "filesystem"]
  11. [dependencies]
  12. pm-bin = "^0.1.0-a1"
  13. tar = "^0.4.41"
  14. sha2 = "^0.10.8"
  15. base16ct = "^0.2.0"
  16. [build-dependencies]
  17. pm-bin = { version = "^0.1.0-a1", features = ["build"] }
  18. [features]
  19. default = ["base16ct/alloc"]