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 whenever koto_parser is added without default-features = false somewhere in the dependency tree.

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