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.

49 lines
931B

  1. [package]
  2. name = "tantivy-cli"
  3. version = "0.12.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. edition = "2018"
  13. [dependencies]
  14. time = "0.1"
  15. iron = "0.4"
  16. staticfile = "0.3"
  17. serde = "1.0"
  18. serde_derive = "1.0"
  19. serde_json = "1.0"
  20. persistent="0.2"
  21. clap = "2"
  22. ansi_term = "0.8"
  23. urlencoded = "0.4"
  24. mount = "0.2"
  25. chan = "0.1"
  26. bincode = "0.4"
  27. byteorder = "0.5"
  28. log = "0.3"
  29. futures = "0.1"
  30. env_logger = "0.3"
  31. tantivy = "0.12"
  32. [[bin]]
  33. name = "tantivy"
  34. path = "src/main.rs"
  35. [features]
  36. bench = []
  37. [profile.release]
  38. opt-level = 3
  39. debug = true
  40. debug-assertions = false
  41. lto = true