2021-03-10 13:46:49 +01:00
|
|
|
[package]
|
|
|
|
authors = ["Quentin de Quelen <quentin@dequelen.me>", "Clément Renault <clement@meilisearch.com>"]
|
|
|
|
description = "MeiliSearch HTTP server"
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
name = "meilisearch-http"
|
2021-03-16 19:54:34 +01:00
|
|
|
version = "0.21.0-alpha.1"
|
2021-03-10 13:46:49 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "meilisearch"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
vergen = "3.1.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-15 17:40:20 +01:00
|
|
|
actix-cors = { git = "https://github.com/MarinPostma/actix-extras.git", rev = "8f7b1fd" }
|
2021-03-10 13:46:49 +01:00
|
|
|
actix-http = { version = "3.0.0-beta.4", features = ["cookies"] }
|
|
|
|
actix-service = "2.0.0-beta.4"
|
|
|
|
actix-web = { version = "4.0.0-beta.4", features = ["rustls", "cookies"] }
|
|
|
|
anyhow = "1.0.36"
|
|
|
|
async-compression = { version = "0.3.6", features = ["gzip", "tokio-02"] }
|
2021-03-15 14:29:30 +01:00
|
|
|
async-stream = "0.3.0"
|
|
|
|
async-trait = "0.1.42"
|
2021-03-10 13:46:49 +01:00
|
|
|
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] }
|
|
|
|
bytes = "0.6.0"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
|
|
crossbeam-channel = "0.5.0"
|
2021-03-15 14:29:30 +01:00
|
|
|
dashmap = "4.0.2"
|
|
|
|
either = "1.6.1"
|
2021-03-10 13:46:49 +01:00
|
|
|
env_logger = "0.8.2"
|
|
|
|
flate2 = "1.0.19"
|
|
|
|
fst = "0.4.5"
|
|
|
|
futures = "0.3.7"
|
|
|
|
futures-util = "0.3.8"
|
|
|
|
grenad = { git = "https://github.com/Kerollmops/grenad.git", rev = "3adcb26" }
|
|
|
|
heed = "0.10.6"
|
|
|
|
http = "0.2.1"
|
|
|
|
indexmap = { version = "1.3.2", features = ["serde-1"] }
|
2021-03-15 14:29:30 +01:00
|
|
|
itertools = "0.10.0"
|
2021-03-10 13:46:49 +01:00
|
|
|
log = "0.4.8"
|
|
|
|
main_error = "0.1.0"
|
|
|
|
meilisearch-error = { path = "../meilisearch-error" }
|
|
|
|
meilisearch-tokenizer = { git = "https://github.com/meilisearch/Tokenizer.git", branch = "main" }
|
|
|
|
memmap = "0.7.0"
|
2021-03-15 14:26:59 +01:00
|
|
|
milli = { git = "https://github.com/meilisearch/milli.git", rev = "b7b23cd" }
|
2021-03-10 13:46:49 +01:00
|
|
|
mime = "0.3.16"
|
|
|
|
once_cell = "1.5.2"
|
2021-03-15 14:29:30 +01:00
|
|
|
parking_lot = "0.11.1"
|
2021-03-10 13:46:49 +01:00
|
|
|
rand = "0.7.3"
|
|
|
|
rayon = "1.5.0"
|
|
|
|
regex = "1.4.2"
|
|
|
|
rustls = "0.19"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.59", features = ["preserve_order"] }
|
|
|
|
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"
|
2021-03-15 14:29:30 +01:00
|
|
|
thiserror = "1.0.24"
|
2021-03-10 13:46:49 +01:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
uuid = "0.8.2"
|
2021-03-16 14:09:01 +01:00
|
|
|
oxidized-json-checker = "0.3.2"
|
2021-03-10 13:46:49 +01:00
|
|
|
|
|
|
|
[dependencies.sentry]
|
|
|
|
default-features = false
|
2021-03-15 14:29:30 +01:00
|
|
|
features = [
|
|
|
|
"with_client_implementation",
|
|
|
|
"with_panic",
|
|
|
|
"with_failure",
|
|
|
|
"with_device_info",
|
|
|
|
"with_rust_info",
|
|
|
|
"with_reqwest_transport",
|
|
|
|
"with_rustls",
|
|
|
|
"with_env_logger"
|
|
|
|
]
|
2021-03-10 13:46:49 +01:00
|
|
|
optional = true
|
|
|
|
version = "0.18.1"
|
|
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_url_params = "0.2.0"
|
|
|
|
tempdir = "0.3.7"
|
|
|
|
assert-json-diff = { branch = "master", git = "https://github.com/qdequele/assert-json-diff" }
|
|
|
|
actix-rt = "2.1.0"
|
2021-03-10 14:47:04 +01:00
|
|
|
urlencoding = "1.1.1"
|
2021-03-10 13:46:49 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["sentry"]
|
|
|
|
|
2021-03-12 17:44:39 +01:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2021-03-10 13:46:49 +01:00
|
|
|
jemallocator = "0.3.2"
|