diff --git a/Cargo.toml b/Cargo.toml index ea535db9..2754fe93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/lexical-benchmark/lexical/Cargo.toml b/lexical-benchmark/lexical/Cargo.toml index b0a24fec..90847ee7 100644 --- a/lexical-benchmark/lexical/Cargo.toml +++ b/lexical-benchmark/lexical/Cargo.toml @@ -21,6 +21,7 @@ unchecked_index = ["lexical-core/unchecked_index"] [[bench]] name = "atof" +path = "benches/atof.rs" harness = false [profile.bench] diff --git a/lexical-benchmark/libcore/Cargo.toml b/lexical-benchmark/libcore/Cargo.toml index 7c7bf116..882c6b6b 100644 --- a/lexical-benchmark/libcore/Cargo.toml +++ b/lexical-benchmark/libcore/Cargo.toml @@ -11,6 +11,7 @@ serde_json = "1.0" [[bench]] name = "atof" +path = "benches/atof.rs" harness = false [profile.bench]