-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 927 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 927 Bytes
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
33
34
[package]
name = "mintmark"
version = "0.2.0"
authors = ["Benjamin Gilbert <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "Markdown renderer for Epson TM-U220B receipt printers"
readme = "README.md"
repository = "https://github.com/bgilbert/mintmark"
rust-version = "1.85"
exclude = [
".github",
".gitignore"
]
[dependencies]
anyhow = "1.0"
barcoders = { version = "2", default-features = false, features = ["std"] }
base64 = "0.22.1"
bitflags = "2.11"
clap = { version = "4", default-features = false, features = ["std", "help", "usage", "error-context", "derive"] }
encoding = "0.2.33"
fs2 = "0.4.3"
image = { version = "0.25", default-features = false, features = ["pnm", "webp"] }
pulldown-cmark = "0.9.3"
qrcode = { version = "0.14.1", default-features = false }
[build-dependencies]
anyhow = "1.0"
[features]
default = ["jpeg", "png"]
jpeg = ["image/jpeg"]
png = ["image/png"]