Given that the Allocator trait is in core, shouldn't the various allocatable collections be available in core as well?
e.g. Vec<T, A> and Box<T, A> in core without the fns that require A = GlobalAlloc (so no Vec::new, only Vec::new_in).
This would solve #123.
Given that the Allocator trait is in core, shouldn't the various allocatable collections be available in core as well?
e.g.
Vec<T, A>andBox<T, A>in core without the fns that requireA = GlobalAlloc(so noVec::new, onlyVec::new_in).This would solve #123.