-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 951 Bytes
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 951 Bytes
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
[package]
name = "rust-diagnostics"
version = "0.1.13"
edition = "2021"
authors = [
"Yijun Yu <y.yu@open.ac.uk>",
]
description = "A utility that embeds clippy diagnostics into Rust code."
repository = "https://github.com/trusted-programming/rust-diagnostics"
documentation = "https://docs.rs/rust_diagnostics"
keywords = ["clippy", "diagnostics"]
license = "Apache-2.0"
[dependencies]
cargo = "0.66.0"
cargo_metadata = "0.15.1"
structopt = "0.3.26"
serde = { version = "1.0.133", features = [ "derive" ] }
git2 = "0.15.0"
tree-sitter-parsers = "0.0.5"
tree-sitter = "0.20.9"
anyhow = "1.0.52"
once_cell = "1.17.0"
uuid = { version = "1.2.2", features = ["v4"] }
serde_json = "1.0.91"
tokei = "12"
[build-dependencies]
cc = { version = "1.0.72", features = [ "parallel" ] }
[dev-dependencies]
serial_test = "0.10.0"
insta = "1.26.0"
# generated by 'cargo dist init'
[profile.dist]
inherits = "release"
debug = true
split-debuginfo = "packed"