mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 04:28:55 +01:00
35 lines
817 B
TOML
35 lines
817 B
TOML
[package]
|
|
name = "meilidb-core"
|
|
version = "0.1.0"
|
|
authors = ["Kerollmops <renault.cle@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteorder = "1.3.1"
|
|
deunicode = "1.0.0"
|
|
hashbrown = "0.6.0"
|
|
lazy_static = "1.2.0"
|
|
log = "0.4.6"
|
|
meilidb-tokenizer = { path = "../meilidb-tokenizer", version = "0.1.0" }
|
|
rayon = "1.2.0"
|
|
sdset = "0.3.2"
|
|
serde = { version = "1.0.88", features = ["derive"] }
|
|
slice-group-by = "0.2.6"
|
|
zerocopy = "0.2.8"
|
|
|
|
[dependencies.fst]
|
|
git = "https://github.com/Kerollmops/fst.git"
|
|
branch = "arc-byte-slice"
|
|
|
|
[dependencies.levenshtein_automata]
|
|
git = "https://github.com/Kerollmops/levenshtein-automata.git"
|
|
branch = "arc-byte-slice"
|
|
features = ["fst_automaton"]
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3"
|
|
|
|
[features]
|
|
i128 = ["byteorder/i128"]
|
|
nightly = ["hashbrown/nightly", "slice-group-by/nightly"]
|