// SRCE - Self-referential cell environments // Copyright (C) 2022-2023 Soni L. // This software is made with love by a queer trans person. // // SPDX-License-Identifier: MIT OR Apache-2.0 #![no_std] //! **Deprecated:** This crate is deprecated in favor of `selfref`'s `srce` //! module. You can use that one directly. This merely re-exports that module. //! //! SRCE is a way to open and close an `LCellOwner`. This provides the full //! expressive power of `selfref`, with the ability to use zeroish-cost //! `LCell`s in the struct. //! //! Refer to [`selfref::srce`] for more details. pub use selfref::srce::*;