summaryrefslogtreecommitdiffstats
path: root/tools/lint/test/files/clippy/test1/Cargo.toml
blob: 92d5072eca7cbd74f9b932956bde88d19126818f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "hello_world" # the name of the package
version = "0.1.0"    # the current version, obeying semver
authors = ["Alice <a@example.com>", "Bob <b@example.com>"]

[[bin]]
name ="good"
path = "good.rs"

[[bin]]
name ="bad"
path = "bad.rs"

[[bin]]
name ="bad2"
path = "bad2.rs"