2024-01-13 07:52:43 +00:00
|
|
|
[package]
|
|
|
|
name = "keyfork-zbar"
|
|
|
|
version = "0.1.0"
|
2024-01-13 17:59:25 +00:00
|
|
|
repository = "https://git.distrust.co/public/keyfork"
|
2024-01-13 07:52:43 +00:00
|
|
|
edition = "2021"
|
2024-01-13 17:59:25 +00:00
|
|
|
license = "MIT"
|
2024-01-13 07:52:43 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["image"]
|
2024-03-25 02:52:27 +00:00
|
|
|
bin = ["image"]
|
2024-01-13 07:52:43 +00:00
|
|
|
image = ["dep:image"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-11 20:54:06 +00:00
|
|
|
keyfork-zbar-sys = { workspace = true }
|
|
|
|
image = { workspace = true, default-features = false, optional = true }
|
|
|
|
thiserror = { workspace = true }
|
2024-01-13 07:52:43 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-11 20:54:06 +00:00
|
|
|
v4l = { workspace = true }
|