MeiliSearch/meilisearch-http/Cargo.toml

87 lines
2.1 KiB
TOML
Raw Normal View History

2019-10-31 15:00:36 +01:00
[package]
2019-11-26 11:06:55 +01:00
name = "meilisearch-http"
2019-12-04 14:32:18 +01:00
description = "MeiliSearch HTTP server"
2021-03-22 16:03:19 +01:00
version = "0.20.0"
2019-12-04 14:32:18 +01:00
license = "MIT"
2019-10-31 15:00:36 +01:00
authors = [
"Quentin de Quelen <quentin@dequelen.me>",
"Clément Renault <clement@meilisearch.com>",
]
edition = "2018"
[[bin]]
name = "meilisearch"
path = "src/main.rs"
2020-05-07 16:58:48 +02:00
[features]
default = ["sentry"]
2019-10-31 15:00:36 +01:00
[dependencies]
2021-01-04 16:56:28 +01:00
actix-cors = "0.5.4"
actix-http = "2.2.0"
actix-rt = "1.1.1"
2020-09-12 04:29:17 +02:00
actix-service = "1.0.6"
2020-12-09 12:49:21 +01:00
actix-web = { version = "3.3.2", features = ["rustls"] }
2021-01-04 16:56:28 +01:00
bytes = "1.0.0"
chrono = { version = "0.4.19", features = ["serde"] }
crossbeam-channel = "0.5.0"
2020-12-09 10:25:17 +01:00
env_logger = "0.8.2"
2021-01-04 16:56:28 +01:00
flate2 = "1.0.19"
futures = "0.3.8"
http = "0.2.2"
indexmap = { version = "1.6.1", features = ["serde-1"] }
log = "0.4.11"
main_error = "0.1.1"
2021-03-22 16:03:19 +01:00
meilisearch-core = { path = "../meilisearch-core", version = "0.20.0" }
meilisearch-error = { path = "../meilisearch-error", version = "0.20.0" }
meilisearch-schema = { path = "../meilisearch-schema", version = "0.20.0" }
2020-02-02 22:59:19 +01:00
mime = "0.3.16"
2020-12-09 10:22:14 +01:00
once_cell = "1.5.2"
2021-01-04 16:56:28 +01:00
rand = "0.8.1"
2020-12-09 10:28:22 +01:00
regex = "1.4.2"
2021-01-04 17:38:09 +01:00
rustls = "0.18.0"
2021-01-04 16:56:28 +01:00
serde = { version = "1.0.118", features = ["derive"] }
serde_json = { version = "1.0.61", features = ["preserve_order"] }
serde_qs = "0.8.2"
sha2 = "0.9.2"
siphasher = "0.3.3"
2020-04-24 15:00:52 +02:00
slice-group-by = "0.2.6"
2021-01-04 16:56:28 +01:00
structopt = "0.3.21"
tar = "0.4.30"
2020-07-02 16:20:45 +02:00
tempfile = "3.1.0"
2021-01-04 17:38:09 +01:00
tokio = { version = "0.2", features = ["macros"] }
2021-01-04 16:56:28 +01:00
ureq = { version = "2.0.0", features = ["tls"], default-features = false }
uuid = "0.8"
2020-04-02 18:36:04 +02:00
walkdir = "2.3.1"
2021-01-04 16:56:28 +01:00
whoami = "1.0.3"
[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
2020-01-15 17:56:07 +01:00
2020-01-15 17:10:33 +01:00
[dev-dependencies]
2020-05-28 19:35:34 +02:00
serde_url_params = "0.2.0"
2020-01-15 17:10:33 +01:00
tempdir = "0.3.7"
2021-01-04 17:38:09 +01:00
tokio = { version = "0.2", features = ["macros", "time"] }
2020-01-18 19:00:41 +01:00
[dev-dependencies.assert-json-diff]
git = "https://github.com/qdequele/assert-json-diff"
branch = "master"
2019-10-31 15:00:36 +01:00
[build-dependencies]
2020-04-02 18:36:04 +02:00
vergen = "3.1.0"
2019-11-25 15:35:13 +01:00
[target.'cfg(target_os = "linux")'.dependencies]
2019-11-25 15:35:13 +01:00
jemallocator = "0.3.2"