From 214936991972cb820d7da1371142f8451f638b9b Mon Sep 17 00:00:00 2001 From: Brian Anglin Date: Sat, 23 Jun 2018 18:56:05 -0700 Subject: [PATCH] Fix on darwin build --- Cargo.lock | 1 + substrate/telemetry/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 5d8c2e0c05007..e5d1ff228f551 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2531,6 +2531,7 @@ name = "substrate-telemetry" version = "0.2.0" dependencies = [ "lazy_static 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "slog 2.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/substrate/telemetry/Cargo.toml b/substrate/telemetry/Cargo.toml index 289963ef875ea..c1c7705401c99 100644 --- a/substrate/telemetry/Cargo.toml +++ b/substrate/telemetry/Cargo.toml @@ -7,6 +7,7 @@ description = "Telemetry utils" [dependencies] parking_lot = "0.4" lazy_static = "1.0" +log = "0.3" slog = "^2" slog-json = "^2" slog-async = "^2"