Cargo Features

[dependencies]
hexz = { version = "0.0.1", default-features = false, features = ["std", "macros", "column-serialize", "row-serialize"] }
default = std

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

std default
macros = hecs-macros, lazy_static

Enables derive(Bundle)

column-serialize = serde

Enables the serialize::column module

Affects hexz::serialize

row-serialize = serde

Enables the serialize::row module

Affects hexz::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.

hecs-macros macros?

Enables hecs-macros ^0.8

lazy_static macros?
serde column-serialize? row-serialize?