commit
2ed8a393fa
5 changed files with 39 additions and 0 deletions
@ -0,0 +1,16 @@
|
||||
# This file is automatically @generated by Cargo. |
||||
# It is not intended for manual editing. |
||||
version = 3 |
||||
|
||||
[[package]] |
||||
name = "qr_cli" |
||||
version = "0.1.0" |
||||
dependencies = [ |
||||
"qr_code", |
||||
] |
||||
|
||||
[[package]] |
||||
name = "qr_code" |
||||
version = "1.1.0" |
||||
source = "registry+https://github.com/rust-lang/crates.io-index" |
||||
checksum = "5520fbcd7da152a449261c5a533a1c7fad044e9e8aa9528cfec3f464786c7926" |
||||
@ -0,0 +1,9 @@
|
||||
[package] |
||||
name = "qr_cli" |
||||
version = "0.1.0" |
||||
edition = "2021" |
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
||||
|
||||
[dependencies] |
||||
qr_code = "1.1.0" |
||||
@ -0,0 +1,5 @@
|
||||
# QR CLI |
||||
|
||||
A simple program to print data encoded as a QR code to the terminal. |
||||
|
||||
Usage: `qr_cli "<data to encode>"` |
||||
Loading…
Reference in new issue