MeiliSearch/meilidb-core/Cargo.toml

47 lines
1.2 KiB
TOML
Raw Normal View History

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