2019-02-25 02:44:24 +08:00
|
|
|
[package]
|
|
|
|
name = "meilidb-core"
|
2019-10-31 00:34:33 +08:00
|
|
|
version = "0.5.11"
|
2019-10-09 23:23:48 +08:00
|
|
|
authors = ["Kerollmops <clement@meilisearch.com>"]
|
2019-02-25 02:44:24 +08:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-10-09 17:45:19 +08:00
|
|
|
arc-swap = "0.4.3"
|
2019-10-04 16:26:32 +08:00
|
|
|
bincode = "1.1.4"
|
|
|
|
byteorder = "1.3.2"
|
2019-10-07 22:16:04 +08:00
|
|
|
crossbeam-channel = "0.3.9"
|
2019-06-20 22:25:14 +08:00
|
|
|
deunicode = "1.0.0"
|
2019-10-07 22:16:04 +08:00
|
|
|
env_logger = "0.7.0"
|
2019-10-04 16:26:32 +08:00
|
|
|
hashbrown = { version = "0.6.0", features = ["serde"] }
|
2019-10-21 18:05:53 +08:00
|
|
|
heed = "0.1.0"
|
2019-10-07 22:16:04 +08:00
|
|
|
log = "0.4.8"
|
2019-10-31 00:34:33 +08:00
|
|
|
meilidb-schema = { path = "../meilidb-schema", version = "0.5.11" }
|
|
|
|
meilidb-tokenizer = { path = "../meilidb-tokenizer", version = "0.5.11" }
|
2019-10-04 16:26:32 +08:00
|
|
|
once_cell = "1.2.0"
|
|
|
|
ordered-float = { version = "1.0.2", features = ["serde"] }
|
2019-10-16 23:05:24 +08:00
|
|
|
sdset = "0.3.3"
|
2019-10-11 22:16:21 +08:00
|
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
|
|
serde_json = "1.0.41"
|
2019-10-04 16:26:32 +08:00
|
|
|
siphasher = "0.3.0"
|
2019-08-02 18:07:23 +08:00
|
|
|
slice-group-by = "0.2.6"
|
2019-09-18 00:50:44 +08:00
|
|
|
zerocopy = "0.2.8"
|
2019-02-25 02:44:24 +08:00
|
|
|
|
2019-04-08 22:16:31 +08:00
|
|
|
[dependencies.levenshtein_automata]
|
|
|
|
git = "https://github.com/Kerollmops/levenshtein-automata.git"
|
|
|
|
branch = "arc-byte-slice"
|
|
|
|
features = ["fst_automaton"]
|
|
|
|
|
2019-10-04 16:26:32 +08:00
|
|
|
[dependencies.fst]
|
|
|
|
git = "https://github.com/Kerollmops/fst.git"
|
|
|
|
branch = "arc-byte-slice"
|
2019-10-08 20:47:38 +08:00
|
|
|
|
2019-06-13 21:47:49 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
assert_matches = "1.3"
|
2019-10-08 20:47:38 +08:00
|
|
|
csv = "1.0.7"
|
2019-10-09 19:48:33 +08:00
|
|
|
indexmap = { version = "1.2.0", features = ["serde-1"] }
|
2019-10-08 20:47:38 +08:00
|
|
|
rustyline = { version = "5.0.0", default-features = false }
|
|
|
|
structopt = "0.3.2"
|
2019-10-08 21:22:36 +08:00
|
|
|
tempfile = "3.1.0"
|
2019-10-08 20:47:38 +08:00
|
|
|
termcolor = "1.0.4"
|
|
|
|
toml = "0.5.3"
|