-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
51 lines (41 loc) · 1.04 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
[package]
name = "dylint_linting"
version = "3.2.1"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "Utilities for writing Dylint libraries"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/trailofbits/dylint"
[dependencies]
cargo_metadata = "0.19"
paste = "1.0"
rustversion = "1.0"
serde = "1.0"
thiserror = "1.0"
toml = "0.8"
dylint_internal = { version = "=3.2.1", path = "../../internal", features = [
"config",
] }
[build-dependencies]
toml = "0.8"
[dev-dependencies]
assert_cmd = "2.0"
rustc_version = "0.4"
tempfile = "3.14"
[features]
constituent = []
[lints.rust.unexpected_cfgs]
level = "deny"
check-cfg = ["cfg(dylint_lib, values(any()))"]
[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]
[package.metadata.rust-analyzer]
rustc_private = true
[workspace]
[workspace.metadata.dylint]
libraries = [
{ path = "../../examples/general" },
{ path = "../../examples/supplementary" },
{ path = "../../examples/testing/clippy" },
{ path = "../../examples/restriction/*" },
]