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.

48 lines
968B

  1. [package]
  2. name = "tantivy-cli"
  3. version = "0.1.1"
  4. authors = ["Paul Masurel <paul.masurel@gmail.com>"]
  5. description = """Command line interface for Tantivy, a search engine library."""
  6. documentation = "https://github.com/fulmicoton/tantivy"
  7. homepage = "https://github.com/fulmicoton/tantivy"
  8. repository = "https://github.com/fulmicoton/tantivy"
  9. readme = "README.md"
  10. keywords = ["search", "information", "retrieval"]
  11. license = "MIT"
  12. [dependencies]
  13. tantivy = { path = "../tantivy" }
  14. #tantivy = "0.1.1"
  15. time = "0.1.34"
  16. iron = "0.4"
  17. staticfile = "0.3.0"
  18. rustc-serialize = "0.3.16"
  19. persistent="0.2.0"
  20. clap = "2"
  21. ansi_term = "0.8.0"
  22. urlencoded = "0.4"
  23. mount = "0.2.1"
  24. chan = "*"
  25. bincode = "*"
  26. byteorder = "*"
  27. log = "0.3"
  28. env_logger = "0.3"
  29. # [dependencies.clap]
  30. #version = "2"
  31. #default-features = false
  32. #features = [ "suggestions", "color" ]
  33. [[bin]]
  34. name = "tantivy"
  35. path = "src/main.rs"
  36. [profile.release]
  37. opt-level = 3
  38. debug = false
  39. lto = true
  40. debug-assertions = false