-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (50 loc) · 1.45 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "shinypenny"
version = "0.3.5-alpha.0"
authors = ["Bernhard Schuster <bernhard@ahoi.io>"]
edition = "2021"
license = "Apache-2.0 AND MIT"
description = "A niftly little helper program creating reimbursement requests in pdf form from a csv or commandline."
repository = "https://github.com/drahnr/shinypenny"
homepage = "https://github.com/drahnr/shinypenny"
readme = "README.md"
keywords = ["reimbursement", "tax", "pdf"]
categories = ["command-line-utilities"]
include = ["assets/*.ttf", "src/**/*", "Cargo.toml"]
[dependencies]
docopt = "1"
csv = "1"
assert_matches = "1"
serde = { version = "1", features = ["derive"] }
log = "0.4"
pretty_env_logger = "0.4"
lazy_static = "1.4"
indexmap = "1"
color-eyre = "0.6"
dirs = "4"
regex = "1"
float-cmp = "0.9"
lopdf = "0.27"
printpdf = { version = "0.3.4", features = [
"jpeg_rayon",
"webp",
"embedded_images"
] }
iban_validate = { version = "4", features = ["std", "serde"] }
fints-institute-db = "1"
chrono = { version = "0.4", features = ["serde", "std", "clock"] }
harfbuzz_rs = { version = "2", features = [
"build-native-harfbuzz",
"build-native-freetype"
] }
toml = "0.5"
fs-err = "2"
itertools = "0.10"
infer = "0.7"
# exchange rates
reqwest = { version = "0.11", features = ["json", "blocking"] }
tokio = { version = "1", features = ["full"] }
iso_currency = { version = "0.4.1", features = ["with-serde"] }
# make sure backtracking is always fast
[profile.dev.package.backtrace]
opt-level = 3