mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-29 09:39:58 +00:00
chore: Move raptor-http into it's own crate
This commit is contained in:
committed by
Clément Renault
parent
9c6663ee36
commit
0df4f6f182
26
raptor-http/Cargo.toml
Normal file
26
raptor-http/Cargo.toml
Normal file
@ -0,0 +1,26 @@
|
||||
[package]
|
||||
name = "raptor-http"
|
||||
version = "0.1.0"
|
||||
authors = ["Kerollmops <renault.cle@gmail.com>"]
|
||||
|
||||
[dependencies]
|
||||
env_logger = { version = "0.3", default-features = false }
|
||||
raptor = { path = ".." }
|
||||
futures = "0.1"
|
||||
serde = "1.0"
|
||||
serde_derive = "1.0"
|
||||
tokio-minihttp = { git = "https://github.com/Kerollmops/tokio-minihttp.git" }
|
||||
tokio-proto = "0.1"
|
||||
tokio-service = "0.1"
|
||||
url = "1.7"
|
||||
|
||||
[dependencies.levenshtein_automata]
|
||||
path = "../../../levenshtein-automata"
|
||||
# git = "https://github.com/Kerollmops/levenshtein-automata.git"
|
||||
# branch = "custom-fst"
|
||||
features = ["fst_automaton"]
|
||||
|
||||
[dependencies.fst]
|
||||
path = "../../../fst"
|
||||
# git = "https://github.com/Kerollmops/fst.git"
|
||||
# branch = "stream-with-state"
|
Reference in New Issue
Block a user