File: Cargo.toml.orig

package info (click to toggle)
rust-qr2term 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 865 bytes parent folder | download
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
31
32
[package]
name = "qr2term"
version = "0.3.2"
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 }
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"]