Skip to content

Commit

Permalink
Fix build/features
Browse files Browse the repository at this point in the history
  • Loading branch information
CraftSpider committed Jul 15, 2023
1 parent 715ce07 commit 983b9e2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ exclude = [
default = ["std", "spill-stack"]

# Integrate with the standard library.
std = []
std = [
"regex-automata?/std",
"serde?/std"
]

# Enable nightly-only features like better compiler diagnostics and a Parser impl for ! (the never type).
nightly = []
Expand Down Expand Up @@ -67,7 +70,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
hashbrown = "0.14"
stacker = { version = "0.1", optional = true }
regex-automata = { version = "0.3", default-features = false, optional = true }
regex-automata = { version = "0.3", default-features = false, optional = true, features = ["alloc", "meta", "perf", "unicode", "nfa", "dfa", "hybrid"] }
spin = { version = "0.9", features = ["once"], default-features = false, optional = true }
lexical = { version = "6.1.1", default-features = false, features = ["parse-integers", "parse-floats", "format"], optional = true }
either = { version = "1.8.1", optional = true }
Expand Down

0 comments on commit 983b9e2

Please sign in to comment.