Cargo Features

[dependencies]
hv-ecs = { version = "0.1.0", default-features = false, features = ["std", "column-serialize", "row-serialize", "lazy_static"] }
default = std

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

std default
column-serialize = serde

Enables the serialize::column module

Affects hv-ecs::serialize

row-serialize = serde

Enables the serialize::row module

Affects hv-ecs::serialize

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.

lazy_static implicit feature

Enables lazy_static

lazy_static:

A macro for declaring lazily evaluated statics in Rust

serde column-serialize? row-serialize?