From 86944b3d9e48d04bc0799885cbdce9fb1d5308ab Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Wed, 4 Jan 2023 14:51:02 -0600 Subject: [PATCH] update to v0.2.3 --- Cargo.toml | 6 +++--- README.md | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dc9931e..2151a59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rxing" -version = "0.2.1" +version = "0.2.3" description="A rust port of the zxing barcode library." license="Apache-2.0" repository="https://github.com/hschimke/rxing" @@ -26,8 +26,8 @@ image = {version = "0.24", optional = true} imageproc = {version = "0.23.0", optional = true} unicode-segmentation = "1.10.0" codepage-437 = "0.1.0" -#rxing-one-d-proc-derive = "0.2.1" -rxing-one-d-proc-derive = {path ="../rxing-one-d-proc-derive"} +rxing-one-d-proc-derive = "0.3.0" +#rxing-one-d-proc-derive = {path ="../rxing-one-d-proc-derive"} num = "0.4.0" [dev-dependencies] diff --git a/README.md b/README.md index 2dd1461..2a2b1ae 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,8 @@ fn main() { ``` ## Latest Release Notes +v0.2.3 -> Implement most suggestions from clippy, as well as some simple changes, no surface changes. + v0.2.0 -> Dramatically improve performance when cropping a BufferedImageLuminanceSource. v0.1.4 -> Dramatically improve performance for MultiFormatReader and for multiple barcode detection.