RCLite: Simple reference counting for rust

Crates.io Documentation MIT licensed Apache 2 licensed

RCLite is a lightweight reference-counting solution for Rust that serves as an alternative to the standard library's reference-counting. It offers both multi-threaded and single-threaded reference counting options with improved performance and reduced memory overhead, boasting a 75% decrease in memory usage compared to the standard reference counting method. RCLite is a suitable option when weak references are not necessary and optimizing for performance and memory usage is a priority.

Why use RCLite?

Why not use RCLite?