From a26a492563b0988797b659f0d4d3d353a7d972ba Mon Sep 17 00:00:00 2001 From: Pradeep Garigipati Date: Sat, 25 Jun 2022 19:12:08 +0530 Subject: [PATCH] Move mnist crate into dev-dependencies in cargo manifest --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dc1cc9d1..97553800 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,13 +53,13 @@ libc = "0.2" num = "0.4.0" lazy_static = "1.0" half = "1.5.0" -mnist = {version="0.5.0", features = ["download"]} serde = { version = "1.0", features = ["derive"], optional = true } [dev-dependencies] half = "1.5.0" serde_json = "1.0" bincode = "1.3" +mnist = {version="0.5.0", features = ["download"]} [build-dependencies] serde_json = "1.0"