Skip to content
This repository has been archived by the owner on Aug 7, 2021. It is now read-only.

Commit

Permalink
Merge pull request #57 from honeypotio/conditional-search
Browse files Browse the repository at this point in the history
Conditional search
  • Loading branch information
kdamball authored Feb 28, 2018
2 parents 171ede4 + 24fd827 commit 154724c
Show file tree
Hide file tree
Showing 3 changed files with 256 additions and 152 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ persistent = "0.4"
unicase = "1.0"

lazy_static = "1.0"
maplit = "1.0"
oath = "0.10"
log = "0.3"
rollbar = "0.4"
Expand All @@ -30,7 +29,7 @@ serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"

rs-es = "0.10"
rs-es = { git = "https://github.com/RoxasShadow/rs-es.git", branch = "one-request-mapping" }

[lib]
name = "searchspot"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(conservative_impl_trait, iterator_for_each)]
#![recursion_limit="128"]

extern crate serde;
#[macro_use] extern crate serde_json;
Expand All @@ -17,7 +18,6 @@ extern crate oath;
extern crate rollbar;
extern crate backtrace;
#[macro_use] extern crate log;
#[macro_use] extern crate maplit;

// this macro is needed by resources/talent.rs
// but moving it to resources/mod raises E0468
Expand Down
Loading

0 comments on commit 154724c

Please sign in to comment.