-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.16 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
[package]
name = "cargo-line-test"
version = "0.1.0"
authors = ["Samuel Moelius <sam@moeli.us>"]
description = "Run tests by the lines they exercise"
edition = "2021"
license = "AGPL-3.0"
repository = "https://github.com/trailofbits/cargo-line-test"
[dependencies]
anyhow = "1.0"
assert_cmd = "2.0"
cargo_metadata = "0.19"
clap = { version = "4.5", features = ["cargo", "derive", "wrap_help"] }
ctrlc = "3.4"
unidiff = "0.3"
hex = "0.4"
once_cell = "1.20"
lcov = "0.8"
remain = "0.2"
serde_json = "1.0"
sha2 = "0.10"
tempfile = "3.14"
[dev-dependencies]
ctor = "0.2"
regex = "1.11"
[lints.rust.unexpected_cfgs]
level = "deny"
check-cfg = ["cfg(dylint_lib, values(any()))"]
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
[workspace.metadata.dylint]
libraries = [
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/general" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/supplementary" },
# { git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/inconsistent_qualification" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/restriction/misleading_variable_name" },
]