ZettaScaleLabs / stabby

A Stable ABI for Rust with compact sum-types
Other
328 stars 13 forks source link

Extend "stabby_std" #7

Open p-avital opened 1 year ago

p-avital commented 1 year ago

For now, stabby only provides stable equivalents to a few basic types (slices, strs, vecs and strings).

This stdlib should be extended with some basic collections, locking mechanisms...

Arc<T> is currently marked as stable when T is stable because its internals are #[repr(C)]: is it also the case for Rc<T>?