2020-11-05 11:16:39 +01:00
|
|
|
[package]
|
|
|
|
name = "http-ui"
|
|
|
|
description = "The HTTP user interface of the milli search engine"
|
2021-06-03 12:24:27 +02:00
|
|
|
version = "0.3.0"
|
2020-11-05 11:16:39 +01:00
|
|
|
authors = ["Clément Renault <clement@meilisearch.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-02-20 21:15:44 +01:00
|
|
|
anyhow = "1.0.38"
|
2020-12-20 11:55:21 +01:00
|
|
|
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] }
|
2020-12-05 16:39:15 +01:00
|
|
|
grenad = { git = "https://github.com/Kerollmops/grenad.git", rev = "3adcb26" }
|
2021-02-20 21:15:44 +01:00
|
|
|
heed = "0.10.6"
|
2021-05-03 10:54:50 +02:00
|
|
|
meilisearch-tokenizer = { git = "https://github.com/meilisearch/Tokenizer.git", tag = "v0.2.2" }
|
2020-11-05 11:16:39 +01:00
|
|
|
memmap = "0.7.0"
|
2021-02-12 16:15:09 +01:00
|
|
|
milli = { path = "../milli" }
|
2021-02-20 21:15:44 +01:00
|
|
|
once_cell = "1.5.2"
|
2020-11-05 11:16:39 +01:00
|
|
|
rayon = "1.5.0"
|
2021-02-20 21:15:44 +01:00
|
|
|
structopt = { version = "0.3.21", default-features = false, features = ["wrap_help"] }
|
|
|
|
tempfile = "3.2.0"
|
2020-11-05 11:16:39 +01:00
|
|
|
|
|
|
|
# http server
|
2021-02-20 21:15:44 +01:00
|
|
|
askama = "0.10.5"
|
2020-11-05 11:16:39 +01:00
|
|
|
askama_warp = "0.10.0"
|
|
|
|
bytes = "0.5.6"
|
2021-01-07 10:15:31 +01:00
|
|
|
either = "1.6.1"
|
2021-02-20 21:15:44 +01: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 11:16:39 +01:00
|
|
|
|
|
|
|
# logging
|
2021-02-20 21:15:44 +01:00
|
|
|
log = "0.4.14"
|
|
|
|
stderrlog = "0.5.1"
|
2020-12-23 20:04:19 +01:00
|
|
|
fst = "0.4.5"
|
2021-02-14 18:55:15 +01:00
|
|
|
|
|
|
|
# Temporary fix for bitvec, remove once fixed. (https://github.com/bitvecto-rs/bitvec/issues/105)
|
2021-02-20 21:15:44 +01:00
|
|
|
funty = "=1.1"
|
2021-04-07 14:06:14 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-04-10 11:13:59 +02:00
|
|
|
maplit = "1.0.2"
|
2021-04-07 14:06:14 +02:00
|
|
|
serde_test = "1.0.125"
|