Cargo.toml 449 B

1234567891011121314151617
  1. [package]
  2. name = "crabmail"
  3. version = "0.1.0"
  4. authors = ["alex wennerberg <[email protected]>"]
  5. edition = "2018"
  6. [features]
  7. default = []
  8. [dependencies]
  9. anyhow = "1.0.52"
  10. linkify = "0.8.0"
  11. # using my fork just to upstream patches faster.
  12. mail-builder = {git = "https://github.com/alexwennerberg/mail-builder"}
  13. mail-parser = {git = "https://github.com/Johann150/mail-parser", default-features=false}
  14. once_cell = "1.9.0"
  15. urlencoding = "2.1.0"