6 releases
Uses old Rust 2015
0.1.5 | Aug 7, 2019 |
---|---|
0.1.4 | Jul 30, 2019 |
0.1.3 | Mar 6, 2019 |
0.1.2 | Nov 26, 2018 |
0.1.1 | Mar 10, 2018 |
#497 in Memory management
22KB
485 lines
Scoped Garbage collection
This crate lets you create a scope where you can use garbage collection. It grants you higher control over the lifetime of the data: it is dropped at the end of the scope.
The implementation and design are heavily inspired by rust-gc.