Skip to content

Commit

Permalink
Display terminal preview
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Jul 13, 2022
1 parent 0b70f78 commit c2cc1c5
Show file tree
Hide file tree
Showing 4 changed files with 297 additions and 27 deletions.
230 changes: 229 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "qrscan"
description = "Scan a QR code in the terminal using the system camera or a given image"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ['Arijit Basu <hi@arijitbasu.in>']
license = 'MIT'
Expand All @@ -14,12 +14,16 @@ categories = ['command-line-interface', 'command-line-utilities']
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
qrcode = { version = "0.12.0", default-features = false, features = ["svg", "image"] }
qrcode = { version = "0.12.0", default-features = false, features = [
"svg",
"image",
] }
image = "0.23.0"
rqrr = "0.4.0"
clap = { version = "3.2.10", features = ["derive"] }
anyhow = "1.0.58"
csscolorparser = "0.6.0"
viuer = "0.5.3"

[target.'cfg(all(unix, not(macos)))'.dependencies]
nokhwa = { version = "0.9.4", features = ["input-v4l"] }
Expand Down
Loading

0 comments on commit c2cc1c5

Please sign in to comment.