meilisearch/milli/Cargo.toml

135 lines
4.0 KiB
TOML
Raw Permalink 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]
bimap = { version = "0.6.3", features = ["serde"] }
bincode = "1.3.3"
2024-01-16 22:05:03 +08:00
bstr = "1.9.0"
bytemuck = { version = "1.14.0", features = ["extern_crate_alloc"] }
byteorder = "1.5.0"
2023-10-26 23:01:10 +08:00
charabia = { version = "0.8.5", default-features = false }
concat-arrays = "0.1.2"
2024-01-16 22:05:03 +08:00
crossbeam-channel = "0.5.11"
deserr = "0.6.1"
either = { version = "1.9.0", features = ["serde"] }
2022-06-02 21:46:44 +08:00
flatten-serde-json = { path = "../flatten-serde-json" }
2022-03-15 00:00:53 +08:00
fst = "0.4.7"
fxhash = "0.2.1"
2022-10-04 17:29:39 +08:00
geoutils = "0.5.1"
2023-11-01 20:55:18 +08:00
grenad = { version = "0.4.5", default-features = false, features = [
"rayon",
"tempfile",
2023-05-15 17:42:30 +08:00
] }
2023-11-27 18:52:22 +08:00
heed = { version = "0.20.0-alpha.9", default-features = false, features = [
"serde-json",
"serde-bincode",
"read-txn-no-tls",
2023-05-15 17:42:30 +08:00
] }
2024-01-16 22:05:03 +08:00
indexmap = { version = "2.1.0", features = ["serde"] }
2022-04-12 17:22:36 +08:00
json-depth-checker = { path = "../json-depth-checker" }
2022-03-15 00:00:53 +08:00
levenshtein_automata = { version = "0.2.1", features = ["fst_automaton"] }
2023-08-09 18:02:13 +08:00
memmap2 = "0.7.1"
2024-01-16 22:05:03 +08:00
obkv = "0.2.1"
once_cell = "1.19.0"
2024-01-16 22:15:54 +08:00
ordered-float = "4.2.0"
rand_pcg = { version = "0.3.1", features = ["serde1"] }
2024-01-16 22:05:03 +08:00
rayon = "1.8.0"
roaring = "0.10.2"
2023-08-09 18:06:02 +08:00
rstar = { version = "0.11.0", features = ["serde"] }
2024-01-16 22:05:03 +08:00
serde = { version = "1.0.195", features = ["derive"] }
serde_json = { version = "1.0.111", features = ["preserve_order"] }
slice-group-by = "0.3.1"
2023-05-15 17:42:30 +08:00
smallstr = { version = "0.3.0", features = ["serde"] }
2024-01-16 22:05:03 +08:00
smallvec = "1.12.0"
smartstring = "1.0.1"
2024-01-16 22:05:03 +08:00
tempfile = "3.9.0"
thiserror = "1.0.56"
time = { version = "0.3.31", features = [
2023-05-15 17:42:30 +08:00
"serde-well-known",
"formatting",
"parsing",
"macros",
] }
2024-01-16 22:05:03 +08:00
uuid = { version = "1.6.1", features = ["v4"] }
filter-parser = { path = "../filter-parser" }
# documents words self-join
2023-08-09 17:50:24 +08:00
itertools = "0.11.0"
# profiling
puffin = "0.16.0"
# logging
2022-03-15 00:00:53 +08:00
logging_timer = "1.1.0"
2024-01-16 22:05:03 +08:00
csv = "1.3.0"
candle-core = { git = "https://github.com/huggingface/candle.git", version = "0.3.1" }
candle-transformers = { git = "https://github.com/huggingface/candle.git", version = "0.3.1" }
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "0.3.1" }
tokenizers = { git = "https://github.com/huggingface/tokenizers.git", tag = "v0.14.1", version = "0.14.1", default_features = false, features = ["onig"] }
hf-hub = { git = "https://github.com/dureuill/hf-hub.git", branch = "rust_tls", default_features = false, features = [
"online",
] }
2024-01-16 22:05:03 +08:00
tokio = { version = "1.35.1", features = ["rt"] }
futures = "0.3.30"
reqwest = { version = "0.11.23", features = [
"rustls-tls",
"json",
], default-features = false }
2024-01-16 22:05:03 +08:00
tiktoken-rs = "0.5.8"
liquid = "0.26.4"
2024-01-16 23:45:55 +08:00
arroy = "0.2.0"
2023-12-07 20:33:15 +08:00
rand = "0.8.5"
2024-01-23 16:42:48 +08:00
tracing = "0.1.40"
[dev-dependencies]
2024-01-16 22:05:03 +08:00
mimalloc = { version = "0.1.39", default-features = false }
2021-03-11 18:48:55 +08:00
big_s = "1.0.2"
2024-01-16 22:05:03 +08:00
insta = "1.34.0"
maplit = "1.0.2"
md5 = "0.7.0"
2023-09-18 15:59:38 +08:00
meili-snap = { path = "../meili-snap" }
2023-05-15 17:42:30 +08:00
rand = { version = "0.8.5", features = ["small_rng"] }
[features]
2024-01-23 16:42:48 +08:00
all-tokenizations = ["charabia/chinese", "charabia/hebrew", "charabia/japanese", "charabia/thai", "charabia/korean", "charabia/greek", "charabia/khmer"]
2022-09-08 18:19:44 +08:00
# 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 18:19:44 +08: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 21:53:08 +08:00
japanese-transliteration = ["charabia/japanese-transliteration"]
# allow korean specialized tokenization
korean = ["charabia/korean"]
2022-09-08 18:19:44 +08:00
# allow thai specialized tokenization
thai = ["charabia/thai"]
2023-04-26 20:56:54 +08:00
# allow greek specialized tokenization
2023-04-26 20:58:32 +08:00
greek = ["charabia/greek"]
2023-10-26 23:01:10 +08:00
# allow khmer specialized tokenization
khmer = ["charabia/khmer"]
2024-01-08 04:27:29 +08:00
2024-01-22 17:13:27 +08:00
# allow CUDA support, see <https://github.com/meilisearch/meilisearch/issues/4306>
2024-01-08 04:27:29 +08:00
cuda = ["candle-core/cuda"]