mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 12:38:55 +01:00
110 lines
3.4 KiB
TOML
110 lines
3.4 KiB
TOML
[package]
|
|
authors = ["Quentin de Quelen <quentin@dequelen.me>", "Clément Renault <clement@meilisearch.com>"]
|
|
description = "Meilisearch HTTP server"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
name = "meilisearch-http"
|
|
version = "0.29.0"
|
|
|
|
[[bin]]
|
|
name = "meilisearch"
|
|
path = "src/main.rs"
|
|
|
|
[build-dependencies]
|
|
anyhow = { version = "1.0.62", 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.62", 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-types = { path = "../meilisearch-types" }
|
|
meilisearch-lib = { path = "../meilisearch-lib" }
|
|
mimalloc = { version = "0.1.29", default-features = false }
|
|
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.4", features = ["rustls-tls", "json"], default-features = false }
|
|
rustls = "0.20.4"
|
|
rustls-pemfile = "0.3.0"
|
|
segment = { version = "0.2.0", optional = true }
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
serde-cs = "0.2.3"
|
|
serde_json = { version = "1.0.85", 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 = "1.1.2", features = ["serde", "v4"] }
|
|
walkdir = "2.3.2"
|
|
prometheus = { version = "0.13.0", features = ["process"] }
|
|
lazy_static = "1.4.0"
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "2.7.0"
|
|
assert-json-diff = "2.0.1"
|
|
manifest-dir-macros = "0.1.14"
|
|
maplit = "1.0.2"
|
|
urlencoding = "2.1.0"
|
|
yaup = "0.2.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",
|
|
]
|
|
|
|
[package.metadata.mini-dashboard]
|
|
assets-url = "https://github.com/meilisearch/mini-dashboard/releases/download/v0.2.1/build.zip"
|
|
sha1 = "05a02ff13c3982091884a3f81d28bf53e72607b2"
|