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.

Cargo.toml 848B

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "tantivy-cli"
  3. version = "0.2.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. rustc-serialize = "0.3"
  17. persistent="0.2"
  18. clap = "2"
  19. ansi_term = "0.8"
  20. urlencoded = "0.4"
  21. mount = "0.2"
  22. chan = "0.1"
  23. bincode = "0.4"
  24. byteorder = "0.5"
  25. log = "0.3"
  26. env_logger = "0.3"
  27. tantivy = "0.2.0"
  28. [[bin]]
  29. name = "tantivy"
  30. path = "src/main.rs"
  31. [profile.release]
  32. opt-level = 3
  33. debug = false
  34. debug-assertions = false
  35. lto = true