Move the command lines helpers into different crates

This commit is contained in:
Clément Renault
2021-02-14 18:55:15 +01:00
parent d8f3421608
commit fecf3d6fc1
11 changed files with 142 additions and 48 deletions

16
search/Cargo.toml Normal file
View File

@ -0,0 +1,16 @@
[package]
name = "search"
version = "0.1.0"
authors = ["Clément Renault <clement@meilisearch.com>"]
edition = "2018"
[dependencies]
anyhow = "1.0.28"
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] }
heed = "0.10.5"
jemallocator = "0.3.2"
log = "0.4.11"
milli = { path = "../milli" }
serde_json = "1.0.59"
stderrlog = "0.5.0"
structopt = { version = "0.3.14", default-features = false }