You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
889B

  1. [package]
  2. name = "tantivy-cli"
  3. version = "0.7.0"
  4. authors = ["Paul Masurel <paul.masurel@gmail.com>"]
  5. description = """Command line interface for Tantivy, a search engine library."""
  6. documentation = "https://github.com/tantivy-search/tantivy-cli"
  7. homepage = "https://github.com/tantivy-search/tantivy-cli"
  8. repository = "https://github.com/tantivy-search/tantivy-cli"
  9. readme = "README.md"
  10. keywords = ["search", "information", "retrieval"]
  11. license = "MIT"
  12. [dependencies]
  13. time = "0.1"
  14. iron = "0.4"
  15. staticfile = "0.3"
  16. serde = "1.0"
  17. serde_derive = "1.0"
  18. serde_json = "1.0"
  19. persistent="0.2"
  20. clap = "2"
  21. ansi_term = "0.8"
  22. urlencoded = "0.4"
  23. mount = "0.2"
  24. chan = "0.1"
  25. bincode = "0.4"
  26. byteorder = "0.5"
  27. log = "0.3"
  28. futures = "0.1"
  29. env_logger = "0.3"
  30. tantivy = "0.7"
  31. [[bin]]
  32. name = "tantivy"
  33. path = "src/main.rs"
  34. [profile.release]
  35. opt-level = 3
  36. debug = true
  37. debug-assertions = false
  38. lto = true