1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! Backwards-compatible shim for the pre-extraction `plan_archive::scrub`
//! module path.
//!
//! The scrub implementation moved to the shared [`nils_scrub`] crate in #846.
//! This module preserves the original `plan_archive::scrub::*` surface — the
//! re-exported types and functions, the `scrub::log` submodule, and the
//! label-free `format_log` / `write_log_if_any` signatures that hard-code the
//! historical `plan-archive` scrub-log header — so existing callers keep
//! compiling without adopting the new `label`-parameterized [`nils_scrub`]
//! API.
pub use ;
pub use ;
/// Scrub-log helpers preserving the original label-free signatures.
///
/// These delegate to [`nils_scrub::log`] with the `plan-archive` header label
/// so callers of the pre-extraction `plan_archive::scrub::log` path keep the
/// same byte-identical output.