1use LibTracked; 2use LibUnsafe; 3use std::rc::Rc; 4 5/// A shared library which implements [LibTracked](struct.LibTracked.html) with atomic ref-counting to track its [Symbols](trait.Symbol.html). 6pub type LibRc = LibTracked<Rc<LibUnsafe>>;