Skip to content

Commit

Permalink
graph: Remove unused dependency tokio_reactor and unused import Instant
Browse files Browse the repository at this point in the history
  • Loading branch information
fordN committed Dec 17, 2018
1 parent 024c9bf commit 108b9c4
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ slog-term = "2.4.0"
tiny-keccak = "1.0"
tokio = "0.1.11"
tokio-executor = "0.1.5"
tokio-reactor = "0.1.6"
tokio-retry = "0.2"
tokio-timer = "0.2.7"
web3 = "0.5.0"
1 change: 0 additions & 1 deletion graph/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ extern crate slog_term;
extern crate tiny_keccak;
pub extern crate tokio;
pub extern crate tokio_executor;
pub extern crate tokio_reactor;
extern crate tokio_retry;
pub extern crate tokio_timer;
pub extern crate web3;
Expand Down
2 changes: 1 addition & 1 deletion graph/src/util/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use slog_async;
use slog_envlogger;
use slog_term;
use std::sync::Mutex;
use std::time::{Duration, Instant};
use std::time::Duration;
use std::{env, panic, process, thread};

pub fn logger(show_debug: bool) -> Logger {
Expand Down

0 comments on commit 108b9c4

Please sign in to comment.