move cli utility into repository

This commit also adds the `--workspace`` flag to the automated build and test scripts
This commit is contained in:
Henry Schimke
2023-03-01 08:46:49 -06:00
parent 8fc0e1029c
commit edc8e67685
7 changed files with 920 additions and 4 deletions

14
crates/cli/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "rxing-cli"
version = "0.1.11"
edition = "2021"
description = "A command line interface for rxing supporting encoding and decoding of multiple barcode formats"
license="Apache-2.0"
repository="https://github.com/rxing-core/rxing/tree/main/crates/cli"
keywords = ["barcode", "2d_barcode", "1d_barcode", "barcode_reader", "barcode_writer"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.1.1", features = ["derive"] }
rxing = {path = "../../", version = "~0.3.1", features = ["image", "svg_read", "svg_write"] }