77 lines
2.0 KiB
TOML
Raw Normal View History

[package]
name = "meilisearch-types"
publish = false
version.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
readme.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
2025-01-08 13:52:14 +01:00
actix-web = { version = "4.9.0", default-features = false }
anyhow = "1.0.95"
2024-11-07 16:04:23 +01:00
bumpalo = "3.16.0"
convert_case = "0.6.0"
2025-01-08 13:52:14 +01:00
csv = "1.3.1"
deserr = { version = "0.6.3", features = ["actix-web"] }
2024-07-08 18:09:12 +02:00
either = { version = "1.13.0", features = ["serde"] }
2024-07-08 18:31:15 +02:00
enum-iterator = "2.1.0"
file-store = { path = "../file-store" }
2025-01-08 13:52:14 +01:00
flate2 = "1.0.35"
2022-10-13 15:02:59 +02:00
fst = "0.4.7"
2025-01-08 13:52:14 +01:00
memmap2 = "0.9.5"
milli = { path = "../milli" }
2025-01-08 13:52:14 +01:00
bumparaw-collections = "0.1.4"
roaring = { version = "0.10.10", features = ["serde"] }
rustc-hash = "2.1.0"
2025-01-08 13:52:14 +01:00
serde = { version = "1.0.217", features = ["derive"] }
serde-cs = "0.2.4"
2025-01-08 13:52:14 +01:00
serde_json = "1.0.135"
tar = "0.4.43"
tempfile = "3.15.0"
thiserror = "1.0.69"
time = { version = "0.3.37", features = [
2024-06-04 09:54:30 +02:00
"serde-well-known",
"formatting",
"parsing",
"macros",
] }
2025-01-08 13:52:14 +01:00
tokio = "1.42"
utoipa = { version = "5.3.1", features = ["macros"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
[dev-dependencies]
2025-01-08 13:52:14 +01:00
insta = "1.42.0"
2022-10-20 18:03:35 +02:00
meili-snap = { path = "../meili-snap" }
[features]
2022-10-20 17:27:15 +02:00
# all specialized tokenizations
all-tokenizations = ["milli/all-tokenizations"]
2022-10-20 17:27:15 +02:00
# chinese specialized tokenization
chinese = ["milli/chinese"]
2024-04-18 11:38:26 +02:00
chinese-pinyin = ["milli/chinese-pinyin"]
2022-10-20 17:27:15 +02:00
# hebrew specialized tokenization
hebrew = ["milli/hebrew"]
2022-10-20 17:27:15 +02:00
# japanese specialized tokenization
japanese = ["milli/japanese"]
# korean specialized tokenization
korean = ["milli/korean"]
2022-10-20 17:27:15 +02:00
# thai specialized tokenization
thai = ["milli/thai"]
2023-04-26 14:58:32 +02:00
# allow greek specialized tokenization
greek = ["milli/greek"]
2023-10-26 17:01:10 +02:00
# allow khmer specialized tokenization
khmer = ["milli/khmer"]
2024-01-25 18:58:52 +01:00
# allow vietnamese specialized tokenization
vietnamese = ["milli/vietnamese"]
2024-04-30 14:30:23 +02:00
# force swedish character recomposition
swedish-recomposition = ["milli/swedish-recomposition"]
2024-09-25 11:03:17 +02:00
# allow german tokenization
2024-09-19 13:30:07 +02:00
german = ["milli/german"]
2024-09-25 11:03:17 +02:00
# allow turkish normalization
turkish = ["milli/turkish"]