Cargo Features

[dependencies]
keetree = { version = "0.0.1", default-features = false, features = ["std"] }
default = std

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

std default

Enables std of regex

regex:

ECOSYSTEM FEATURES

The 'std' feature permits the regex crate to use the standard library. This is intended to support future use cases where the regex crate may be able to compile without std, and instead just rely on 'core' and 'alloc' (for example). Currently, this isn't supported, and removing the 'std' feature will prevent regex from compiling.

keetree has 2 features without comments.