mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-24 00:42:39 +03:00
98d59e6a6c
* This should make the tests a bit more lightweight as we only have to build one crate instead of several
20 lines
232 B
TOML
20 lines
232 B
TOML
[package]
|
|
name = "overlapping-targets"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
byteorder = "*"
|
|
|
|
[[bin]]
|
|
name = "foo"
|
|
path = "src/foo.rs"
|
|
|
|
[[bin]]
|
|
name = "bar"
|
|
path = "src/foo.rs"
|
|
|
|
[[bin]]
|
|
name = "baz"
|
|
path = "src/foo.rs"
|