Skip to content

Commit

Permalink
Updated Cargo.toml due to requiring manually-specified bench paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Jan 7, 2020
1 parent 441f4b0 commit b2c1387
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,26 +126,32 @@ required-features = ["comprehensive_float_test"]

[[bench]]
name = "atof"
path = "benches/atof.rs"
harness = false

[[bench]]
name = "atof_malicious"
path = "benches/atof_malicious.rs"
harness = false

[[bench]]
name = "atof_real"
path = "benches/atof_real.rs"
harness = false

[[bench]]
name = "atoi"
path = "benches/atoi.rs"
harness = false

[[bench]]
name = "itoa"
path = "benches/itoa.rs"
harness = false

[[bench]]
name = "ftoa"
path = "benches/ftoa.rs"
harness = false

[profile.dev]
Expand Down
1 change: 1 addition & 0 deletions lexical-benchmark/lexical/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ unchecked_index = ["lexical-core/unchecked_index"]

[[bench]]
name = "atof"
path = "benches/atof.rs"
harness = false

[profile.bench]
Expand Down
1 change: 1 addition & 0 deletions lexical-benchmark/libcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ serde_json = "1.0"

[[bench]]
name = "atof"
path = "benches/atof.rs"
harness = false

[profile.bench]
Expand Down

0 comments on commit b2c1387

Please sign in to comment.