update to v0.2.3

This commit is contained in:
Henry Schimke
2023-01-04 14:51:02 -06:00
parent 48287631dd
commit 86944b3d9e
2 changed files with 5 additions and 3 deletions

View File

@@ -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]

View File

@@ -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.