forked from trailofbits/dylint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 920 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (34 loc) · 920 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 = "dylint_examples"
version = "4.1.0"
description = "A dummy package for testing the example Dylint libraries"
edition = "2024"
license = "MIT OR Apache-2.0"
publish = false
[build-dependencies]
nested_workspace = { workspace = true }
[dev-dependencies]
cargo-util = { workspace = true }
cargo_metadata = { workspace = true }
nested_workspace = { workspace = true }
regex = { workspace = true }
toml = { workspace = true }
toml_edit = { workspace = true }
walkdir = { workspace = true }
dylint_internal = { version = "=4.1.0", path = "../internal", features = [
"clippy_utils",
"examples",
] }
[lints]
workspace = true
[package.metadata.nested_workspace]
roots = [
"general",
"supplementary",
"restriction",
"testing/clippy",
"testing/straggler",
"experimental/derive_opportunity",
"experimental/missing_doc_comment_openai",
"experimental/overscoped_allow",
]