From 10657da9ba89bab3e39239a9247f6f408ae36723 Mon Sep 17 00:00:00 2001 From: Jonathan Strong Date: Fri, 6 Oct 2017 01:41:29 -0400 Subject: [PATCH] disabled chashmap dependency if I want it later --- Cargo.toml | 1 + src/latency.rs | 1 + src/lib.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 058e871..c0b06e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ slog = "2.0.6" sloggers = "0.2" slog-term = "2" shuteye = "^0" +# chashmap = "2" windows = { path = "../windows" } money = { path = "../money" } diff --git a/src/latency.rs b/src/latency.rs index 2ab48af..a5d5caf 100644 --- a/src/latency.rs +++ b/src/latency.rs @@ -11,6 +11,7 @@ use zmq; use influent::measurement::{Measurement, Value}; use sloggers::types::Severity; use shuteye; +//use chashmap::CHashMap; use windows::{DurationWindow, Incremental, Window}; use money::{Ticker, Side, ByExchange, Exchange}; diff --git a/src/lib.rs b/src/lib.rs index 9e12693..5f44817 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,6 +16,7 @@ extern crate pub_sub; extern crate sloggers; extern crate slog_term; extern crate shuteye; +//extern crate chashmap; extern crate windows;