Cargo Features
[dependencies]
pest_generator = { version = "2.7.14", default-features = false, features = ["std", "not-bootstrap-in-src", "grammar-extras", "export-internal"] }
- default = std
-
The
std
feature is set by default wheneverpest_generator
is added without
somewhere in the dependency tree.default-features = false - std default
-
pest:
Implements
std::error::Error
for theError
type - not-bootstrap-in-src
-
Enables not-bootstrap-in-src of pest_meta
- grammar-extras
-
Enables grammar-extras of pest_meta
- export-internal
-
Export internal API that is not intended to be stable
Affects
pest_generator::docs
,pest_generator::generator
,pest_generator::parse_derive
…