From 24e35f42266a401e04e14d319c226306756e1f5e Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Wed, 1 Mar 2023 09:23:14 -0600 Subject: [PATCH] update versions --- Cargo.toml | 8 ++++---- crates/cli/Cargo.toml | 4 ++-- crates/one-d-proc-derive/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 772c3d4..aad71f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rxing" -version = "0.3.1" +version = "0.3.2" description="A rust port of the zxing barcode library." license="Apache-2.0" repository="https://github.com/rxing-core/rxing" @@ -13,9 +13,9 @@ exclude = [ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -regex = "1.7.0" -fancy-regex = "0.10" -once_cell = "1.17.0" +regex = "1.7.1" +fancy-regex = "0.11" +once_cell = "1.17.1" encoding = "0.2" urlencoding = "2.1.2" uriparse = "0.6.4" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 8cd3487..c3a098f 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rxing-cli" -version = "0.1.11" +version = "0.1.12" edition = "2021" description = "A command line interface for rxing supporting encoding and decoding of multiple barcode formats" license="Apache-2.0" @@ -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.1", features = ["image", "svg_read", "svg_write"] } +rxing = {path = "../../", version = "~0.3.2", features = ["image", "svg_read", "svg_write"] } diff --git a/crates/one-d-proc-derive/Cargo.toml b/crates/one-d-proc-derive/Cargo.toml index cb45247..ae28a96 100644 --- a/crates/one-d-proc-derive/Cargo.toml +++ b/crates/one-d-proc-derive/Cargo.toml @@ -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.0" +version = "0.3.1" 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"