[package] name = "pdf417-hub3-rs" version = "0.2.3" edition = "2021" authors = ["Andrej Dundovic", "Demiurg d.o.o. "] description = "A 2D barcode generator of PDF417 HUB3 based on rxing" readme = "README.md" homepage = "https://www.demiurg.hr" license = "GPL-3.0-or-later" keywords = ["barcode", "pdf417", "croatia", "hub3"] [dependencies] anyhow = "1.0" base64 = "0.21" const_format = "0.2" rust_decimal = "1.32" rxing = { version = "0.5", default-features = false } svg = { version = "0.17", optional = true } svg2pdf = { version = "0.10.0", optional = true } [dev-dependencies] tempfile = { version = "3" } [features] default = ["image", "svg", "pdf"] image = ["rxing/image"] svg = ["rxing/svg_write", "dep:svg"] pdf = ["dep:svg2pdf"]