move to more modern SVG read methods

This commit is contained in:
Henry Schimke
2023-08-03 15:19:02 -05:00
parent bcb97f639e
commit 09673e2381
3 changed files with 13 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "rxing"
version = "0.4.8"
version = "0.4.9"
description="A rust port of the zxing barcode library."
license="Apache-2.0"
repository="https://github.com/rxing-core/rxing"
@@ -13,11 +13,11 @@ exclude = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.8.0"
regex = "1.9.0"
fancy-regex = "0.11"
once_cell = "1.17.2"
once_cell = "1.18"
encoding = "0.2"
urlencoding = "2.1.2"
urlencoding = "2.1.3"
uriparse = "0.6.4"
chrono = "0.4.26"
chrono-tz = "0.8"
@@ -28,9 +28,9 @@ codepage-437 = "0.1.0"
rxing-one-d-proc-derive = {version = "0.5", path ="./crates/one-d-proc-derive"}
num = "0.4.0"
svg = {version = "0.13", optional = true}
resvg = {version = "0.29.0", optional = true, default-features=false}
resvg = {version = "0.35", optional = true, default-features=false}
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
thiserror = "1.0.38"
thiserror = "1.0.44"
multimap = "0.9"
[dev-dependencies]
@@ -40,7 +40,7 @@ rand = "0.8.5"
criterion = "0.5"
[features]
default = ["image"]
default = ["image", "svg_read"]
#/// Enable features required for image manipulation and reading.
image = ["dep:image", "dep:imageproc"]