Cargo.toml 944 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.2"
  14. log = "0.3"
  15. semver = "0.5"
  16. toml = "0.4.*"
  17. toml-query = "0.1.*"
  18. regex = "0.1"
  19. lazy_static = "0.2"
  20. itertools = "0.5"
  21. [dependencies.libimagstore]
  22. path = "../libimagstore"
  23. [dependencies.libimagerror]
  24. path = "../libimagerror"
  25. [dependencies.libimagutil]
  26. path = "../libimagutil"
  27. [dependencies.libimagrt]
  28. path = "../libimagrt"
  29. [dependencies.libimagentryedit]
  30. path = "../libimagentryedit"
  31. [dependencies.libimagentryview]
  32. path = "../libimagentryview"