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