2020-12-12 13:32:06 +01:00
|
|
|
[package]
|
2020-12-22 14:02:41 +01:00
|
|
|
authors = ["Quentin de Quelen <quentin@dequelen.me>", "Clément Renault <clement@meilisearch.com>"]
|
2020-12-12 13:32:06 +01:00
|
|
|
description = "MeiliSearch HTTP server"
|
|
|
|
edition = "2018"
|
2020-12-22 14:02:41 +01:00
|
|
|
license = "MIT"
|
|
|
|
name = "meilisearch-http"
|
|
|
|
version = "0.17.0"
|
2020-12-12 13:32:06 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "meilisearch"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2020-12-22 14:02:41 +01:00
|
|
|
[build-dependencies]
|
|
|
|
vergen = "3.1.0"
|
2020-12-12 13:32:06 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-cors = "0.5.3"
|
|
|
|
actix-http = "2"
|
|
|
|
actix-rt = "1"
|
|
|
|
actix-service = "1.0.6"
|
|
|
|
actix-web = { version = "3.3.2", features = ["rustls"] }
|
2020-12-22 17:13:50 +01:00
|
|
|
anyhow = "1.0.36"
|
2020-12-23 13:52:28 +01:00
|
|
|
async-compression = { version = "0.3.6", features = ["gzip", "tokio-02"] }
|
2020-12-22 14:02:41 +01:00
|
|
|
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] }
|
2020-12-12 13:32:06 +01:00
|
|
|
bytes = "0.6.0"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
|
|
crossbeam-channel = "0.5.0"
|
|
|
|
env_logger = "0.8.2"
|
2020-12-22 17:13:50 +01:00
|
|
|
flate2 = "1.0.19"
|
2020-12-24 12:58:34 +01:00
|
|
|
fst = "0.4.5"
|
2020-12-12 13:32:06 +01:00
|
|
|
futures = "0.3.7"
|
2020-12-24 12:58:34 +01:00
|
|
|
futures-util = "0.3.8"
|
2020-12-22 17:13:50 +01:00
|
|
|
grenad = { git = "https://github.com/Kerollmops/grenad.git", rev = "3adcb26" }
|
|
|
|
heed = "0.10.6"
|
2020-12-12 13:32:06 +01:00
|
|
|
http = "0.2.1"
|
2020-12-22 14:02:41 +01:00
|
|
|
indexmap = { version = "1.3.2", features = ["serde-1"] }
|
2020-12-12 13:32:06 +01:00
|
|
|
log = "0.4.8"
|
|
|
|
main_error = "0.1.0"
|
2020-12-22 17:13:50 +01:00
|
|
|
meilisearch-error = { path = "../MeiliSearch/meilisearch-error" }
|
2020-12-24 12:58:34 +01:00
|
|
|
meilisearch-tokenizer = { git = "https://github.com/meilisearch/Tokenizer.git", branch = "main" }
|
|
|
|
memmap = "0.7.0"
|
2020-12-22 14:02:41 +01:00
|
|
|
milli = { path = "../milli" }
|
2020-12-12 13:32:06 +01:00
|
|
|
mime = "0.3.16"
|
|
|
|
once_cell = "1.5.2"
|
|
|
|
rand = "0.7.3"
|
2020-12-22 17:13:50 +01:00
|
|
|
rayon = "1.5.0"
|
2020-12-12 13:32:06 +01:00
|
|
|
regex = "1.4.2"
|
|
|
|
rustls = "0.18"
|
2020-12-22 14:02:41 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-12-12 13:32:06 +01:00
|
|
|
serde_json = { version = "1.0.59", features = ["preserve_order"] }
|
|
|
|
serde_qs = "0.8.1"
|
|
|
|
sha2 = "0.9.1"
|
|
|
|
siphasher = "0.3.2"
|
|
|
|
slice-group-by = "0.2.6"
|
|
|
|
structopt = "0.3.20"
|
|
|
|
tar = "0.4.29"
|
|
|
|
tempfile = "3.1.0"
|
2020-12-23 16:12:37 +01:00
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
2020-12-22 14:02:41 +01:00
|
|
|
ureq = { version = "1.5.1", default-features = false, features = ["tls"] }
|
2020-12-12 13:32:06 +01:00
|
|
|
walkdir = "2.3.1"
|
|
|
|
whoami = "1.0.0"
|
|
|
|
|
|
|
|
[dependencies.sentry]
|
|
|
|
default-features = false
|
2020-12-22 14:02:41 +01:00
|
|
|
features = ["with_client_implementation", "with_panic", "with_failure", "with_device_info", "with_rust_info", "with_reqwest_transport", "with_rustls", "with_env_logger"]
|
2020-12-12 13:32:06 +01:00
|
|
|
optional = true
|
2020-12-22 14:02:41 +01:00
|
|
|
version = "0.18.1"
|
|
|
|
|
2020-12-12 13:32:06 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_url_params = "0.2.0"
|
|
|
|
tempdir = "0.3.7"
|
2020-12-22 14:02:41 +01:00
|
|
|
assert-json-diff = { branch = "master", git = "https://github.com/qdequele/assert-json-diff" }
|
2020-12-23 16:12:37 +01:00
|
|
|
tokio = { version = "0.2", features = ["macros", "time"] }
|
2020-12-12 13:32:06 +01:00
|
|
|
|
2020-12-22 14:02:41 +01:00
|
|
|
[features]
|
|
|
|
default = ["sentry"]
|
2020-12-12 13:32:06 +01:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
jemallocator = "0.3.2"
|