Cargo Features
[dependencies]
koto_memory = { version = "0.14.1", default-features = false, features = ["arc", "rc"] }
- default = arc
-
The
arc
feature is set by default wheneverkoto_memory
is added without
somewhere in the dependency tree.default-features = false - arc default = parking_lot
-
One memory management scheme can be enabled at a time
- rc
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.