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:
Antoine Martin 2020-12-15 12:06:24 +01:00
parent 99f599e910
commit 8d11c817f3
14 changed files with 98 additions and 47 deletions

View file

@ -1,5 +1,5 @@
[workspace]
members = ["aoc*"]
members = ["aoc*", "aoc*/aoc*_bench"]
default-members = ["aoc2020"]