22 lines
545 B
TOML
22 lines
545 B
TOML
[package]
|
|
name = "keyfork-zbar"
|
|
version = "0.1.0"
|
|
repository = "https://git.distrust.co/public/keyfork"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["image"]
|
|
bin = ["image"]
|
|
image = ["dep:image"]
|
|
|
|
[dependencies]
|
|
keyfork-zbar-sys = { version = "0.1.0", path = "../keyfork-zbar-sys", registry = "distrust" }
|
|
image = { version = "0.24.7", default-features = false, optional = true }
|
|
thiserror = "1.0.56"
|
|
|
|
[dev-dependencies]
|
|
v4l = "0.14.0"
|