PGC

Precise tracing garbage collector built in Rust featuring parallel marking and mark&sweep algorithm.

How to use

To include in your project, add the following to your Cargo.toml: toml [dependencies] pgc = "*" This can be used pretty much like Rc, with the exception of interior mutability.

Types placed inside a Gc and Rooted must implement GcObject and Send. ```rust use pgc::*;

struct Foo { x: Gc, y: i32 }

unsafe impl GcObject for Foo { fn references(&self) -> Vec> { let mut v: Vec> = vec![]; v.push(self.x); v } } ```

To use Gc simply call Gc::new: rust let foo = Gc::new(Foo {...}); GC does not scan program stack for root objects so you should add roots explicitly: rust let foo = Gc::new(Foo {...}); add_root(foo); ... // do something with `foo` remove_root(foo); // Or use `Rooted` struct that will unroot object automatically: let foo = Rooted:new(Foo {...});

Issues