Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ anstream = { version = "1.0.0", optional = true }
anstyle = { version = "1.0.13", optional = true }
okhsl = { version = "1.0.1", optional = true }
unicode_categories = "0.1.1"
winnow = { version = "0.7.0", features = ["simd"] }
winnow = { version = "1.0.1", features = ["simd"] }
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CRITICAL: Missing required feature flag for winnow 1.0

The ascii feature must be enabled for the code to compile. Winnow 1.0 split functionality into feature gates, and winnow::ascii APIs (used in src/tokenizer.rs:3) now require the ascii feature.

Suggested change
winnow = { version = "1.0.1", features = ["simd"] }
winnow = { version = "1.0.1", features = ["simd", "ascii"] }

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Their changelog made me think that as well, but that feature is enabled by default. The upgrade guide in the changelog was not particularly useful, unfortunately. I tried upgrading this last night and ended up bashing my head figuratively.


[dev-dependencies]
criterion = "0.7"
Expand Down
Loading