summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 9862537e6221307ee34758cb5c662baae2a7a9ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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::*;