Cargo.toml 924 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "libimagdiary"
  3. version = "0.3.0"
  4. authors = ["Matthias Beyer <mail@beyermatthias.de>"]
  5. description = "Library for the imag core distribution"
  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. log = "0.3"
  15. semver = "0.5"
  16. toml = "0.4.*"
  17. toml-query = "0.3.*"
  18. regex = "0.1"
  19. itertools = "0.5"
  20. [dependencies.libimagstore]
  21. path = "../libimagstore"
  22. [dependencies.libimagerror]
  23. path = "../libimagerror"
  24. [dependencies.libimagutil]
  25. path = "../libimagutil"
  26. [dependencies.libimagrt]
  27. path = "../libimagrt"
  28. [dependencies.libimagentryedit]
  29. path = "../libimagentryedit"
  30. [dependencies.libimagentryview]
  31. path = "../libimagentryview"