Move the http server into its own sub-module

This commit is contained in:
Clément Renault
2020-11-05 11:16:39 +01:00
parent 749764f35b
commit 0408c9d66a
20 changed files with 2362 additions and 1147 deletions

View File

@ -27,6 +27,7 @@ once_cell = "1.4.0"
rayon = "1.3.1"
ringtail = "0.3.0"
roaring = "0.6.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.59", features = ["preserve_order"] }
slice-group-by = "0.2.6"
smallstr = { version = "0.2.0", features = ["serde"] }
@ -42,15 +43,6 @@ itertools = "0.9.0"
log = "0.4.11"
stderrlog = "0.5.0"
# http server
askama = "0.10.1"
askama_warp = "0.10.0"
bytes = "0.5.6"
futures = "0.3.6"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
warp = "0.2.2"
[dev-dependencies]
criterion = "0.3.3"