keyfork/crates/qrcode/keyfork-qrcode/Cargo.toml

23 lines
661 B
TOML
Raw Normal View History

2024-01-12 00:49:56 +00:00
[package]
name = "keyfork-qrcode"
version = "0.1.1"
2024-01-12 20:40:03 +00:00
repository = "https://git.distrust.co/public/keyfork"
2024-01-12 00:49:56 +00:00
edition = "2021"
2024-01-12 20:40:03 +00:00
license = "MIT"
2024-01-12 00:49:56 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-01-13 07:52:43 +00:00
[features]
default = ["bin"]
bin = ["decode-backend-rqrr"]
2024-01-13 07:52:43 +00:00
decode-backend-rqrr = ["dep:rqrr"]
decode-backend-zbar = ["dep:keyfork-zbar"]
2024-01-12 00:49:56 +00:00
[dependencies]
keyfork-bug = { workspace = true }
keyfork-zbar = { workspace = true, optional = true }
image = { workspace = true, default-features = false, features = ["jpeg"] }
2024-01-13 07:52:43 +00:00
rqrr = { version = "0.6.0", optional = true }
thiserror = { workspace = true }
v4l = { workspace = true }