-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
51 lines (45 loc) · 1.28 KB
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
[package]
name = "cpp-linter"
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
edition.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.100"
chrono = "0.4.42"
clap = { version = "4.5.53", features = ["derive"] }
colored = "3.0.0"
fast-glob = "1.0.0"
futures = "0.3.31"
git2 = "0.20.3"
log = { version = "0.4.29", features = ["std"] }
quick-xml = { version = "0.38.4", features = ["serialize"] }
regex = "1.12.2"
reqwest = "0.12.28"
semver = "1.0.27"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
tokio-macros = "2.5.0"
tokio-stream = "0.1.17"
which = "8.0.0"
[dev-dependencies]
mockito = "1.7.1"
tempfile = "3.24.0"
git2 = { version = "0.20.3", features = ["https"]}
[features]
openssl-vendored = ["git2/vendored-openssl"]
[lib]
bench = false
[[bin]]
name = "cpp-linter"
path = "src/main.rs"
test = false
bench = false