-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
30 lines (26 loc) · 881 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "qr2term"
version = "0.3.3"
authors = ["Tim Visée <3a4fb3964f@sinenomine.email>"]
license = "MPL-2.0"
readme = "README.md"
homepage = "https://github.com/timvisee/qr2term-rs"
repository = "https://github.com/timvisee/qr2term-rs"
documentation = "https://docs.rs/qr2term"
description = "Stupidly simple Rust crate to render a QR code in the terminal."
keywords = ["qrcode", "terminal", "qr", "code"]
categories = ["algorithms", "rendering", "visualization"]
edition = "2021"
rust-version = "1.67.1"
[lib]
name = "qr2term"
path = "src/lib.rs"
[dependencies]
crossterm = { version = "0.28", default-features = false, features = [
"windows",
] }
qrcode = { version = "0.14", default-features = false }
[dev-dependencies]
regex = { version = "1", default-features = false, features = ["std"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]