From 437d471b4d384f3828556472b2d7f53ae946d531 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 2 Mar 2023 14:29:36 +0000 Subject: [PATCH] Restrict dev-dependencies to `csv < 1.2` We only have this dependency for `criterion`, so it doesn't need to affect the crate MSRV. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 85db660..c250431 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,6 +22,7 @@ rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"] [dev-dependencies] bincode = "1.3" criterion = "0.3" +csv = ">= 1.0, < 1.2" # csv 1.2 has MSRV 1.60 rand_xorshift = "0.3" serde_json = "1.0"