mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 04:28:55 +01:00
65 lines
1.6 KiB
TOML
65 lines
1.6 KiB
TOML
[package]
|
|
name = "meilisearch-http"
|
|
version = "0.8.0"
|
|
authors = [
|
|
"Quentin de Quelen <quentin@dequelen.me>",
|
|
"Clément Renault <clement@meilisearch.com>",
|
|
]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "meilisearch"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
bincode = "1.2.0"
|
|
chrono = { version = "0.4.9", features = ["serde"] }
|
|
crossbeam-channel = "0.4.0"
|
|
env_logger = "0.7.1"
|
|
heed = "0.5.0"
|
|
http = "0.1.19"
|
|
indexmap = { version = "1.3.0", features = ["serde-1"] }
|
|
isahc = "0.7.6"
|
|
log = "0.4.8"
|
|
main_error = "0.1.0"
|
|
meilisearch-core = { path = "../meilisearch-core", version = "0.8.0" }
|
|
meilisearch-schema = { path = "../meilisearch-schema", version = "0.8.0" }
|
|
pretty-bytes = "0.2.2"
|
|
rand = "0.7.2"
|
|
rayon = "1.2.0"
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
|
serde_json = { version = "1.0.41", features = ["preserve_order"] }
|
|
serde_qs = "0.5.1"
|
|
siphasher = "0.3.1"
|
|
structopt = "0.3.3"
|
|
sysinfo = "0.9.5"
|
|
walkdir = "2.2.9"
|
|
whoami = "0.6"
|
|
|
|
[dependencies.async-compression]
|
|
default-features = false
|
|
features = ["stream", "gzip", "zlib", "brotli", "zstd"]
|
|
version = "=0.1.0-alpha.7"
|
|
|
|
[dependencies.tide]
|
|
git = "https://github.com/rustasync/tide"
|
|
rev = "e77709370bb24cf776fe6da902467c35131535b1"
|
|
|
|
[dependencies.tide-log]
|
|
git = "https://github.com/rustasync/tide"
|
|
rev = "e77709370bb24cf776fe6da902467c35131535b1"
|
|
|
|
[dependencies.tide-slog]
|
|
git = "https://github.com/rustasync/tide"
|
|
rev = "e77709370bb24cf776fe6da902467c35131535b1"
|
|
|
|
[dependencies.tide-compression]
|
|
git = "https://github.com/rustasync/tide"
|
|
rev = "e77709370bb24cf776fe6da902467c35131535b1"
|
|
|
|
[build-dependencies]
|
|
vergen = "3.0.4"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
jemallocator = "0.3.2"
|