Skip to main content

vortex_edition/declarations/preview/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! The `preview` edition family: additive, opt-in components awaiting adoption into `core`.
5
6use crate::EditionFamily;
7
8/// The `preview` family: stable opt-in components not yet available by default.
9pub static FAMILY: EditionFamily = EditionFamily {
10    name: "preview",
11    origin: "vortex",
12    doc: "Additive, opt-in components maintained as part of Vortex but not yet adopted by the \
13default core writer. Components enter preview only once their serialized contracts are ready for \
14broad testing; independently evolving work remains in its own family until then.",
15};
16
17pub mod v2026_08;
18
19pub use v2026_08::PREVIEW_2026_08_0;