MeiliSearch/http-ui/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "http-ui"
description = "The HTTP user interface of the milli search engine"
version = "0.33.4"
authors = ["Clément Renault <clement@meilisearch.com>"]
edition = "2018"
2022-04-25 14:03:21 +02:00
publish = false
[dependencies]
2022-03-14 17:00:53 +01:00
anyhow = "1.0.56"
byte-unit = { version = "4.0.14", default-features = false, features = ["std"] }
crossbeam-channel = "0.5.2"
memmap2 = "0.5.3"
milli = { path = "../milli" }
2022-08-17 11:46:56 +02:00
mimalloc = { version = "0.1.29", default-features = false }
2022-03-14 17:00:53 +01:00
once_cell = "1.10.0"
rayon = "1.5.1"
structopt = { version = "0.3.26", default-features = false, features = ["wrap_help"] }
tempfile = "3.3.0"
# http server
2022-03-14 17:00:53 +01:00
askama = "0.11.1"
askama_warp = "0.12.0"
bytes = "1.1.0"
either = "1.6.1"
2022-03-14 17:00:53 +01:00
flate2 = "1.0.22"
futures = "0.3.21"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.79", features = ["preserve_order"] }
tokio = { version = "1.17.0", features = ["full"] }
tokio-stream = { version = "0.1.8", default-features = false, features = ["sync"] }
2022-03-14 17:00:53 +01:00
warp = "0.3.2"
# logging
2022-08-17 11:46:56 +02:00
fst = "0.4.7"
2022-08-22 13:55:01 +02:00
log = "0.4.17"
2021-02-20 21:15:44 +01:00
stderrlog = "0.5.1"
# Temporary fix for bitvec, remove once fixed. (https://github.com/bitvecto-rs/bitvec/issues/105)
2022-03-14 17:00:53 +01:00
bimap = "0.6.2"
csv = "1.1.6"
2022-08-17 11:46:56 +02:00
funty = "2.0.0"
[dev-dependencies]
maplit = "1.0.2"
2022-03-14 17:00:53 +01:00
serde_test = "1.0.136"