pest-parser / pest

The Elegant Parser
https://pest.rs
Apache License 2.0
4.67k stars 262 forks source link

Add feature gated `Cow` module paths #900

Closed veeenu closed 1 year ago

veeenu commented 1 year ago

The generator currently wraps tags in an instance of alloc::borrow::Cow. This PR changes that to std::borrow::Cow conditional on the std feature flag being active.

Closes #899.