forked from trailofbits/dylint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (36 loc) · 905 Bytes
/
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
[package]
name = "question_mark_in_expression"
version = "2.1.7"
authors = ["Samuel E. Moelius III <[email protected]>"]
description = "A lint to check for the `?` operator in expressions"
edition = "2021"
publish = false
[lib]
crate-type = ["cdylib"]
[[example]]
name = "assign_op"
path = "ui/assign_op.rs"
[[example]]
name = "clone"
path = "ui/clone.rs"
[[example]]
name = "ls"
path = "ui/ls.rs"
[[example]]
name = "non-empty"
path = "ui/non-empty.rs"
[dependencies]
clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "991610a9ecb6a9f905238d13ac45613ffe7b7daf" }
if_chain = "1.0"
dylint_linting = { path = "../../../utils/linting" }
[dev-dependencies]
git2 = "0.16"
tempfile = "3.4"
dylint_testing = { path = "../../../utils/testing" }
[package.metadata.rust-analyzer]
rustc_private = true
[workspace]
[workspace.metadata.dylint]
libraries = [
{ path = "../../*/*" },
]