2020-11-05 18:16:39 +08:00
|
|
|
[package]
|
|
|
|
name = "http-ui"
|
|
|
|
description = "The HTTP user interface of the milli search engine"
|
2021-09-22 00:09:14 +08:00
|
|
|
version = "0.15.0"
|
2020-11-05 18:16:39 +08:00
|
|
|
authors = ["Clément Renault <clement@meilisearch.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-21 04:15:44 +08:00
|
|
|
anyhow = "1.0.38"
|
2020-12-20 18:55:21 +08:00
|
|
|
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] }
|
2021-06-08 23:44:25 +08:00
|
|
|
crossbeam-channel = "0.5.0"
|
2021-07-05 22:36:13 +08:00
|
|
|
heed = { git = "https://github.com/Kerollmops/heed", tag = "v0.12.1" }
|
2021-08-18 18:03:02 +08:00
|
|
|
meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.5" }
|
2020-11-05 18:16:39 +08:00
|
|
|
memmap = "0.7.0"
|
2021-02-12 23:15:09 +08:00
|
|
|
milli = { path = "../milli" }
|
2021-02-21 04:15:44 +08:00
|
|
|
once_cell = "1.5.2"
|
2020-11-05 18:16:39 +08:00
|
|
|
rayon = "1.5.0"
|
2021-02-21 04:15:44 +08:00
|
|
|
structopt = { version = "0.3.21", default-features = false, features = ["wrap_help"] }
|
|
|
|
tempfile = "3.2.0"
|
2020-11-05 18:16:39 +08:00
|
|
|
|
|
|
|
# http server
|
2021-02-21 04:15:44 +08:00
|
|
|
askama = "0.10.5"
|
2020-11-05 18:16:39 +08:00
|
|
|
askama_warp = "0.10.0"
|
|
|
|
bytes = "0.5.6"
|
2021-01-07 17:15:31 +08:00
|
|
|
either = "1.6.1"
|
2021-02-21 04:15:44 +08:00
|
|
|
flate2 = "1.0.20"
|
|
|
|
futures = "0.3.12"
|
|
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.62", features = ["preserve_order"] }
|
|
|
|
tokio = { version = "0.2.25", features = ["full"] }
|
|
|
|
warp = "0.2.5"
|
2020-11-05 18:16:39 +08:00
|
|
|
|
|
|
|
# logging
|
2021-02-21 04:15:44 +08:00
|
|
|
log = "0.4.14"
|
|
|
|
stderrlog = "0.5.1"
|
2020-12-24 03:04:19 +08:00
|
|
|
fst = "0.4.5"
|
2021-02-15 01:55:15 +08:00
|
|
|
|
|
|
|
# Temporary fix for bitvec, remove once fixed. (https://github.com/bitvecto-rs/bitvec/issues/105)
|
2021-02-21 04:15:44 +08:00
|
|
|
funty = "=1.1"
|
2021-08-31 17:44:15 +08:00
|
|
|
bimap = "0.6.1"
|
|
|
|
csv = "1.1.6"
|
2021-04-07 20:06:14 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-04-10 17:13:59 +08:00
|
|
|
maplit = "1.0.2"
|
2021-04-07 20:06:14 +08:00
|
|
|
serde_test = "1.0.125"
|
2021-06-22 20:17:56 +08:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
jemallocator = "0.3.2"
|