Antoine Martin
8d11c817f3
Unfortunately cargo doesn't allow optional dev dependencies (see rust-lang/cargo#1596) so this is the workaround. Previously, running `cargo test` triggered the build of all dev dependencies, including criterion, which in turn pulls in a lot of stuff. Running tests should be faster, hence this change.
8 lines
113 B
TOML
8 lines
113 B
TOML
[workspace]
|
|
members = ["aoc*", "aoc*/aoc*_bench"]
|
|
|
|
default-members = ["aoc2020"]
|
|
|
|
[profile.release]
|
|
debug = true
|