Cargo Features
[dependencies]
koto_bytecode = { version = "0.16.1", default-features = false, features = ["arc", "rc"] }
- default = rc
-
The
rcfeature is set by default wheneverkoto_bytecodeis added withoutsomewhere in the dependency tree.default-features = false - arc
-
Only one memory management strategy can be enabled at a time. To use
arc, default features must be disabled.Enables arc of koto_memory
- rc default
-
Enables rc of koto_memory