vortex_edition/declarations/preview/
mod.rs1use crate::EditionFamily;
7
8pub 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;