-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
48 lines (42 loc) · 1.02 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
[package]
name = "tex-fmt"
version = "0.5.2"
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.40"
clap_mangen = "0.2.24"
colored = "2.2.0"
dirs = "5.0.1"
env_logger = "0.11.6"
js-sys = "0.3.72"
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"
wasm-bindgen = "0.2.95"
web-time = "1.1.0"
[features]
shellinstall = []
[build-dependencies]
clap = { version = "4.5.23", features = ["cargo"] }
clap_complete = "4.5.40"
clap_mangen = "0.2.24"
[profile.release]
codegen-units = 1
[lib]
name = "tex_fmt"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "tex-fmt"
path = "src/bin.rs"