From f809140f5341ab89f009426d01936d5230d5ce39 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 5 Mar 2021 13:35:34 -0500 Subject: [PATCH] fix: Move rand to a dev-dependency of packers --- packers/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packers/Cargo.toml b/packers/Cargo.toml index 552b5807ed..94a737d040 100644 --- a/packers/Cargo.toml +++ b/packers/Cargo.toml @@ -9,9 +9,9 @@ arrow_deps = { path = "../arrow_deps" } data_types = { path = "../data_types" } human_format = "1.0.3" influxdb_tsm = { path = "../influxdb_tsm" } -rand = "0.7.3" snafu = "0.6.2" tracing = "0.1" [dev-dependencies] # In alphabetical order +rand = "0.7.3" test_helpers = { path = "../test_helpers" }