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 1014B

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "tantivy-cli"
  3. version = "0.4.0-alpha"
  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.3.1"
  32. tantivy = { path="../tantivy", branch="master" }
  33. [[bin]]
  34. name = "tantivy"
  35. path = "src/main.rs"
  36. [profile.release]
  37. opt-level = 3
  38. debug = false
  39. debug-assertions = false
  40. lto = true
  41. [features]
  42. default = ["tantivy/simdcompression"]