bench: split to separate package
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.
This commit is contained in:
parent
99f599e910
commit
8d11c817f3
14 changed files with 98 additions and 47 deletions
|
|
@ -1,5 +1,5 @@
|
|||
[workspace]
|
||||
members = ["aoc*"]
|
||||
members = ["aoc*", "aoc*/aoc*_bench"]
|
||||
|
||||
default-members = ["aoc2020"]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue