Skip to content

Commit

Permalink
Ensure all our internal features are exported correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Sep 8, 2024
1 parent 71271b2 commit bb72aee
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lexical-benchmark/algorithm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
4 changes: 2 additions & 2 deletions lexical-benchmark/parse-integer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
4 changes: 2 additions & 2 deletions lexical-benchmark/write-float/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
4 changes: 2 additions & 2 deletions lexical-benchmark/write-integer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit bb72aee

Please sign in to comment.