chore: Move index related things to the meilidb-core workspace member

This commit is contained in:
Clément Renault
2019-02-24 19:44:24 +01:00
parent 3056b351fa
commit 14790eeae3
44 changed files with 1343 additions and 252 deletions

21
meilidb-core/Cargo.toml Normal file
View File

@ -0,0 +1,21 @@
[package]
name = "meilidb-core"
version = "0.1.0"
authors = ["Kerollmops <renault.cle@gmail.com>"]
edition = "2018"
[dependencies]
byteorder = "1.3.1"
fst = "0.3.3"
hashbrown = "0.1.8"
lazy_static = "1.2.0"
levenshtein_automata = { version = "0.1.1", features = ["fst_automaton"] }
log = "0.4.6"
rayon = "1.0.3"
sdset = "0.3.1"
serde = "1.0.88"
serde_derive = "1.0.88"
slice-group-by = "0.2.4"
[features]
i128 = ["byteorder/i128"]