mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-04 16:22:55 +00:00
Updates the requirements on [scoped-pool](https://github.com/reem/rust-scoped-pool) to permit the latest version. - [Release notes](https://github.com/reem/rust-scoped-pool/releases) - [Commits](https://github.com/reem/rust-scoped-pool/commits/1.0.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
81 lines
1.8 KiB
TOML
81 lines
1.8 KiB
TOML
[package]
|
|
name = "tantivy"
|
|
version = "0.8.0-dev"
|
|
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"]
|
|
|
|
[dependencies]
|
|
base64 = "0.10.0"
|
|
byteorder = "1.0"
|
|
lazy_static = "1"
|
|
regex = "1.0"
|
|
fst = {version="0.3", default-features=false}
|
|
fst-regex = { version="0.2" }
|
|
lz4 = {version="1.20", optional=true}
|
|
snap = {version="0.2"}
|
|
atomicwrites = {version="0.2.2", optional=true}
|
|
tempfile = "3.0"
|
|
log = "0.4"
|
|
combine = "3"
|
|
tempdir = "0.3"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
num_cpus = "1.2"
|
|
itertools = "0.7"
|
|
levenshtein_automata = {version="0.1", features=["fst_automaton"]}
|
|
bit-set = "0.5"
|
|
uuid = { version = "0.7", features = ["v4", "serde"] }
|
|
crossbeam = "0.5"
|
|
futures = "0.1"
|
|
futures-cpupool = "0.1"
|
|
owning_ref = "0.4"
|
|
stable_deref_trait = "1.0.0"
|
|
rust-stemmers = "1"
|
|
downcast = { version="0.9" }
|
|
matches = "0.1"
|
|
bitpacking = "0.5"
|
|
census = "0.1"
|
|
fnv = "1.0.6"
|
|
owned-read = "0.4"
|
|
failure = "0.1"
|
|
htmlescape = "0.3.1"
|
|
fail = "0.2"
|
|
scoped-pool = "1.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.6"
|
|
maplit = "1"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
debug-assertions = false
|
|
|
|
[profile.test]
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
|
|
[features]
|
|
# by default no-fail is disabled. We manually enable it when running test.
|
|
default = ["mmap", "no_fail"]
|
|
mmap = ["fst/mmap", "atomicwrites"]
|
|
lz4-compression = ["lz4"]
|
|
no_fail = ["fail/no_fail"]
|
|
unstable = [] # useful for benches.
|
|
|
|
[badges]
|
|
travis-ci = { repository = "tantivy-search/tantivy" }
|
|
|
|
|