-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (65 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
resolver = "2"
members = [
"pdfuse-merging",
"pdfuse-parameters",
"pdfuse-sizing",
"pdfuse-utils",
]
[workspace.dependencies]
log = "0.4.22"
indicatif = "0.17.9"
rust-i18n = "3.1.2"
[workspace.lints.clippy]
[package]
name = "pdfuse"
version = "0.1.0"
edition = "2021"
[dependencies]
pdfuse-sizing = { path = "pdfuse-sizing" }
pdfuse-utils = { path = "pdfuse-utils" }
pdfuse-merging = { path = "pdfuse-merging" }
pdfuse-parameters = { path = "pdfuse-parameters" }
clap = { version = "4.5.21", features = ["derive"] }
colored = "2.1.0"
lopdf = "0.31.0"
once_cell = "1.20.2"
rust-i18n.workspace = true
walkdir = "2.5.0"
printpdf = "0.7.0"
image = "0.25.5"
dashmap = "6.1.0"
rayon = "1.10.0"
indicatif.workspace = true
log.workspace = true
regex = "1.11.1"
dirs = "5.0.1"
toml = "0.8.19"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
# [dependencies]
# clap = { version = "4.5.21", features = ["derive"] }
# colored = "2.1.0"
# dashmap = "6.1.0"
# image = "0.25.5"
# indicatif = "0.17.9"
# log = "0.4.22"
# lopdf = "0.31.0"
# once_cell = "1.20.2"
# printpdf = { version = "0.7.0", features = [] }
# rayon = "1.10.0"
# regex = "1.11.1"
# rust-i18n = "3.1.2"
# walkdir = "2.5.0"
[package.metadata.i18n]
available-locales = ["en", "pl"]
default-locale = "en"
load-path = "locales"
# [lib]
# name = "pdf_test_lib"
# path = "src/lib.rs"
# [[bin]]
# name = "pdf_test_bin"
# path = "src/main.rs"
# [profile.release]
# strip = true