MeiliSearch/meilisearch-http/Cargo.toml

109 lines
3.2 KiB
TOML
Raw Normal View History

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"
2022-01-12 11:14:50 +01:00
edition = "2021"
2021-03-10 13:46:49 +01:00
license = "MIT"
name = "meilisearch-http"
2022-02-14 16:11:07 +01:00
version = "0.26.0"
2021-04-21 13:49:21 +02:00
2021-03-10 13:46:49 +01:00
[[bin]]
name = "meilisearch"
path = "src/main.rs"
[build-dependencies]
static-files = { version = "0.2.1", optional = true }
2021-09-08 12:34:56 +02:00
anyhow = { version = "1.0.43", optional = true }
cargo_toml = { version = "0.9", optional = true }
2021-04-22 12:39:23 +02:00
hex = { version = "0.4.3", optional = true }
2021-09-08 12:34:56 +02:00
reqwest = { version = "0.11.4", features = ["blocking", "rustls-tls"], default-features = false, optional = true }
sha-1 = { version = "0.9.8", optional = true }
tempfile = { version = "3.2.0", optional = true }
vergen = { version = "5.1.15", default-features = false, features = ["git"] }
2021-09-08 12:34:56 +02:00
zip = { version = "0.5.13", optional = true }
2021-03-10 13:46:49 +01:00
[dependencies]
2022-02-26 00:28:55 +01:00
actix-cors = "0.6"
actix-web = { version = "4", features = ["rustls"] }
2022-02-28 14:43:22 +01:00
actix-web-static-files = { git = "https://github.com/kilork/actix-web-static-files.git", rev = "2d3b6160", optional = true }
2021-09-14 18:39:02 +02:00
anyhow = { version = "1.0.43", features = ["backtrace"] }
2021-09-08 12:34:56 +02:00
async-stream = "0.3.2"
async-trait = "0.1.51"
bstr = "0.2.17"
byte-unit = { version = "4.0.12", default-features = false, features = ["std", "serde"] }
2021-09-08 12:34:56 +02:00
bytes = "1.1.0"
crossbeam-channel = "0.5.1"
2021-03-15 14:29:30 +01:00
either = "1.6.1"
2021-09-08 12:34:56 +02:00
env_logger = "0.9.0"
flate2 = "1.0.21"
fst = "0.4.7"
futures = "0.3.17"
futures-util = "0.3.17"
http = "0.2.4"
indexmap = { version = "1.7.0", features = ["serde-1"] }
itertools = "0.10.1"
jsonwebtoken = "7"
2021-09-08 12:34:56 +02:00
log = "0.4.14"
meilisearch-auth = { path = "../meilisearch-auth" }
2021-03-10 13:46:49 +01:00
meilisearch-error = { path = "../meilisearch-error" }
meilisearch-lib = { path = "../meilisearch-lib" }
2021-03-10 13:46:49 +01:00
mime = "0.3.16"
num_cpus = "1.13.0"
obkv = "0.2.0"
2021-09-08 12:34:56 +02:00
once_cell = "1.8.0"
parking_lot = "0.11.2"
platform-dirs = "0.3.0"
2021-09-08 12:34:56 +02:00
rand = "0.8.4"
rayon = "1.5.1"
regex = "1.5.4"
rustls = "0.20.2"
rustls-pemfile = "0.2"
segment = { version = "0.2.0", optional = true }
2021-09-08 12:34:56 +02:00
serde = { version = "1.0.130", features = ["derive"] }
serde_json = { version = "1.0.67", features = ["preserve_order"] }
sha2 = "0.9.6"
siphasher = "0.3.7"
2021-03-10 13:46:49 +01:00
slice-group-by = "0.2.6"
static-files = { version = "0.2.1", optional = true }
clap = { version = "3.0", features = ["derive", "env"] }
sysinfo = "0.20.2"
2021-09-08 12:34:56 +02:00
tar = "0.4.37"
tempfile = "3.2.0"
thiserror = "1.0.28"
time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] }
2021-09-08 12:34:56 +02:00
tokio = { version = "1.11.0", features = ["full"] }
tokio-stream = "0.1.7"
2021-09-08 12:34:56 +02:00
uuid = { version = "0.8.2", features = ["serde"] }
2021-04-01 16:44:42 +02:00
walkdir = "2.3.2"
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.24.0" }
2022-03-04 20:12:44 +01:00
pin-project-lite = "0.2.8"
2021-03-10 13:46:49 +01:00
[dev-dependencies]
2021-09-08 12:34:56 +02:00
actix-rt = "2.2.0"
assert-json-diff = "2.0.1"
maplit = "1.0.2"
2021-04-20 12:07:22 +02:00
paste = "1.0.5"
2021-07-06 11:54:09 +02:00
serde_url_params = "0.2.1"
2021-09-08 12:34:56 +02:00
urlencoding = "2.1.0"
2021-03-10 13:46:49 +01:00
[features]
2021-04-22 12:39:23 +02:00
mini-dashboard = [
"actix-web-static-files",
"static-files",
2021-04-22 12:39:23 +02:00
"anyhow",
"cargo_toml",
"hex",
"reqwest",
"sha-1",
"tempfile",
"zip",
]
analytics = ["segment"]
default = ["analytics", "mini-dashboard"]
2021-03-10 13:46:49 +01:00
2021-03-12 17:44:39 +01:00
[target.'cfg(target_os = "linux")'.dependencies]
tikv-jemallocator = "0.4.1"
2021-04-20 15:20:09 +02:00
[package.metadata.mini-dashboard]
2022-02-16 15:53:15 +01:00
assets-url = "https://github.com/meilisearch/mini-dashboard/releases/download/v0.1.9/build.zip"
sha1 = "b1833c3e5dc6b5d9d519ae4834935ae6c8a47024"