Files
rxing/Cargo.toml
2022-12-31 14:43:48 -06:00

38 lines
833 B
TOML

[package]
name = "rxing"
version = "0.1.0"
description="A rust port of the zxing barcode library."
license="Apache-2.0"
repository="https://github.com/hschimke/rxing"
edition = "2021"
exclude = [
"test_resources/*",
]
# 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"
lazy_static = "1.4.0"
encoding = "0.2"
rand = "0.8.5"
urlencoding = "2.1.2"
uriparse = "0.6.4"
chrono = "0.4"
chrono-tz = "0.4"
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.1"
num = "0.4.0"
[dev-dependencies]
java-properties = "1.4.1"
java-rand = "0.2.0"
[features]
default = ["image"]
image = ["dep:image", "dep:imageproc"]