From c8e6fd9dfd549c3b901a251189dfd31702cb8370 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 22 Dec 2020 12:28:31 +0000 Subject: [PATCH] Pin all metrics crate dependencies We depend on the alpha version, where breaking changes are occurring regularly. However, the metrics crate does not pin exact versions of its dependencies, which can break our CI if a new alpha dependency is released with breaking changes. Fortunately the metrics crate only has a single metrics-* dependency, so we can just pin that as well. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index dcbe5c8..27de33d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,6 +39,7 @@ subtle = "2.3" crossbeam-utils = "0.7" ff = "0.8" metrics = "=0.13.0-alpha.13" +metrics-macros = "=0.1.0-alpha.9" num_cpus = "1.13" rand = "0.7"