Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "imag-diary"
  3. version = "0.3.0"
  4. authors = ["Matthias Beyer <mail@beyermatthias.de>"]
  5. description = "Part of the imag core distribution: imag-diary 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. [dependencies]
  13. chrono = "0.4"
  14. version = "2.0"
  15. clap = "2.*"
  16. log = "0.3"
  17. [dependencies.libimagrt]
  18. path = "../libimagrt"
  19. [dependencies.libimagdiary]
  20. path = "../libimagdiary"
  21. [dependencies.libimagentryedit]
  22. path = "../libimagentryedit"
  23. [dependencies.libimagentrylist]
  24. path = "../libimagentrylist"
  25. [dependencies.libimagerror]
  26. path = "../libimagerror"
  27. [dependencies.libimaginteraction]
  28. path = "../libimaginteraction"
  29. [dependencies.libimagutil]
  30. path = "../libimagutil"
  31. [dependencies.libimagstore]
  32. path = "../libimagstore"
  33. [dependencies.libimagtimeui]
  34. path = "../libimagtimeui"