test_fork/lib.rs
1// Copyright (C) 2025-2026 Daniel Mueller <deso@posteo.net>
2// SPDX-License-Identifier: (Apache-2.0 OR MIT)
3
4//! A crate providing a replacement #[[macro@test]] attribute (and
5//! others) for running tests in separate processes.
6
7#![cfg_attr(docsrs, feature(doc_cfg))]
8
9pub use test_fork_core;
10#[cfg(all(feature = "unstable", feature = "unsound"))]
11#[cfg_attr(docsrs, doc(cfg(all(feature = "unstable", feature = "unsound"))))]
12pub use test_fork_macros::bench;
13pub use test_fork_macros::fork;
14pub use test_fork_macros::test;