Cargo.toml 910 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "libimagruby"
  3. version = "0.1.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. [lib]
  13. crate-type = ["dylib"]
  14. [dependencies]
  15. ruru = "0.9"
  16. lazy_static = "0.2"
  17. log = "0.3"
  18. env_logger = "0.3"
  19. toml = "0.2"
  20. uuid = { version = "0.3", features = ["v4"] }
  21. [dependencies.libimagerror]
  22. path = "../libimagerror"
  23. [dependencies.libimagrt]
  24. path = "../libimagrt"
  25. [dependencies.libimagstore]
  26. path = "../libimagstore"
  27. [dependencies.libimagstorestdhook]
  28. path = "../libimagstorestdhook"
  29. [dependencies.libimagutil]
  30. path = "../libimagutil"