2019-02-24 19:44:24 +01:00
|
|
|
[package]
|
|
|
|
name = "meilidb-core"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Kerollmops <renault.cle@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
byteorder = "1.3.1"
|
2019-04-18 13:58:35 +02:00
|
|
|
hashbrown = "0.2.2"
|
2019-02-24 19:44:24 +01:00
|
|
|
lazy_static = "1.2.0"
|
|
|
|
log = "0.4.6"
|
2019-02-25 18:24:46 +01:00
|
|
|
meilidb-tokenizer = { path = "../meilidb-tokenizer", version = "0.1.0" }
|
2019-02-24 19:44:24 +01:00
|
|
|
rayon = "1.0.3"
|
2019-05-21 18:02:14 +02:00
|
|
|
sdset = "0.3.2"
|
2019-03-29 17:28:54 +01:00
|
|
|
serde = { version = "1.0.88", features = ["derive"] }
|
2019-02-24 19:44:24 +01:00
|
|
|
slice-group-by = "0.2.4"
|
2019-04-19 18:27:57 +02:00
|
|
|
zerocopy = "0.2.2"
|
2019-02-24 19:44:24 +01:00
|
|
|
|
2019-04-08 16:16:31 +02:00
|
|
|
[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"]
|
|
|
|
|
2019-06-13 15:47:49 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.3"
|
|
|
|
|
2019-02-24 19:44:24 +01:00
|
|
|
[features]
|
|
|
|
i128 = ["byteorder/i128"]
|
2019-02-24 19:57:52 +01:00
|
|
|
nightly = ["hashbrown/nightly", "slice-group-by/nightly"]
|