-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (51 loc) · 1.48 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
[package]
name = "cpp-linter"
edition = "2021"
readme = "README.md"
keywords = ["clang-tidy", "clang-format", "linter"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
repository = "https://github.com/cpp-linter/cpp-linter-rs"
version.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.98"
chrono = "0.4.40"
clap = "4.5.36"
colored = "3.0.0"
fast-glob = "0.4.5"
futures = "0.3.31"
git2 = "0.20.1"
lenient_semver = "0.4.2"
log = { version = "0.4.27", features = ["std"] }
openssl = { version = "0.10", features = ["vendored"], optional = true }
openssl-probe = { version = "0.1", optional = true }
quick-xml = {version = "0.37.4", features = ["serialize"]}
regex = "1.11.1"
reqwest = "0.12.15"
semver = "1.0.26"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"]}
tokio-macros = "2.4.0"
tokio-stream = "0.1.17"
which = "7.0.2"
[dev-dependencies]
criterion = { version = "2.7.2", package = "codspeed-criterion-compat", features=["async_tokio"] }
mockito = "1.7.0"
tempfile = "3.19.1"
[features]
openssl-vendored = ["dep:openssl", "dep:openssl-probe"]
[lib]
bench = false
[[bin]]
name = "cpp-linter"
path = "src/main.rs"
test = false
bench = false
[[bench]]
name = "run"
harness = false