|
- [package]
- name = "tantivy-cli"
- version = "0.1.1"
- authors = ["Paul Masurel <paul.masurel@gmail.com>"]
-
- description = """Command line interface for Tantivy, a search engine library."""
- documentation = "https://github.com/fulmicoton/tantivy"
- homepage = "https://github.com/fulmicoton/tantivy"
- repository = "https://github.com/fulmicoton/tantivy"
-
- readme = "README.md"
- keywords = ["search", "information", "retrieval"]
- license = "MIT"
-
- [dependencies]
- tantivy = { path = "../tantivy" }
- #tantivy = "0.1.1"
- time = "0.1.34"
- iron = "0.4"
- staticfile = "0.3.0"
- rustc-serialize = "0.3.16"
- persistent="0.2.0"
- clap = "2"
- ansi_term = "0.8.0"
- urlencoded = "0.4"
- mount = "0.2.1"
- chan = "*"
- bincode = "*"
- byteorder = "*"
- log = "0.3"
- env_logger = "0.3"
-
- # [dependencies.clap]
- #version = "2"
- #default-features = false
- #features = [ "suggestions", "color" ]
-
- [[bin]]
- name = "tantivy"
- path = "src/main.rs"
-
-
- [profile.release]
- opt-level = 3
- debug = false
- lto = true
- debug-assertions = false
|