Cargo Features
[dependencies]
koto_parser = { version = "0.15.1", default-features = false, features = ["arc", "rc", "panic_on_parser_error"] }
- default = rc
-
The
rc
feature is set by default wheneverkoto_parser
is added without
somewhere in the dependency tree.default-features = false - arc
-
Only one memory management strategy can be enabled at a time. To use
arc
, default features must be disabled.Enables arc of koto_memory
- rc default
-
Enables rc of koto_memory
- panic_on_parser_error
-
Panicking be useful during development, e.g. to see the backtrace that led to the error