feat: Introduce a little http query server

This commit is contained in:
Clément Renault
2018-09-14 19:09:20 +02:00
parent 9ee71848bb
commit 3f503446d5
4 changed files with 1036 additions and 0 deletions

21
raptor-http/Cargo.toml Normal file
View File

@ -0,0 +1,21 @@
cargo-features = ["edition"]
[package]
edition = "2018"
name = "raptor-http"
version = "0.1.0"
authors = ["Clément Renault <renault.cle@gmail.com>"]
[dependencies]
raptor = { path = "../raptor" }
serde_derive = "1.0"
serde_json = "1.0"
serde = "1.0"
warp = "0.1"
[dependencies.fst]
git = "https://github.com/Kerollmops/fst.git"
branch = "automaton-for-deref"
[dependencies.rocksdb]
git = "https://github.com/pingcap/rust-rocksdb.git"