Cargo Features

[dependencies]
binator_context = { version = "0.0.2", default-features = false, features = ["alloc", "stack", "tree", "serde", "tracing"] }
default = alloc, stack, tree

These default features are set whenever binator_context is added without default-features = false somewhere in the dependency tree.

Enables serde of smallvec

alloc default tree

Enables alloc of binator_core

stack default = smallvec

Enables smallvec of binator_core

tree default = alloc, smallvec

Enables smallvec of binator_core

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.

serde implicit feature

Enables serde

serde:

A generic serialization/deserialization framework

tracing implicit feature

Enables tracing

tracing:

Application-level tracing for Rust

smallvec default stack tree