vortex 0.85.0

Vortex file format with all builtin codecs and a sampling compressor.
Documentation
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

//! The May 2025 `preview` encoding cohort.

use vortex_edition::Edition;
use vortex_edition::EditionDeclaration;
use vortex_edition::EditionId;
use vortex_edition::EditionMember;

/// The May 2025 draft edition of the `preview` family.
pub const PREVIEW_2025_05_0: EditionId = EditionId::new("preview", 2025, 5, 0);

/// The declaration of [`PREVIEW_2025_05_0`] and the encodings that join the family at it.
pub static DECLARATION: EditionDeclaration = EditionDeclaration {
    edition: Edition {
        id: PREVIEW_2025_05_0,
        min_vortex_version: None,
    },
    added: &[EditionMember::array(&"fastlanes.delta")],
};