From 89ed131f20665b787e3ee6580a365f310c65f5c9 Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Fri, 13 Jan 2023 18:49:40 -0600 Subject: [PATCH] move rand to dev-dependencies --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 24edf99..07d0ce8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rxing" -version = "0.2.16" +version = "0.2.17" description="A rust port of the zxing barcode library." license="Apache-2.0" repository="https://github.com/hschimke/rxing" @@ -17,7 +17,6 @@ regex = "1.7.0" fancy-regex = "0.10" once_cell = "1.17.0" encoding = "0.2" -rand = "0.8.5" urlencoding = "2.1.2" uriparse = "0.6.4" chrono = "0.4.23" @@ -35,6 +34,7 @@ resvg = {version = "0.28.0", optional = true, default-features=false} [dev-dependencies] java-properties = "1.4.1" java-rand = "0.2.0" +rand = "0.8.5" [features] default = ["image"]