diff --git a/lexical-benchmark/algorithm/Cargo.toml b/lexical-benchmark/algorithm/Cargo.toml index a7ae7f76..4149e39f 100644 --- a/lexical-benchmark/algorithm/Cargo.toml +++ b/lexical-benchmark/algorithm/Cargo.toml @@ -24,8 +24,8 @@ serde_json = "1.0" [features] default = ["std", "integers", "floats", "json"] std = ["lexical-util/std", "lexical-parse-float/std"] -integers = [] -floats = [] +integers = ["lexical-util/integers"] +floats = ["lexical-util/floats"] json = [] [[bench]] diff --git a/lexical-benchmark/parse-integer/Cargo.toml b/lexical-benchmark/parse-integer/Cargo.toml index e8681ec9..3bd97a93 100644 --- a/lexical-benchmark/parse-integer/Cargo.toml +++ b/lexical-benchmark/parse-integer/Cargo.toml @@ -29,8 +29,8 @@ radix = ["lexical-util/radix", "lexical-parse-integer/radix"] power-of-two = ["lexical-util/power-of-two", "lexical-parse-integer/power-of-two"] format = ["lexical-util/format", "lexical-parse-integer/format"] compact = ["lexical-util/compact", "lexical-parse-integer/compact"] -integers = [] -floats = [] +integers = ["lexical-util/integers"] +floats = ["lexical-util/floats"] json = [] [[bench]] diff --git a/lexical-benchmark/write-float/Cargo.toml b/lexical-benchmark/write-float/Cargo.toml index 5243835f..1543c3c0 100644 --- a/lexical-benchmark/write-float/Cargo.toml +++ b/lexical-benchmark/write-float/Cargo.toml @@ -31,8 +31,8 @@ radix = ["lexical-util/radix", "lexical-write-float/radix"] power-of-two = ["lexical-util/power-of-two", "lexical-write-float/power-of-two"] format = ["lexical-util/format", "lexical-write-float/format"] compact = ["lexical-util/compact", "lexical-write-float/compact"] -integers = [] -floats = [] +integers = ["lexical-util/integers"] +floats = ["lexical-util/floats"] json = [] [[bench]] diff --git a/lexical-benchmark/write-integer/Cargo.toml b/lexical-benchmark/write-integer/Cargo.toml index b9681dbb..a0555bcf 100644 --- a/lexical-benchmark/write-integer/Cargo.toml +++ b/lexical-benchmark/write-integer/Cargo.toml @@ -30,8 +30,8 @@ radix = ["lexical-util/radix", "lexical-write-integer/radix"] power-of-two = ["lexical-util/power-of-two", "lexical-write-integer/power-of-two"] format = ["lexical-util/format", "lexical-write-integer/format"] compact = ["lexical-util/compact", "lexical-write-integer/compact"] -integers = [] -floats = [] +integers = ["lexical-util/integers"] +floats = ["lexical-util/floats"] json = [] [[bench]]