Blob tique/Cargo.toml
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
[package]
name = "tique"
version = "0.4.0"
license = "MIT"
description = "Utilities to drive a tantivy search index"
keywords = ["search", "pagination", "dismax", "collector", "similarity"]
repository = "https://github.com/caio/cantine/"
homepage = "https://github.com/caio/cantine/tree/master/tique"
authors = ["Caio Romão <contact@caio.co>"]
readme = "README.markdown"
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
queryparser = ["nom"]
[dependencies]
tantivy = "0.12"
nom = { version = "5", optional = true }
[dev-dependencies]
quickcheck = "0.9"
|