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.
18 lines
355 B
TOML
18 lines
355 B
TOML
[package]
|
|
name = "aoc2020_bench"
|
|
version = "0.1.0"
|
|
authors = ["Antoine Martin <antoine97.martin@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
aoc2020 = { path = "../" }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "aoc2020_bench"
|
|
harness = false
|