crane/checks/overlapping-targets/Cargo.toml
Ivan Petkov 98d59e6a6c
Replace regex dependencies with byteorder
* This should make the tests a bit more lightweight as we only have to
  build one crate instead of several
2022-01-04 14:48:40 -08:00

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"