summaryrefslogtreecommitdiffstats
path: root/.cargo/config.toml
blob: 3e57a8d650afa8887eff2a6890ddf343c26fb3ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[target.'cfg(all())']
# Note: if the RUSTFLAGS environment variable is set, this will be
# ignored.
rustflags = [
          "-Dwarnings",
          "-Aunused-parens",
          "-Aclippy::collapsible-else-if",
          "-Aclippy::needless-question-mark",
          "-Aclippy::redundant-clone",
          "-Aclippy::try-err",
          "-Aclippy::unnecessary-lazy-evaluations",
]