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.

51 lines
959B

  1. [package]
  2. name = "tantivy-cli"
  3. version = "0.5.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. version = "2"
  31. tantivy = "0.5.0"
  32. [[bin]]
  33. name = "tantivy"
  34. path = "src/main.rs"
  35. [profile.release]
  36. opt-level = 3
  37. debug = false
  38. debug-assertions = false
  39. lto = true
  40. [features]
  41. default = ["tantivy/simdcompression"]