mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-25 20:02:34 +00:00
v0.4.0: This is a breaking change
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rxing"
|
||||
version = "0.3.2"
|
||||
version = "0.4.0"
|
||||
description="A rust port of the zxing barcode library."
|
||||
license="Apache-2.0"
|
||||
repository="https://github.com/rxing-core/rxing"
|
||||
|
||||
@@ -76,6 +76,13 @@ fn main() {
|
||||
```
|
||||
|
||||
## Latest Release Notes
|
||||
* *v0.4.0* -> Rewrite of the API to implement generics. This largely eliminates dynamic dispatch from the library.
|
||||
|
||||
This release has many under-the-hood changes: better Point class, better Error handling, improved API
|
||||
ergonomics with dynamics. For an understanding of how the new API works check out the `helper` functions.
|
||||
This release was made possible with PRs from Asha20 and SteveCookTU. A big thanks to them. This release does
|
||||
not have the improved QRCode support from the ZXing-CPP library, as that port is still in progress.
|
||||
|
||||
* *v0.3.1* -> Support for closures in NEEDS_RESULT_CALLBACK. Numerous code cleanups were performed between *v0.3.0* and *v.0.3.1* rxing has moved to https://github.com/rxing-core/rxing.
|
||||
* *v0.2.21* -> Adds partial support for detecting and decoding rotated MaxiCode symbols. Adds support for basic serialization of many public facing datatypes using serde (gated behind `serde` feature).
|
||||
|
||||
|
||||
@@ -11,4 +11,4 @@ keywords = ["barcode", "2d_barcode", "1d_barcode", "barcode_reader", "barcode_wr
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.1.1", features = ["derive"] }
|
||||
rxing = {path = "../../", version = "~0.3.2", features = ["image", "svg_read", "svg_write"] }
|
||||
rxing = {path = "../../", version = "~0.4.0", features = ["image", "svg_read", "svg_write"] }
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "rxing-one-d-proc-derive"
|
||||
repository = "https://github.com/rxing-core/rxing/tree/main/crates/one-d-proc-derive"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
edition = "2021"
|
||||
description = "proc macros to simplify the development of one-d barcode symbologies in rxing (https://github.com/rxing-core/rxing)"
|
||||
license = "Apache-2.0"
|
||||
|
||||
Reference in New Issue
Block a user