Cargo Features
[dependencies]
keetree = { version = "0.0.1", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverkeetree
is added without
somewhere in the dependency tree.default-features = false - std default
-
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.