From d6016933adcf7a9280ff303958a34bf4fdb6fb7a Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 27 Feb 2023 15:57:48 +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 fba2e75f..b923d4d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,7 @@ edition = "2021" rustdoc-args = [ "--html-in-header", "katex-header.html" ] [dev-dependencies] +csv = ">= 1.0, < 1.2" # csv 1.2 has MSRV 1.60 criterion = "0.3" hex = "0.4" rand_xorshift = "0.3"