-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
97 lines (81 loc) · 1.96 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[package]
name = "casile"
version = "0.14.3"
authors = [ "Caleb Maclennan <caleb@alerque.com>" ]
edition = "2021"
rust-version = "1.74.1"
description = "The command line interface to the CaSILE toolkit, a book publishing workflow employing SILE and other wizardry"
homepage = "https://github.com/sile-typesetter/casile"
repository = "https://github.com/sile-typesetter/casile"
license = "AGPL-3.0"
build = "build-aux/build.rs"
[package.metadata.typos.default]
locale = "en-us"
extend-ignore-identifiers-re = [ "Heros", "[Cc]alibre" ]
extend-words = { }
[package.metadata.typos.files]
ignore-hidden = false
extend-exclude = [
"/.git",
"CHANGELOG.md",
"build-aux/ax*",
"lua-libraries/*",
"names.*.txt",
"rules/en.mk",
"rules/tr.mk",
"upgrade*.sed"
]
[dependencies]
console = "0.15"
fluent = "0.16"
fluent-fallback = "0.7"
fluent-langneg = "0.13"
futures = "0.3"
itertools = "0.13"
lazy_static = "1.5"
num_cpus = "1.16"
rayon = "1.10"
rust-embed = "8.5"
rustc-hash = "1.1"
subprocess = "0.2"
unic-langid = "0.9"
unic-langid-impl = "0.9"
[dependencies.config]
version = "0.14"
default-features = false
features = [ "yaml" ]
[dependencies.clap]
version = "4.5"
features = [ "derive", "wrap_help" ]
[dependencies.git2]
version = "0.19"
default-features = false
[dependencies.git-warp-time]
version = "0.8"
default-features = false
[dependencies.indicatif]
version = "0.17"
features = [ "improved_unicode", "rayon" ]
[dependencies.Inflector]
version = "0.11"
default-features = false
[dependencies.regex]
version = "1.10"
default-features = false
features = [ "std" ]
[build-dependencies.clap_mangen]
version = "0.2"
[build-dependencies.clap]
version = "4.5"
features = [ "derive" ]
[build-dependencies.clap_complete]
version = "4.5"
[build-dependencies.vergen]
version = "8.3"
default-features = false
features = [ "build", "cargo", "git", "gitoxide" ]
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
[profile.release]
lto = true