Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions crates/toml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ std = ["indexmap?/std"]
parse = ["dep:toml_parse", "dep:winnow"]
display = ["std", "dep:toml_edit", "toml_edit?/display"]
unsafe = ["toml_parse?/unsafe"]
# Enable features that improve performance. For maximum performance, you may
# also want to enable the "unsafe" feature.
perf = ["toml_parse?/simd"]
debug = ["std", "toml_parse?/debug", "dep:anstream", "dep:anstyle"]

# Provide a method disable_recursion_limit to parse arbitrarily deep structures
Expand Down
2 changes: 2 additions & 0 deletions crates/toml_edit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ default = ["parse", "display"]
parse = ["dep:toml_parse", "dep:winnow"]
display = ["dep:toml_write"]
unsafe = ["toml_parse?/unsafe"]
# Enable features that improve performance. For maximum performance, you may
# also want to enable the "unsafe" feature.
perf = ["dep:kstring", "toml_parse?/simd"]
serde = ["dep:serde", "toml_datetime/serde", "dep:serde_spanned"]
debug = ["toml_parse?/debug", "dep:anstream", "dep:anstyle"]
Expand Down
Loading