Cargo Features

[dependencies]
koto_serialize = { version = "0.15.1", default-features = false, features = ["arc", "rc"] }
default = rc

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

arc

Only one memory management strategy can be enabled at a time. To use arc, default features must be disabled.

Enables arc of koto_runtime

rc default

Enables rc of koto_runtime