// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Pre-trained zstd dictionaries for compressing test output.
//!
//! These dictionaries were trained on test output from a variety of Rust
//! projects and provide ~40-60% compression improvement over standard zstd for
//! typical test stdout/stderr.
//!
//! Dictionaries are stored in each archive (`meta/stdout.dict`, `meta/stderr.dict`)
//! to make archives self-contained. This module provides the dictionaries used
//! when creating new archives.
/// Pre-trained zstd dictionary for test stdout.
///
/// Provides ~40-60% compression improvement for typical test output.
pub static STDOUT: & = include_bytes!;
/// Pre-trained zstd dictionary for test stderr.
///
/// Provides ~35-60% compression improvement for typical test output.
pub static STDERR: & = include_bytes!;