Files
rxing/Cargo.toml
2022-08-31 15:57:34 -05:00

17 lines
384 B
TOML

[package]
name = "rxing"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
encoding = "0.2"
rand = "0.8.5"
image = {version = "0.24.3", optional = true}
imageproc = {version = "0.23.0", optional = true}
[features]
default = ["image"]
image = ["dep:image", "dep:imageproc"]