[package] name = "meilisearch-http" description = "MeiliSearch HTTP server" version = "0.10.1" license = "MIT" authors = [ "Quentin de Quelen ", "Clément Renault ", ] edition = "2018" [[bin]] name = "meilisearch" path = "src/main.rs" [features] default = ["sentry"] [dependencies] actix-cors = "0.2.0" actix-files = "0.2.1" actix-http = "1" actix-rt = "1" actix-service = "1.0.5" actix-web = "2" actix-web-macros = "0.1.0" bytes = "0.5.4" chrono = { version = "0.4.11", features = ["serde"] } crossbeam-channel = "0.4.2" env_logger = "0.7.1" futures = "0.3.4" heed = "0.7.0" http = "0.1.19" indexmap = { version = "1.3.2", features = ["serde-1"] } log = "0.4.8" main_error = "0.1.0" meilisearch-core = { path = "../meilisearch-core", version = "0.10.1" } meilisearch-schema = { path = "../meilisearch-schema", version = "0.10.1" } meilisearch-tokenizer = {path = "../meilisearch-tokenizer", version = "0.10.1"} mime = "0.3.16" pretty-bytes = "0.2.2" rand = "0.7.3" regex = "1.3.6" serde = { version = "1.0.105", features = ["derive"] } serde_json = { version = "1.0.50", features = ["preserve_order"] } serde_qs = "0.5.2" sha2 = "0.8.1" siphasher = "0.3.2" slice-group-by = "0.2.6" structopt = "0.3.12" sysinfo = "0.12.0" tokio = { version = "0.2.18", features = ["macros"] } ureq = { version = "0.12.0", features = ["tls"], default-features = false } walkdir = "2.3.1" whoami = "0.8.1" [dependencies.sentry] version = "0.18.1" default-features = false features = [ "with_client_implementation", "with_panic", "with_failure", "with_device_info", "with_rust_info", "with_reqwest_transport", "with_rustls", "with_env_logger" ] optional = true [dev-dependencies] http-service = "0.4.0" http-service-mock = "0.4.0" tempdir = "0.3.7" tokio = { version = "0.2.18", features = ["macros", "time"] } [dev-dependencies.assert-json-diff] git = "https://github.com/qdequele/assert-json-diff" branch = "master" [build-dependencies] vergen = "3.1.0" [target.'cfg(unix)'.dependencies] jemallocator = "0.3.2"