Skip to content

Commit

Permalink
Clean deps
Browse files Browse the repository at this point in the history
  • Loading branch information
terry90 committed Jun 15, 2018
1 parent 1875a20 commit 2d76f69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@ router = ["regex"]

[dependencies]
futures = "0.1.21"
http = "0.1.6"
log = "0.4.2"
chrono = { version = "0.4.2", features = ["serde"] }
regex = { version = "1.0.0", optional = true }
rand = "0.5.1"
serde = "1.0.66"
serde_derive = "1.0.66"
serde_json = "1.0.20"
hyper = "0.12.1"
7 changes: 3 additions & 4 deletions src/proxy/service.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
extern crate futures;
extern crate http;
extern crate hyper;

use futures::future;
use futures::future::IntoFuture;

use hyper;
use hyper::client::connect::HttpConnector;
use hyper::rt::Future;
use hyper::service::{NewService, Service};
use hyper::{Body, Client, Request, Response};

use std::collections::HashMap;
use std::error::Error;
use std::sync::{Arc, Mutex};
Expand Down

0 comments on commit 2d76f69

Please sign in to comment.