forked from WGUNDERWOOD/tex-fmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 858 Bytes
/
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
[package]
name = "tex-fmt"
version = "0.5.0"
authors = ["William George Underwood"]
license = "MIT"
repository = "https://github.com/WGUNDERWOOD/tex-fmt"
edition = "2021"
description = "LaTeX formatter written in Rust"
keywords = ["latex", "formatter"]
categories = ["command-line-utilities", "development-tools"]
exclude = ["tests/*", "extra/*", "*.nix", ".github/*", "completion/*", "man/*"]
[dependencies]
clap = { version = "4.5.23", features = ["cargo"] }
clap_complete = "4.5.38"
clap_mangen = "0.2.24"
colored = "2.1.0"
dirs = "5.0.1"
env_logger = "0.11.5"
lazy_static = "1.5.0"
log = "0.4.22"
merge = "0.1.0"
regex = "1.11.1"
similar = "2.6.0"
toml = "0.8.19"
[features]
shellinstall = []
[build-dependencies]
clap = { version = "4.5.23", features = ["cargo"] }
clap_complete = "4.5.38"
clap_mangen = "0.2.24"
[profile.release]
codegen-units = 1