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
|
|
@ -6,24 +6,13 @@ edition = "2018"
|
|||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
criterion = "0.3"
|
||||
|
||||
[dependencies]
|
||||
|
||||
aoc = { path = "../aoc" }
|
||||
anyhow = "1.0"
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
bench = false
|
||||
|
||||
[[bin]]
|
||||
name = "aoc2019"
|
||||
path = "src/main.rs"
|
||||
bench = false
|
||||
|
||||
[[bench]]
|
||||
name = "bench"
|
||||
harness = false
|
||||
|
|
|
|||
17
aoc2019/aoc2019_bench/Cargo.toml
Normal file
17
aoc2019/aoc2019_bench/Cargo.toml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
[package]
|
||||
name = "aoc2019_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]
|
||||
aoc2019 = { path = "../" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3"
|
||||
|
||||
[[bench]]
|
||||
name = "aoc2019_bench"
|
||||
harness = false
|
||||
Loading…
Add table
Add a link
Reference in a new issue