Cargo Features

[dependencies]
quirky_binder_lang = { version = "0.1.0", default-features = false, features = ["crafted_parser", "nom_parser", "full_fuzz_tests"] }
default = crafted_parser

The crafted_parser feature is set by default whenever quirky_binder_lang is added without default-features = false somewhere in the dependency tree.

crafted_parser default full_fuzz_tests? = logos, peekmore

Affects parser::crafted_impl, parser::parse_crafted

nom_parser full_fuzz_tests? = nom

Affects parser::nom_impl, parser::parse_nom

full_fuzz_tests = crafted_parser, nom_parser

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

logos crafted_parser

Enables logos ^0.13

nom nom_parser?
peekmore crafted_parser