Cargo.toml 867 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "imag"
  3. version = "0.3.0"
  4. authors = ["Matthias Beyer <mail@beyermatthias.de>"]
  5. description = "Part of the imag core distribution: imag command"
  6. keywords = ["imag", "PIM", "personal", "information", "management"]
  7. readme = "../README.md"
  8. license = "LGPL-2.1"
  9. documentation = "https://matthiasbeyer.github.io/imag/imag_documentation/index.html"
  10. repository = "https://github.com/matthiasbeyer/imag"
  11. homepage = "http://imag-pim.org"
  12. build = "build.rs"
  13. [build-dependencies]
  14. clap = ">=2.16.1"
  15. version = "2.0"
  16. libimagrt = { path = "../libimagrt" }
  17. libimagentrytag = { path = "../libimagentrytag" }
  18. libimagutil = { path = "../libimagutil" }
  19. [dependencies]
  20. version = "2.0"
  21. walkdir = "0.1"
  22. crossbeam = "0.2"
  23. clap = "2.*"
  24. log = "0.3"
  25. [dependencies.libimagrt]
  26. path = "../libimagrt"
  27. [dependencies.libimagerror]
  28. path = "../libimagerror"