mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-06 17:22:54 +00:00
* Handle field names with any characters with a known set of special characters and an escape one * Update field name validation rule to check only if it has at least one character and does not start with `-` Closes #1087.
19 lines
682 B
TOML
19 lines
682 B
TOML
[package]
|
|
name = "tantivy-query-grammar"
|
|
version = "0.15.0"
|
|
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
|
|
license = "MIT"
|
|
categories = ["database-implementations", "data-structures"]
|
|
description = """Search engine library"""
|
|
documentation = "https://tantivy-search.github.io/tantivy/tantivy/index.html"
|
|
homepage = "https://github.com/tantivy-search/tantivy"
|
|
repository = "https://github.com/tantivy-search/tantivy"
|
|
readme = "README.md"
|
|
keywords = ["search", "information", "retrieval"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
combine = {version="4", default-features=false, features=[] }
|
|
once_cell = "1.7.2"
|
|
regex ={ version = "1.5.4", default-features = false, features = ["std"] }
|