MeiliSearch/milli/Cargo.toml

92 lines
2.5 KiB
TOML
Raw Normal View History

[package]
name = "milli"
edition = "2018"
publish = false
version.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
readme.workspace = true
# edition.workspace = true
license.workspace = true
[dependencies]
2022-03-14 17:00:53 +01:00
bimap = { version = "0.6.2", features = ["serde"] }
bincode = "1.3.3"
2022-10-04 11:29:39 +02:00
bstr = "1.0.1"
2022-03-14 17:00:53 +01:00
byteorder = "1.4.3"
2022-12-12 14:53:08 +01:00
charabia = { version = "0.7.0", default-features = false }
concat-arrays = "0.1.2"
2022-10-04 11:29:39 +02:00
crossbeam-channel = "0.5.6"
2023-02-14 13:12:42 +01:00
deserr = "0.4.1"
2022-10-04 11:29:39 +02:00
either = "1.8.0"
2022-06-02 15:46:44 +02:00
flatten-serde-json = { path = "../flatten-serde-json" }
2022-03-14 17:00:53 +01:00
fst = "0.4.7"
fxhash = "0.2.1"
2022-10-04 11:29:39 +02:00
geoutils = "0.5.1"
grenad = { version = "0.4.3", default-features = false, features = ["tempfile"] }
heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.5", default-features = false, features = ["lmdb", "sync-read-txn"] }
2022-04-12 11:22:36 +02:00
json-depth-checker = { path = "../json-depth-checker" }
2022-03-14 17:00:53 +01:00
levenshtein_automata = { version = "0.2.1", features = ["fst_automaton"] }
2022-10-04 11:29:39 +02:00
memmap2 = "0.5.7"
obkv = "0.2.0"
2022-10-04 11:29:39 +02:00
once_cell = "1.15.0"
ordered-float = "3.2.0"
rayon = "1.5.3"
roaring = "0.10.1"
rstar = { version = "0.9.3", features = ["serde"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = { version = "1.0.85", features = ["preserve_order"] }
2022-03-14 17:00:53 +01:00
slice-group-by = "0.3.0"
smallstr = { version = "0.3.0", features = ["serde"] }
2022-10-04 11:29:39 +02:00
smallvec = "1.10.0"
smartstring = "1.0.1"
2022-03-14 17:00:53 +01:00
tempfile = "3.3.0"
2022-10-04 11:29:39 +02:00
thiserror = "1.0.37"
time = { version = "0.3.15", features = ["serde-well-known", "formatting", "parsing", "macros"] }
2022-07-05 16:23:36 +02:00
uuid = { version = "1.1.2", features = ["v4"] }
filter-parser = { path = "../filter-parser" }
# documents words self-join
2022-10-04 11:29:39 +02:00
itertools = "0.10.5"
# logging
2022-10-04 11:29:39 +02:00
log = "0.4.17"
2022-03-14 17:00:53 +01:00
logging_timer = "1.1.0"
2021-10-21 11:05:16 +02:00
csv = "1.1.6"
[dev-dependencies]
2021-03-11 11:48:55 +01:00
big_s = "1.0.2"
2022-10-04 11:29:39 +02:00
insta = "1.21.0"
maplit = "1.0.2"
md5 = "0.7.0"
rand = {version = "0.8.5", features = ["small_rng"] }
[target.'cfg(fuzzing)'.dev-dependencies]
fuzzcheck = "0.12.1"
[features]
2022-09-08 12:19:44 +02:00
default = [ "charabia/default" ]
# Use POSIX semaphores instead of SysV semaphores in LMDB
# For more information on this feature, see heed's Cargo.toml
lmdb-posix-sem = ["heed/posix-sem"]
2022-09-08 12:19:44 +02:00
# allow chinese specialized tokenization
chinese = ["charabia/chinese"]
# allow hebrew specialized tokenization
hebrew = ["charabia/hebrew"]
# allow japanese specialized tokenization
japanese = ["charabia/japanese"]
2022-12-12 14:53:08 +01:00
japanese-transliteration = ["charabia/japanese-transliteration"]
# allow korean specialized tokenization
korean = ["charabia/korean"]
2022-09-08 12:19:44 +02:00
# allow thai specialized tokenization
thai = ["charabia/thai"]