mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-01-06 17:22:54 +00:00
70 lines
1.5 KiB
TOML
70 lines
1.5 KiB
TOML
[package]
|
|
name = "tantivy"
|
|
version = "0.5.0-dev"
|
|
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
|
|
build = "build.rs"
|
|
license = "MIT"
|
|
categories = ["database-implementations", "data-structures"]
|
|
description = """Tantivy is a 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]
|
|
byteorder = "1.0"
|
|
lazy_static = "0.2.1"
|
|
tinysegmenter = "0.1.0"
|
|
regex = "0.2"
|
|
fst = "0.2"
|
|
atomicwrites = "0.1.3"
|
|
tempfile = "2.1"
|
|
log = "0.3.6"
|
|
combine = "2.2"
|
|
tempdir = "0.3"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
libc = { version = "0.2.20", optional=true }
|
|
num_cpus = "1.2"
|
|
itertools = "0.5.9"
|
|
lz4 = "1.20"
|
|
bit-set = "0.4.0"
|
|
time = "0.1"
|
|
uuid = { version = "0.5", features = ["v4", "serde"] }
|
|
chan = "0.1"
|
|
crossbeam = "0.3"
|
|
futures = "0.1"
|
|
futures-cpupool = "0.1"
|
|
error-chain = "0.8"
|
|
owning_ref = "0.3"
|
|
stable_deref_trait = "1.0.0"
|
|
rust-stemmers = "0.1.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.3"
|
|
env_logger = "0.4"
|
|
|
|
[build-dependencies]
|
|
cc = { version="1.0.0", optional=true }
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
lto = true
|
|
debug-assertions = false
|
|
|
|
|
|
[features]
|
|
default = ["simdcompression"]
|
|
simdcompression = ["libc", "cc"]
|
|
streamdict = []
|
|
|
|
|
|
[badges]
|
|
travis-ci = { repository = "tantivy-search/tantivy" }
|