-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 loc) · 1.22 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
[package]
name = "run-clang-format"
version = "1.5.1"
authors = ["Martin Lampacher <[email protected]>"]
description = """
Cross platform CLI wrapper for executing clang-format based paths or globs specified
in a JSON input file.
"""
# documentation = "https://docs.rs/run-clang-format"
homepage = "https://github.com/lmapii/run-clang-format"
repository = "https://github.com/lmapii/run-clang-format"
keywords = ["clang-format", "glob", "search"]
license-file = "LICENSE"
edition = "2021"
[dependencies]
clap = { version = "4", features = ["derive", "cargo", "wrap_help"] }
schemars = "0.8"
serde = "1.0"
serde_json = "1.0"
log = "0.4"
# env_logger 0.11 is available but removes built-in color styling ...
env_logger = "0.10"
eyre = "0.6"
color-eyre = { version = "0.6", default-features = false, features = [
"capture-spantrace",
] }
regex = "1.11"
scopeguard = "1.2"
# globmatch = { path = "../globmatch" }
globmatch = "0.3"
rayon = "1.10"
# indicatif = { git = "https://github.com/console-rs/indicatif", branch = "main"}
indicatif = "0.17"
console = { version = "0.15", default-features = false, features = [
"ansi-parsing",
] }
[dev-dependencies]
doc-comment = "0.3"
assert_cmd = "2.0"
[profile.release]
strip = true
# strip="debuginfo"