17 lines
291 B
TOML
17 lines
291 B
TOML
[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"
|
|
|