[package] authors = ["Quentin de Quelen ", "Clément Renault "] description = "Meilisearch HTTP server" edition = "2021" license = "MIT" name = "meilisearch-http" version = "0.27.1" [[bin]] name = "meilisearch" path = "src/main.rs" [build-dependencies] anyhow = { version = "1.0.56", optional = true } cargo_toml = { version = "0.11.4", optional = true } hex = { version = "0.4.3", optional = true } reqwest = { version = "0.11.9", features = ["blocking", "rustls-tls"], default-features = false, optional = true } sha-1 = { version = "0.10.0", optional = true } static-files = { version = "0.2.3", optional = true } tempfile = { version = "3.3.0", optional = true } vergen = { version = "7.0.0", default-features = false, features = ["git"] } zip = { version = "0.5.13", optional = true } [dependencies] actix-cors = "0.6.1" actix-web = { version = "4.0.1", default-features = false, features = ["macros", "compress-brotli", "compress-gzip", "cookies", "rustls"] } actix-web-static-files = { git = "https://github.com/kilork/actix-web-static-files.git", rev = "2d3b6160", optional = true } anyhow = { version = "1.0.56", features = ["backtrace"] } async-stream = "0.3.3" async-trait = "0.1.52" bstr = "0.2.17" byte-unit = { version = "4.0.14", default-features = false, features = ["std", "serde"] } bytes = "1.1.0" clap = { version = "3.1.6", features = ["derive", "env"] } crossbeam-channel = "0.5.2" either = "1.6.1" env_logger = "0.9.0" flate2 = "1.0.22" fst = "0.4.7" futures = "0.3.21" futures-util = "0.3.21" http = "0.2.6" indexmap = { version = "1.8.0", features = ["serde-1"] } itertools = "0.10.3" jsonwebtoken = "8.0.1" log = "0.4.14" meilisearch-auth = { path = "../meilisearch-auth" } meilisearch-error = { path = "../meilisearch-error" } meilisearch-lib = { path = "../meilisearch-lib" } mime = "0.3.16" num_cpus = "1.13.1" obkv = "0.2.0" once_cell = "1.10.0" parking_lot = "0.12.0" pin-project-lite = "0.2.8" platform-dirs = "0.3.0" rand = "0.8.5" rayon = "1.5.1" regex = "1.5.5" reqwest = { version = "0.11.9", features = ["rustls-tls"], default-features = false, optional = true } rustls = "0.20.4" rustls-pemfile = "0.3.0" segment = { version = "0.2.0", optional = true } serde = { version = "1.0.136", features = ["derive"] } serde_json = { version = "1.0.79", features = ["preserve_order"] } sha2 = "0.10.2" siphasher = "0.3.10" slice-group-by = "0.3.0" static-files = { version = "0.2.3", optional = true } sysinfo = "0.23.5" tar = "0.4.38" tempfile = "3.3.0" thiserror = "1.0.30" time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] } tokio = { version = "1.17.0", features = ["full"] } tokio-stream = "0.1.8" uuid = { version = "0.8.2", features = ["serde"] } walkdir = "2.3.2" [dev-dependencies] actix-rt = "2.7.0" assert-json-diff = "2.0.1" maplit = "1.0.2" paste = "1.0.6" serde_url_params = "0.2.1" urlencoding = "2.1.0" [features] default = ["analytics", "mini-dashboard"] analytics = ["segment"] mini-dashboard = [ "actix-web-static-files", "static-files", "anyhow", "cargo_toml", "hex", "reqwest", "sha-1", "tempfile", "zip", ] [target.'cfg(target_os = "linux")'.dependencies] tikv-jemallocator = "0.4.3" [package.metadata.mini-dashboard] assets-url = "https://github.com/meilisearch/mini-dashboard/releases/download/v0.1.10/build.zip" sha1 = "1adf96592c267425c110bfefc36b7fc6bfb0f93d"