vortex_edition/declarations/preview/v2026_08.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! The August 2026 `preview` edition.
5
6use crate::Edition;
7use crate::EditionDeclaration;
8use crate::EditionId;
9
10/// The August 2026 draft edition of the `preview` family.
11pub const PREVIEW_2026_08_0: EditionId = EditionId::new("preview", 2026, 8, 0);
12
13/// The empty declaration of [`PREVIEW_2026_08_0`].
14pub static DECLARATION: EditionDeclaration = EditionDeclaration {
15 edition: Edition {
16 id: PREVIEW_2026_08_0,
17 min_library_version: None,
18 },
19 added: &[],
20};