Cargo.toml 883 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "imag-store"
  3. version = "0.3.0"
  4. authors = ["Matthias Beyer <mail@beyermatthias.de>"]
  5. description = "Part of the imag core distribution: imag-store 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. clap = ">=2.17"
  14. log = "0.3"
  15. version = "2.0.1"
  16. semver = "0.5"
  17. toml = "^0.4"
  18. [dependencies.libimagstore]
  19. path = "../libimagstore"
  20. default-features = false
  21. features = ["verify"]
  22. [dependencies.libimagrt]
  23. path = "../libimagrt"
  24. [dependencies.libimagutil]
  25. path = "../libimagutil"
  26. [dependencies.libimagerror]
  27. path = "../libimagerror"
  28. [features]
  29. early-panic = [ "libimagstore/early-panic" ]