MeiliSearch/meilisearch-types/Cargo.toml

43 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "meilisearch-types"
version = "0.29.1"
authors = ["marin <postma.marin@protonmail.com>"]
2022-01-12 11:14:50 +01:00
edition = "2021"
[dependencies]
actix-web = { version = "4.2.1", default-features = false }
csv = "1.1.6"
either = { version = "1.6.1", features = ["serde"] }
enum-iterator = "1.1.3"
2022-10-13 15:02:59 +02:00
fst = "0.4.7"
2022-10-20 18:03:35 +02:00
milli = { git = "https://github.com/meilisearch/milli.git", branch = "indexation-abortion", default-features = false }
proptest = { version = "1.0.0", optional = true }
proptest-derive = { version = "0.3.0", optional = true }
roaring = { version = "0.10.0", features = ["serde"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
2022-10-12 16:10:28 +02:00
thiserror = "1.0.30"
2022-10-18 11:02:46 +02:00
time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] }
tokio = "1.0"
2022-10-12 03:21:25 +02:00
uuid = { version = "1.1.2", features = ["serde", "v4"] }
[dev-dependencies]
2022-10-20 18:03:35 +02:00
insta = "1.19.1"
meili-snap = { path = "../meili-snap" }
proptest = "1.0.0"
proptest-derive = "0.3.0"
[features]
2022-10-20 17:27:15 +02:00
# all specialized tokenizations
default = ["milli/default"]
2022-10-20 17:27:15 +02:00
# chinese specialized tokenization
chinese = ["milli/chinese"]
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"]
2022-10-20 17:27:15 +02:00
# thai specialized tokenization
thai = ["milli/thai"]
2022-10-20 17:27:15 +02:00
test-traits = ["proptest", "proptest-derive"]