MeiliSearch/milli/Cargo.toml

59 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "milli"
2021-07-05 10:54:53 +02:00
version = "0.7.2"
authors = ["Kerollmops <clement@meilisearch.com>"]
edition = "2018"
[dependencies]
2021-02-20 21:15:44 +01:00
bstr = "0.2.15"
byteorder = "1.4.2"
2021-03-11 18:32:04 +01:00
chrono = { version = "0.4.19", features = ["serde"] }
2021-02-20 21:15:44 +01:00
csv = "1.1.5"
either = "1.6.1"
2021-02-20 21:15:44 +01:00
flate2 = "1.0.20"
fst = "0.4.5"
fxhash = "0.2.1"
grenad = { git = "https://github.com/Kerollmops/grenad.git", rev = "3adcb26" }
heed = { git = "https://github.com/Kerollmops/heed", tag = "v0.12.1", default-features = false, features = ["lmdb", "sync-read-txn"] }
human_format = "1.0.3"
levenshtein_automata = { version = "0.2.0", features = ["fst_automaton"] }
2021-02-20 21:15:44 +01:00
linked-hash-map = "0.5.4"
2021-06-30 18:41:35 +02:00
meilisearch-tokenizer = { git = "https://github.com/meilisearch/Tokenizer.git", tag = "v0.2.3" }
memmap = "0.7.0"
2021-02-20 21:15:44 +01:00
obkv = "0.1.1"
once_cell = "1.5.2"
ordered-float = "2.1.1"
rayon = "1.5.0"
regex = "1.4.3"
2021-04-21 11:53:07 +02:00
roaring = "0.6.6"
2021-02-20 21:15:44 +01:00
serde = { version = "1.0.123", features = ["derive"] }
serde_json = { version = "1.0.62", features = ["preserve_order"] }
slice-group-by = "0.2.6"
smallstr = { version = "0.2.0", features = ["serde"] }
2021-02-20 21:15:44 +01:00
smallvec = "1.6.1"
tempfile = "3.2.0"
uuid = { version = "0.8.2", features = ["v4"] }
# facet filter parser
pest = { git = "https://github.com/pest-parser/pest.git", rev = "51fd1d49f1041f7839975664ef71fe15c7dcaf67" }
pest_derive = "2.1.0"
# documents words self-join
2021-02-20 21:15:44 +01:00
itertools = "0.10.0"
# logging
2021-02-20 21:15:44 +01:00
log = "0.4.14"
logging_timer = "1.0.0"
# We temporarily depend on this crate just to fix this issue
# https://github.com/bheisler/TinyTemplate/pull/17
tinytemplate = "=1.1.0"
[dev-dependencies]
2021-03-11 11:48:55 +01:00
big_s = "1.0.2"
maplit = "1.0.2"
rand = "0.8.3"
[features]
default = []