comparison mupdf-source/thirdparty/zxing-cpp/wrappers/rust/Cargo.toml @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 [package]
2 name = "zxing-cpp"
3 version = "0.4.1"
4 edition = "2021"
5 # authors = ["Axel Waggershauser <zxingcpp@gmail.com>"]
6 license = "Apache-2.0"
7 description = "A rust wrapper for the zxing-cpp barcode library."
8 repository = "https://github.com/zxing-cpp/zxing-cpp/"
9 readme = "README.md"
10 keywords = ["zxing", "barcode", "barcode_reader", "ffi"]
11 categories = ["api-bindings", "computer-vision"]
12 exclude = [
13 "core/**/*Writer*",
14 "core/**/*Encode*",
15 ]
16
17 [lib]
18 name = "zxingcpp"
19 path = "src/lib.rs"
20
21 [features]
22 default = []
23 image = ["dep:image"]
24 bundled = []
25
26 [dependencies]
27 thiserror = "1.0"
28 paste = "1.0"
29 flagset = "0.4.4"
30 image = {version = "0.24.8", optional = true}
31
32 [dev-dependencies]
33 cfg-if = "1.0"
34 anyhow = "1.0"
35 image = {version = "0.24.8"}
36
37 [build-dependencies]
38 cmake = {version = "0.1.50"}
39 miette = {version = "5.10.0", features = ["fancy"]}